AI Creator
Package docs status
Section titled “Package docs status”This page is generated from public package documentation in capell-4/packages and the package manifest checked into the source repository.
| Field | Value |
|---|---|
| Composer package | capell-app/ai-creator |
| Package slug | ai-creator |
| Product group | Capell Commercial |
| Tier | premium |
| Bundle | commercial |
| Runtime contexts | admin |
| Capell version | ^4.0 |
| 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 Commercial product group. It ships as capell-app/ai-creator and extends these surfaces: admin.
Reviewed AI-assisted creation sessions for Capell content, pages, layouts, and extension recommendations.
After install, the package contributes admin-facing extension points. Docs gap: no concrete Filament resource or page was detected.
Status details:
- Status: Available
- Tier: premium
- Bundle: commercial
- Composer package:
capell-app/ai-creator - Namespace:
Capell\AiCreator - Theme key: not applicable
Why It Matters
Section titled “Why It Matters”For developers: The package gives developers package-owned service providers, Actions, Data objects, and models instead of pushing this behaviour into core or application code.
For teams: AI Creator helps editors create Capell content, pages, and plans while recommending the extensions that make each result stronger.
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).
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. - Models:
AiCreatorSession. - Actions:
ApplyAiCreatorSessionAction,BuildAiCreatorSessionPreviewAction,PreviewAiCreatorSessionAction,RecommendAiCreatorPackagesAction,StartAiCreatorSessionAction. - Data objects:
AiCreatorPackageRecommendationData,AiCreatorPreviewData,AiCreatorStartSessionData. - 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. - Health checks:
Capell\AiCreator\Health\AiCreatorHealthCheck.
Data Model
Section titled “Data Model”- Required tables:
capell_ai_creator_sessions. - Models:
AiCreatorSession. - Migration files:
2026_06_22_000001_create_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 unless the package has an explicit pruning command, retention setting, or tested cascade path.
Install Impact
Section titled “Install Impact”- Admin navigation: contributes admin extension points through
capell.json. - Permissions: none declared in
capell.json. - Public routes: none detected in package route files.
- Database changes: package migrations are declared.
- Settings: no package settings declared.
- Queues or schedules: none detected in standard package paths.
- Cache tags: none declared.
- Commands: none declared.
Common Pitfalls
Section titled “Common Pitfalls”- Run migrations before opening package resources or public routes.
- Keep
composer.json,composer.local.json,capell.json, docs, screenshots, and tests aligned when the package surface changes.
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 |
Quick Start
Section titled “Quick Start”- Install the package:
composer require capell-app/ai-creator. - Run the required setup:
php artisan migrate. - Verify the package provider is registered and the related frontend, command, or extension point is active.
Next Steps
Section titled “Next Steps”- Package docs
- Overview
- 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, Foundation Theme, 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.