Official reference plugin

senddera/auri

A full AI subsystem shipped as one plugin folder — the same architecture we use for Aurius 4.0. Study it to learn REGISTRY hooks, agent tools, migrations, and admin UI injection without touching Senddera core.

Four surfaces, one plugin

Floating chatbox

Injected via layout.body.before_close. Support mode answers from docs; agent mode calls registered tools against lists, campaigns, and segments.

Hooks: REGISTRY tools · EVENT message.sent

Sparkle rewrite

FILTER on rich-text fields adds a sparkle control — rewrite, expand, shorten — using the tenant-configured LLM engine.

Hooks: FILTER editor.toolbar

Coach personas

Screen-scoped assistants: deliverability on sending servers, segments on list builder, campaigns on the editor — each with its own prompt pack.

Hooks: REGISTRY coaches · BEHAVIOR page.context

Admin observability

Sidebar group for usage charts, conversation history, feedback loops, and audit trails — all namespaced under senddera/auri.

Hooks: admin.sidebar.groups · ROUTE admin

Folder layout

storage/app/plugins/senddera/auri/
├── plugin.json          # manifest + hook map
├── src/
│   ├── ServiceProvider.php
│   ├── Hooks/           # REGISTRY, EVENT, FILTER
│   ├── Models/          # conversations, usage
│   └── Http/Controllers/
├── database/migrations/
├── resources/views/
└── lang/                # 18 locales

Why this matters

  • Survives Senddera upgrades — no core overrides
  • Ships migrations and routes in-plugin
  • BYO API keys — OpenAI, Anthropic, Ollama
  • Template for your own marketplace plugins
8

Eloquent models

12+

Migrations

60+

Blade templates

18

Locales

Install in three steps

  1. 1
    Purchase Senddera

    Regular or Extended license from CodeCanyon — includes the plugin SDK.

  2. 2
    Drop the plugin folder

    Copy senddera/auri into storage/app/plugins/ and run migrations.

  3. 3
    Enable in Admin → Plugins

    Configure your LLM provider and API keys under the new AI sidebar group.

Build the next senddera/* plugin

Start from the Hello World scaffold, then study auri for production patterns.

Read the docs