Packstub Agents
CommunityAn AI assistant in your panel and an MCP server for Claude Code from one tool list, with the panel's own authorization.
Author:
Packstub
Package health
BetaAutomated checks of this plugin's Composer package
15 checks
- Passed: GitHub Actions pinned to SHA
- Skipped: GitLab CI includes pinned to SHA
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- Skipped: Renovate MR responsiveness
- Passed: Dependabot or Renovate configured
- Passed: Dependency update cooldown configured
- Passed: Provides a security policy
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Passed: Commit and release recency — Active: last commit 1 days ago; last release 2 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
-
Passed:
Current Laravel version supported
—
Package dependencies resolve together with current Laravel
13.0. -
Passed:
Current PHP version supported
—
Constraint
^8.4supports current PHP8.5. - Skipped: Current Symfony version supported
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
- Features
- Compatibility
- Installation
- Writing tools
- The chat
- The assistant
- Live tables and charts
- MCP clients
- Budgets and the operator page
- Tenancy
- Configuration
- Documentation
- Testing
- Changelog
- Security vulnerabilities
- Credits
- License
An in-panel AI assistant and an MCP server for your Filament v5 panel, built on laravel/ai and laravel/mcp. Write a tool once and it serves both the chat inside the panel and Claude Code, Claude Desktop, Cursor or any other MCP client, with the panel's own authorization deciding who may run it.
#Features
- One tool list, two front doors — every capability is a
laravel/mcptool. The in-panel chat calls it through laravel/ai's bridge; external agents call it over HTTP with a token minted in the panel. Add a tool to the list and it is everywhere. - Authorization is the panel's — a tool declares the ability string that gates the resource or action it mirrors. The assistant can never do more than the signed-in person could by hand, and a token narrows that further for external agents: read-only, or just the tools they need.
- Writes are approved where the human is — in the chat, a write tool is a question with Approve and Reject ("Confirm order RO-00020 for Halvorsen & Co.?"; laravel/ai approvals). Over MCP, a write token runs it directly with the person's role.
- Answers that show the real thing —
show-tablerenders the resource's own Filament table under the answer, with its search, filters, sorting and row actions. A tool result with achartkey becomes a chart. Page context tells the assistant which record the person opened the chat from. - A bounded bill — a per-user burst limit, answers per day and tokens per month per workspace, tokens per day and per month per user, and a prompt length cap, all checked before a turn reaches the provider and editable per workspace and per user on an operator page.
- Your assistant, your prompt — a scaffolded agent class with two slots to fill (who it is, what the workspace is) on top of generic working and answering rules, provider-cached instructions and a model picker (Claude Opus 5, Claude Haiku 4.5, Claude Opus 5 · Deep) for Anthropic, OpenAI, Gemini or xAI — any other laravel/ai provider, Ollama included, runs on its smartest and cheapest models. A failover list (
AGENT_FAILOVER=gemini,openai) keeps answering when a provider is overloaded, with a note on the answer that says who did. - Tenancy-aware — the MCP path can carry the workspace, tokens are bound to it, conversations can live in the tenant database and a workspace can bring its own provider key. Works without tenancy too.
- Translatable — every string goes through
__(), with German, Spanish, Romanian and Russian included.
#Compatibility
| Plugin | Filament | Laravel | PHP | laravel/ai | laravel/mcp |
|---|---|---|---|---|---|
| 1.x | 5.x | 13.x | 8.4+ | ^0.11 | ^0.9 |
1.8 and later require packstub/agents ^1.1, which Composer installs with the plugin.
#Installation
composer require packstub/filament-agents
php artisan packstub-agents:install
php artisan filament:assets
The install command publishes the config, offers to run the migrations and scaffolds app/Ai/Agents/Assistant.php. Filament v5 only compiles plugin views into a custom theme, so add the package views to yours:
@source '../../../../vendor/packstub/filament-agents/resources/views';
Register the plugin in your panel provider and put a provider key in .env (ANTHROPIC_API_KEY, OPENAI_API_KEY, GEMINI_API_KEY or XAI_API_KEY, with AGENT_PROVIDER=anthropic|openai|gemini|xai):
use Packstub\Agents\AgentsPlugin;
->plugin(
AgentsPlugin::make()
->name('Ask Acme')
->agent(\App\Ai\Agents\Assistant::class)
->server(\App\Mcp\Servers\AcmeServer::class)
->authorizeUsing(fn (string $ability) => auth()->user()->can($ability)),
)
Without a key the chat hides itself and the MCP endpoint still answers. Read more: Installation.
#Built on packstub/agents
The engine — the tools, the MCP server and its tokens, the turn job, budgets and limits, the Agent class — is packstub/agents, a package that runs in a plain Laravel app without Filament; this plugin requires it and adds what a panel needs: the chat pages, the Ask button, the Agent access page, the operator pages, show-table and the embedded table. Every class keeps its Packstub\Agents\ name, so nothing changes in your code. Read more: Agents for Laravel.
#Writing tools
php artisan packstub-agents:tool SearchOrders --ability=orders.view
php artisan packstub-agents:tool ConfirmOrder --write --ability=orders.manage
A tool extends Packstub\Agents\Mcp\AgentTool, declares its $ability, and implements run(Request): array and schema(JsonSchema): array. Mark reads with #[IsReadOnly]; anything else is approval-gated in the chat and needs a write token over MCP. Domain exceptions come back to the model as tool errors, never to the person as a crash.
#[IsReadOnly]
#[Description('Find orders by number, customer, status and date.')]
class SearchOrders extends AgentTool
{
protected ?string $ability = 'orders.view';
protected function run(Request $request): array
{
$filters = AgentResources::normalizeFilters('orders', (array) $request->get('filters'));
$query = AgentResources::apply('orders', Order::query(), $filters);
return [
'total' => $query->count(),
'rows' => $query->limit($this->limit($request))->get()->map(fn (Order $o) => OrderResource::agentSummary($o))->all(),
];
}
public function schema(JsonSchema $schema): array
{
return [
'filters' => $schema->object(AgentResources::filterSchema($schema, 'orders')),
'limit' => $schema->integer(),
];
}
}
List the tools on the server class, reads first. The chat agent reads the same list:
class AcmeServer extends \Packstub\Agents\Mcp\AgentServer
{
protected string $name = 'Acme';
protected string $instructions = 'The back office of an online shop. Start with search-orders.';
protected array $tools = [
Tools\SearchOrders::class,
\Packstub\Agents\Mcp\Tools\ShowTable::class,
\Packstub\Agents\Mcp\Tools\DrawChart::class,
Tools\ConfirmOrder::class,
];
}
AgentsPlugin::make()->tools([...]) works instead of a server class when you only want the chat. Read more: Tools.
#The chat
The assistant lives on a chat page with an "Ask …" button in the topbar and the recent conversations in the sidebar (an "Ask …" navigation item on a panel with top navigation). A new chat opens on a row of starter questions from your agent's suggestions(), each sent on click. Answers are produced by a queued job and stream into the page while the agent calls tools — a reload, a closed tab or a second tab picks the answer up where it is, and Stop cuts it short (run php artisan queue:work, or set AGENT_TURN_DRIVER=sync to run the job inside the request). Long chats replay a token-budgeted window with a rolling summary; a context ring in the composer shows the breakdown and what the chat cost, with Compress now and Continue in a new chat. A proposed change shows up as a question with Approve and Reject ("Confirm order RO-00020 for Halvorsen & Co.?", the exact call folded under it), and the turn resumes with the decision. Conversations are stored with laravel/ai's models, follow-ups wait their turn per conversation, the last exchange can be regenerated or edited and sent again, and every answer can be rated with a thumbs up or down. The composer is one row — the question, the model and Send — and the model is a small text button that opens the list by name (Claude Opus 5, Claude Haiku 4.5, Claude Opus 5 · Deep out of the box; entries of more than one provider under provider headings), remembered per session.

Ask for records and the answer comes with the resource's own table under it, filtered the way the answer says, with the row actions the person's role allows:

Ask for a trend and the numbers come back drawn as a chart, from draw-chart or from a reporting tool of your own that returns one:

Ask for a change and the turn pauses on a question until the person approves or rejects it; the composer with the model picker waits underneath:

Read more: The assistant.
#The assistant
packstub-agents:agent scaffolds App\Ai\Agents\Assistant, a subclass of Packstub\Agents\Ai\Agent with two slots to fill: persona() (who it is) and domain() (what the workspace is). The base class supplies the generic working and answering rules, the dynamic context (date, workspace, person, role, language, page context — sent with the question, so the system prompt and the history stay cacheable) and the provider options (Anthropic cache breakpoints on the instructions and the settled history, reasoning effort or thinking level per model). Append to any of them by overriding workRules(), answerRules() or context() and merging the parent's list.
Your own agent middleware — an audit log, redaction, a tenant check — goes in middleware() on the agent, in AgentsPlugin::make()->middleware([...]) or in the middleware config key, and runs on every turn after the package's guard rails.
class Assistant extends Agent
{
protected function persona(): string
{
return 'You are Ask Acme, the back-office assistant of an online shop.';
}
protected function domain(): string
{
return <<<'PROMPT'
- Orders move from placed to paid to shipped; a cancelled order keeps its number.
- Warehouse staff may confirm and ship; only managers may refund.
PROMPT;
}
}
#Live tables and charts
A Filament resource opts in by implementing AgentResource with the InteractsWithAgent trait. Defaults come from the resource itself; override what the domain needs:
class OrderResource extends Resource implements AgentResource
{
use InteractsWithAgent;
public static function agentSummary(Model $record, bool $full = false): array
{
return ['number' => $record->number, 'status' => $record->status, 'url' => static::agentRecordUrl($record)];
}
public static function agentFilters(): array
{
return [
Filter::text('query')->description('Order number or customer.')
->apply(fn (Builder $q, string $t) => $q->where('number', 'like', "%{$t}%")),
Filter::enum('status', OrderStatus::class)->multiple()
->apply(fn (Builder $q, array $s) => $q->whereIn('status', $s)),
Filter::date('placed_from')
->apply(fn (Builder $q, string $d) => $q->where('placed_at', '>=', $d)),
];
}
}
From that, show-table builds its schema, the embedded table applies the same filters, and the topbar button carries the current record into the chat as page context. draw-chart renders bar, line, pie and doughnut charts from numbers the model already retrieved, and any tool can return a chart key of its own.

Read more: Tables and charts.
#MCP clients
An Agent access page lets a person mint a token for Claude Code, Claude Desktop, Cursor or any MCP client: read or read-and-write, optionally limited to a few named tools, optionally expiring. The token is shown once, carries the workspace when the panel has tenancy, and can be revoked from the same page. The MCP endpoint is POST /mcp by default, behind throttle, auth:sanctum and the package's own middleware, so external agents get exactly the tools the person's role and their token allow.


Read more: MCP clients.
#Budgets and the operator page
config/packstub-agents.php holds the platform ceiling (AGENT_TURNS_PER_MINUTE, AGENT_TURNS_PER_DAY, AGENT_TOKENS_PER_DAY, AGENT_TOKENS_PER_MONTH, AGENT_USER_TOKENS_PER_DAY, AGENT_USER_TOKENS_PER_MONTH, AGENT_PROMPT_MAX_CHARS). An operator panel registers
->plugin(AgentsPlugin::make()->chat(false)->agentAccess(false)->limits(authorize: fn () => auth()->user()?->is_admin))
to get the AI limits resource: one global row, optional rows per workspace and per user, empty fields inherit. AgentBudget::summary() gives the numbers for a settings page.

The same panel gets an AI turns page (/agent-turns, ->turnLog()): one row per turn with who asked, the model, tokens in and out, the tools called, the duration and how it ended. Every turn also writes one log line to log.channel (AGENT_LOG_CHANNEL).
Read more: Budgets and limits.
#Tenancy
Set the MCP path with the workspace in it ('mcp' => ['path' => 'mcp/{tenant}']). The middleware looks the workspace up by the panel's tenant slug, checks the person's membership and the token's tenant:{slug} ability, and sets it on Filament, which fires TenantSet, so Filament Tenancy or any listener switches the database exactly as for a page. A workspace can bring its own provider key through credentialsUsing(), and per-workspace limits live on the operator page.
For a database-per-tenant app set 'run_migrations' => false, publish the migrations, keep create_agent_limits_table central and move create_agent_chat_tables next to your tenant migrations.
Read more: Tenancy.
#Configuration
AgentsPlugin::make()
->name('Ask Acme') // how the assistant is called in the panel
->agent(Assistant::class) // your Agent subclass
->server(AcmeServer::class) // the MCP server class with the tool list
->tools([...]) // or a plain tool list, chat only
->resources([OrderResource::class]) // explicit AgentResource list (default: discovered)
->middleware([AuditLog::class]) // your own agent middleware, after the guard rails
->authorizeUsing(fn (string $ability) => ...) // how an ability is checked for the current person
->roleLabelUsing(fn () => ...) // the person's role, for the prompt and refusals
->credentialsUsing(fn () => new WorkspaceCredentials(...)) // a workspace's own provider key
->chat(true) // the chat pages, the Ask button and recent chats
->history(maxTokens: 24000) // the history window and the context ring
->agentAccess(ability: 'setup.view', group: 'Setup') // the token page
->limits(authorize: fn () => ...) // the operator's AI limits resource
->turnLog(true) // the operator's AI turns page
->hideAskButtonOn(['*.pages.dashboard']); // route patterns without the topbar button
Read more: Configuration.
#Documentation
- Installation
- Tools
- The assistant
- Tables and charts
- MCP clients
- Budgets and limits
- Tenancy
- Configuration
- Security
- Testing
#Testing
composer test
In your own app, fake the model with Assistant::fake([...]) and drive tools through AcmeServer::tool(ToolClass::class, [...]). Never call a provider from tests. Read more: Testing.
#Changelog
See the changelog.
#Security vulnerabilities
This package lets a model act inside your panel, so we take reports seriously. Please e-mail support@packstub.dev rather than opening a public issue. The threat model is documented on the Security page.
#Credits
#License
MIT. See the license file.
The author
Packstub builds plugins for Filament and Laravel, from open-source utilities to paid infrastructure for multi-tenant SaaS. It is the author of Packstub Tenancy, which brings stancl/tenancy's database-per-tenant model to Filament panels, and Filament Account Switcher, which adds linked accounts, impersonation, and developer logins with an audit trail. Packstub is run by XLITE, a web development studio based in Moldova.
From the same author
Packstub Flow
Visual workflows in your panel: record, schedule and webhook triggers, conditions, email, Slack and HTTP actions, approvals.
Author:
Packstub
Account Switcher
Switch between accounts without signing out: linked sub-accounts with password-confirmed escalation, impersonation with a switch-back banner, and one-click developer logins.
Author:
Packstub
Packstub Tenancy
Multi-database tenancy powered by stancl/tenancy v4 — one isolated database per tenant or shared databases with tenant_id scoping, async provisioning, and a load-balanced database pool that scales tenants across multiple database servers.
Author:
Packstub
Packstub Form Builder
Build forms in your Filament panel, render them with Blade, Livewire or JSON, and collect, export and forward submissions.
Author:
Packstub
Featured Plugins
A selection of plugins curated by the Filament team
Soft Theme
A theme that gives panels a warm, approachable look with rounded shapes, gentle colors, and serif headings.
Filament
Noir Theme
A theme that gives panels a focused, refined look with near-black surfaces, crisp actions, and restrained color.
Filament
Spotlight Pro
Browse your Filament Panel with ease. Filament Spotlight Pro adds a Spotlight like Command Palette to your Filament Panel.
Dennis Koch
