Skip to content

Approved Packages

Capell keeps the normal product small and installs larger features as packages. This repository contains Core, Admin, Frontend, Installer, and Marketplace. First-party add-ons live in the sibling capell-app/capell-packages monorepo and are published as capell-app/<name>.

Use this page to check what exists, what is free, and which premium product group owns each package. Package-specific READMEs remain the source of truth for detailed install flags, models, actions, and command signatures.

The generated public package shelf is the best entry point for browsing package pages by product group, runtime context, and tier: Package Shelf. Keep this catalogue focused on package selection and use package READMEs for implementation details.

NeedStart with
Build pages, layouts, theme chrome areas, sections, and starter visual contentContentSections, Content Sections, Hero, Foundation Theme
Publish articles, tags, archives, and discoverable URLsBlog, Tags, Site Discovery
Add search, metadata, schema, audits, and AI discovery checksSEO Suite, Search
Run campaigns and measure conversionCampaign Studio, Insights, GA4 Reports
Monitor site health and admin operationsDiagnostics, Dashboard Reports, Login Audit, Password Policy
Create repeatable demo sites and package screenshotsDemo Kit, Foundation Theme

Most first-party packages follow this pattern:

Terminal window
composer require capell-app/<package>
php artisan capell:<package>-install

Always confirm the exact command with:

Terminal window
php artisan list capell

The Marketplace admin page can also install compatible packages when the marketplace is enabled.

PackageComposer nameLocationPurpose
Corecapell-app/coreThis repoSites, pages, languages, types, settings, package registry, install/upgrade orchestration.
Admincapell-app/adminThis repoFilament panel, resources, dashboards, settings UI, users, page editing, media UI, recovery shell.
Frontendcapell-app/frontendThis repoPublic rendering, Tailwind aggregation, Blade helpers, and frontend middleware.
Installercapell-app/installerThis repoBrowser installer guide and installer cleanup flow.
Marketplacecapell-app/marketplaceThis repoExtension marketplace browsing, acquisition, and install authorization records.

Free packages every serious Capell site can reasonably use.

PackageComposer namePurpose
ContentSectionscapell-app/content-sectionsVisual content sections, content-first editing, element assets, theme layout areas, and public layout graph rendering.
Blogcapell-app/blogBlog post type, article archives, RSS-style content, and blog admin resources.
Navigationcapell-app/navigationNavigation tree management for header, footer, sidebar, and other menus.
Tagscapell-app/tagsShared taxonomy support for content types that need tags.
Addresscapell-app/addressAddress and country fields for sites or other models.
Media Librarycapell-app/media-libraryAwcodes Curator backend for Capell media, with Curator picker integration and migration support.
Frontend Authoringcapell-app/frontend-authoringAdmin-only beacon, in-page edit controls, and cache-aware Filament field editing from public pages.
Foundation Themecapell-app/foundation-themeStandard Tailwind frontend theme, Blade directives, URL generation, and SVG media component.
HTML Cachecapell-app/html-cacheOptional generated public HTML cache and static-site warming commands.
Site Discoverycapell-app/site-discoveryXML sitemap generation and discovery files.

Core uses Spatie MediaLibrary by default through Capell media contracts. Media Library stays free because media management is foundational; it swaps the implementation behind those contracts when a project wants Curator.

Premium lead capture and submission workflows.

PackageComposer namePurpose
FormBuildercapell-app/form-builderForm builder, submissions, validation, notifications, exports, and frontend/admin integration.

Premium commercial capabilities that coordinate across installed packages without forcing those packages to depend on paid features.

PackageComposer namePurpose
AIOrchestratorcapell-app/ai-orchestratorAI orchestration, prompt-driven capabilities, provider connectors, approval levels, and optional integrations such as ContentSections layout planning.

Premium editorial workflow and team publishing features.

PackageComposer namePurpose
PublishingStudiocapell-app/publishing-studioRevisions, approvals, scheduling, controlled publishing, workspace activity, and draft-aware editorial flow.

Premium site health, maintenance, recovery, and admin safety.

PackageComposer namePurpose
Backupcapell-app/backupExport, import, restore, package manifests, relation resolution, media ingest, and import-session execution.
Diagnosticscapell-app/diagnosticsOperational diagnostics for Capell installations, including health, queue, permission, registry, and config checks.
Login Auditcapell-app/login-auditLogin history and authentication log admin integration.

Do not document export/import as a normal Core feature; Admin provides the recovery UI shell, and Backup provides the implementation.

Premium marketing, insights, campaign-studio, and conversion reporting.

PackageComposer namePurpose
Insightscapell-app/insightsFirst-party insights, visitor journeys, click tracking, and consent management.
CampaignStudiocapell-app/campaign-studioCampaign landing pages, CTA blocks, UTM attribution, goals, conversion tracking, and dashboard reports.

Premium transactional email, delivery audit, and reply handling.

PackageComposer namePurpose
Email Studiocapell-app/email-studioTemplate-driven transactional email, delivery profiles, send audit trails, suppressions, provider events, replies, and tracking diagnostics.

Premium discovery, technical SEO, and search optimisation.

PackageComposer namePurpose
SEO Suitecapell-app/seo-suiteStructured data, social metadata, robots controls, audits, and SEO ai-orchestrator features.
Searchcapell-app/searchFrontend search, optional logging, zero-result dashboard reports, and admin search insights.

Basic redirects stay in Capell Foundation. Advanced redirect insights can be surfaced through Search & SEO when the SEO package is installed.

Premium polished frontend themes.

PackageComposer namePurpose
Agency Themecapell-app/theme-agencyPremium agency frontend renderer and curated presets.
Corporate Themecapell-app/theme-corporatePremium corporate frontend renderer and curated presets.
SaaS Themecapell-app/theme-saasPremium SaaS frontend renderer and curated presets.

The default theme remains Foundation. Premium themes are installed independently and can extend the Foundation Theme when they need shared defaults. Themes can also register ContentSections areas, such as header, so editors can place normal elements into theme chrome without bespoke content tables.

Composer installs transitive requirements, but these relationships are useful when planning a product:

Packages with visibility: support are dependency-only helpers. They do not appear as normal catalogue choices; visible packages pull them in through dependencies.supports when the support package’s hard requirements are already selected or installed.

PackageNotable dependencies
BlogContentSections, Navigation, Tags, PublishingStudio
CampaignStudioInsights, FormBuilder, Frontend, ContentSections
Email StudioAdmin, Core, Frontend; supported integrations with FormBuilder, CampaignStudio, Insights
ContentSectionsAdmin, Frontend, Navigation
AIOrchestratorAdmin; supported integrations activate when packages such as ContentSections are installed
PublishingStudioAdmin, Backup, Core, Navigation
Agency ThemeFoundation Theme, Frontend
Corporate ThemeFoundation Theme, Frontend
SaaS ThemeFoundation Theme, Frontend
Admin PreviewAdmin, Frontend, PublishingStudio

Use the package-authoring guides when creating or maintaining a Capell package:

PageCovers
PackagesPackage shape, service providers, Actions/Data/settings, extension points, migrations, and release checklist.
Extension point chooserWhich host extension point to use for a package contribution.
Extension troubleshootingHow to debug missing package contributions, stale caches, route fallback, settings, and marketplace issues.
Host, package, or app codeWhere a feature or document should live.