AI Creator
Package docs status
Section titled “Package docs status”This page is generated from package source documentation in the Capell packages repository and the checked-in manifest. Source documentation is not distribution status. Before running a Composer command, verify that the exact package and compatible 1.x release are available through public Packagist or the authenticated marketplace account.
| Field | Value |
|---|---|
| Composer package | capell-app/ai-creator |
| Package slug | ai-creator |
| Product group | Capell AI |
| Tier | premium |
| Bundle | ai |
| Runtime contexts | admin |
| Capell version | ^1.0 |
| Catalogue role | extension |
| Release channel | Labs |
| Source repository | capell-app/packages |
| Source path | packages/ai-creator |
| Docs source | packages/ai-creator/docs |
| Manifest | capell.json |
What This Plugin Adds
Section titled “What This Plugin Adds”AI Creator is an Available, Schema-owning Capell package in the Capell AI product group. It ships as capell-app/ai-creator and extends these surfaces: admin.
AI Creator adds reviewed creation sessions that turn a structured plain-language brief into a proposed Capell site, theme, and page plan.
Authorised administrators start a session in the AI Creator admin page, generate and inspect a private site preview, then complete a one-use confirmation before the reviewed site and pages are created.
Evidence: capell.json, src/Models/AiCreatorSession.php, src/Actions/StartAiCreatorSessionAction.php, docs/overview.admin.md, docs/screenshots.json, tests/Feature/AiCreatorSessionActionsTest.php.
Status details:
- Status: Available
- Tier: premium
- Bundle: ai
- Composer package:
capell-app/ai-creator - Namespace:
Capell\AiCreator - Theme key: not applicable
Why It Matters
Section titled “Why It Matters”For developers: Session planning, preview, package recommendation, and application are separate Actions, and Agent Bridge capabilities expose the same reviewed boundary to trusted clients.
For teams: Teams can review the private site plan and advisory package recommendations before an authorised administrator confirms creation.
Evidence: src/Actions/PreviewAiCreatorSessionAction.php, src/Actions/ApplyAiCreatorSessionAction.php, src/Actions/RecommendAiCreatorPackagesAction.php, src/Manifest/AiCreatorAgentBridgeCapabilitiesContribution.php, docs/overview.admin.md, docs/screenshots.json, tests/Feature/AiCreatorSessionActionsTest.php.
Screens And Workflow
Section titled “Screens And Workflow”Screenshot contract: docs/screenshots.json.
- AI Creator session preview (admin, required).
- AI Creator Agent Bridge confirmation (admin, required).
- AI Creator reviewed session detail (admin, optional).
- AI Creator application result (admin, optional).
- AI Creator validation failure (admin, optional).
Technical Shape
Section titled “Technical Shape”- Service providers:
Capell\AiCreator\Providers\AiCreatorServiceProvider. - Migrations:
packages/ai-creator/database/migrations/2026_06_22_000001_create_capell_ai_creator_sessions_table.php,packages/ai-creator/database/migrations/2026_07_15_000002_add_generation_state_to_capell_ai_creator_sessions_table.php. - Models:
AiCreatorSession. - Filament classes:
AiCreatorPage. - Route files:
packages/ai-creator/routes/web.php. - Listeners:
BuildSiteFromInstalledSpecListener. - Actions:
ApplyAiCreatorSessionAction,BuildAiCreatorSessionPreviewAction,BuildAiCreatorSessionPreviewUrlAction,BuildAiCreatorSitePreviewAction,BuildAiCreatorSiteSpecPromptAction,BuildCapellSiteFromSpecAction,BuildSiteFromSpecFileAction,GetInterviewAction,ListLayoutsAction,ListPageTypesAction,ListSectionTypesAction,ListThemesAction,and 8 more. - Data objects:
AiCreatorPackageRecommendationData,AiCreatorPreviewData,AiCreatorStartSessionData,GeneratedAiCreatorSiteSpecData,CapellSiteSpecColorsData,CapellSiteSpecData,CapellSiteSpecLanguageData,CapellSiteSpecPageData,CapellSiteSpecSectionData,CapellSiteSpecSiteData,CapellSiteSpecThemeData. - Jobs:
GenerateAiCreatorSiteSpecJob. - Manifest contributions:
admin-page: Capell\AiCreator\Manifest\AiCreatorAdminPageContribution,agent-capability: Capell\AiCreator\Manifest\AiCreatorAgentBridgeCapabilitiesContribution,health-check: Capell\AiCreator\Health\AiCreatorHealthCheck,model: Capell\AiCreator\Manifest\AiCreatorModelsContribution,route: Capell\AiCreator\Manifest\AiCreatorPreviewRouteContribution. - Health checks:
Capell\AiCreator\Health\AiCreatorHealthCheck. - Blade views:
packages/ai-creator/resources/views/filament/pages/ai-creator.blade.php,packages/ai-creator/resources/views/session-preview.blade.php.
Data Model
Section titled “Data Model”- Required tables:
capell_ai_creator_sessions. - Models:
AiCreatorSession. - Core record references in migrations:
sites via site_id,users via user_id. - Migration files:
2026_06_22_000001_create_capell_ai_creator_sessions_table.php,2026_07_15_000002_add_generation_state_to_capell_ai_creator_sessions_table.php. - Migration impact: run host migrations through the package install flow before opening package surfaces.
- Deletion/retention behaviour: Docs gap: migrations and manifest contributions do not prove a cascade, pruning command, or timed retention policy.
Install Impact
Section titled “Install Impact”- Required packages:
capell-app/admin,capell-app/agent-bridge,capell-app/ai-orchestrator,capell-app/core. - Admin navigation: declares
admin-page: AiCreatorAdminPageContribution; each Filament page or resource controls its own navigation visibility. - Admin/editor extensions: none declared.
- Permissions:
View:AiCreatorPage,Manage:AiCreatorPage. - Public routes: loads
routes/web.php; registersAiCreatorPreviewRouteContribution. - Database changes: package migrations are declared.
- Config: no package config files.
- Settings: no package settings declared.
- Queues or schedules: queue jobs
GenerateAiCreatorSiteSpecJob. - Cache tags: none declared.
- Commands: none declared.
Common Pitfalls
Section titled “Common Pitfalls”- Keep required Capell packages on compatible v4 releases:
capell-app/admin,capell-app/agent-bridge,capell-app/ai-orchestrator,capell-app/core. - Run migrations before opening package resources or public routes.
- Review middleware, throttling, signatures, and public-output safety in
routes/web.phpbefore exposing routes.
Troubleshooting
Section titled “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 |
| Admin screen or command fails on missing table | Package migrations have not run | Check the tables listed in Data Model |
Run host migrations and rerun the focused package test |
| Route returns unexpected output | Route cache, middleware, or signed URL setup does not match the package route file | Check the route files listed in Technical Shape |
Clear route cache and verify middleware before exposing public routes |
| Background work does not run | Queue worker or declared schedule is not active | Check the jobs and scheduled commands listed in Technical Shape |
Start the queue worker or host scheduler, then run the focused command or package test |
Quick Start
Section titled “Quick Start”- Install the package:
composer require capell-app/ai-creator. - Run the required setup:
php artisan migrate. - Open the AI Creator session preview and confirm the admin workflow loads.
Next Steps
Section titled “Next Steps”- Package docs
- Overview
- Admin guide
- Troubleshooting
- Screenshot contract
- Marketplace assets
- Capell content language plan
- Capell documentation design system
- Capell and package ERD notes
- Related packages: Agent Bridge, Ai Orchestrator, Block Library, Blog, Campaign Studio, Content Sections, Events, Form Builder, Theme Foundation, Frontend Authoring, Frontend Optimizer, Ga4 Reports, Html Cache, Insights, Layout Builder, Media Ai, Media Library, Navigation, Newsletter, Publishing Studio, Search, Seo Suite, Site Monitor, Structured Content Library.
- Focused tests:
vendor/bin/pest packages/ai-creator/tests --configuration=phpunit.xml.