capell-app / ai-orchestrator
A shared AI capability registry and execution contract for Capell packages, designed for governed prompts, approvals, and package-owned AI workflows
Requires
- php: ^8.4
- capell-app/admin: ^1.0
- capell-app/core: ^1.0
- lorisleiva/laravel-actions: ^2.8
- prism-php/prism: ^0.100
- spatie/laravel-data: ^4.5
- spatie/laravel-package-tools: ^1.14.1
Requires (Dev)
None
Suggests
- capell-app/layout-builder: Adds the optional AI-assisted layout planning module.
Provides
None
Conflicts
None
Replaces
None
- 4.x-dev
- dev-main / 1.x-dev
- v1.0.37
- v1.0.36
- v1.0.35
- v1.0.34
- v1.0.33
- v1.0.32
- v1.0.31
- v1.0.30
- v1.0.29
- v1.0.28
- v1.0.27
- v1.0.26
- v1.0.25
- v1.0.24
- v1.0.23
- v1.0.22
- v1.0.21
- v1.0.20
- v1.0.19
- v1.0.18
- v1.0.17
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.12
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0-beta.2
- dev-release-backup/v0.0.9-main
- dev-release-backup/v0.0.8-main
- dev-claude/recursing-noether-505552
- dev-claude/bold-blackwell-3e8ab4
This package is auto-updated.
Last update: 2026-09-17 07:52:10 UTC
README
What This Extension Adds
AI Orchestrator is an Available, No schema impact Capell package in the Capell Commercial product group. It ships as capell-app/ai-orchestrator and extends these surfaces: admin.
A shared AI capability registry and execution contract for Capell packages, designed for governed prompts, approvals, and package-owned AI workflows.
After install, admins get package-owned management or reporting surfaces inside Capell.
Status details:
- Status: Available
- Tier: premium
- Bundle: commercial
- Composer package:
capell-app/ai-orchestrator - Namespace:
Capell\AIOrchestrator - Theme key: not applicable
Why It Matters
For developers: The package gives developers package-owned service providers, Actions, Data objects, Filament classes, and Blade views instead of pushing this behaviour into core or application code.
For teams: A shared AI capability registry and execution contract for Capell packages, designed for governed prompts, approvals, and package-owned AI workflows.
Screens And Workflow
Screenshot contract: docs/screenshots.json.
- Capability list or prompt surface where provided by a consuming package (admin, optional).
- LayoutBuilder layout preview workflow if LayoutBuilder integration is enabled (admin, optional).
- Approval state where a capability requires review (admin, optional).
Technical Shape
- Service providers:
Capell\AIOrchestrator\Providers\AIOrchestratorServiceProvider. - Filament classes:
AIOrchestratorCapabilityCatalogPage. - Events:
AIOrchestratorCapabilityRunRecorded. - Actions:
ListAIOrchestratorCapabilitiesAction,RegisterAIOrchestratorModuleAction,RunAIOrchestratorCapabilityAction. - Data objects:
AIOrchestratorCapabilityData,AIOrchestratorRunData. - Manifest contributions:
admin-page: Capell\AIOrchestrator\Manifest\AiOrchestratorAdminPageContribution. - Health checks:
Capell\AIOrchestrator\Health\AiOrchestratorHealthCheck. - Blade views:
packages/ai-orchestrator/resources/views/filament/pages/capability-catalog.blade.php.
Data Model
This package has no schema impact. It does not declare package-owned migrations or required tables.
Docs gap: document extension points here if the package delegates persistence to a host package.
Install Impact
- Admin navigation: adds package-owned Filament classes when registered.
- Permissions: none declared in
capell.json. - Public routes: none detected in package route files.
- Database changes: no package migrations declared.
- Settings: no package settings declared.
- Queues or schedules: none detected in standard package paths.
- Cache tags: none declared.
- Commands: none declared.
Common Pitfalls
- Verify the package is installed before expecting its provider, views, or extension contributions to run.
- Keep
composer.json,composer.local.json,capell.json, docs, screenshots, and tests aligned when the package surface changes.
Troubleshooting
| Symptom | Likely cause | Check | Fix |
|---|---|---|---|
| Package surface is missing after install | Provider or manifest is not loaded | Confirm capell.json, package composer.json, and provider registration |
Reinstall the package, refresh Composer autoload, and clear host caches |
Quick Start
- Install the package:
composer require capell-app/ai-orchestrator. - Run the required setup: no package migrations are declared; clear cached config and routes if the host app uses caches.
- Open the related Capell admin surface and verify AI Orchestrator appears.
Next Steps
- Package docs
- Overview
- Screenshot contract
- Marketplace assets
- Capell content language plan
- Capell documentation design system
- Capell and package ERD notes
- Related packages: Layout Builder, Content Sections, Media Ai, Seo Suite, Translation Manager.
- Focused tests:
vendor/bin/pest packages/ai-orchestrator/tests --configuration=phpunit.xml.