FleetCrown is an execution operating system for builders who run many projects at once. It is the engineering pillar of a three-pillar stack:
| Pillar | Product | Role |
|---|---|---|
| Economy | OrangeCat | Bitcoin-native funding, entities, and the public timeline |
| Engineering | FleetCrown (this repo) | Agent fleets, project execution, and the deploy pipeline for the whole stack |
| Governance | Solon | Bitcoin-signed proposals, votes, and self-verifying decisions |
The ties are real: FleetCrown is OrangeCat's customer #1 (OIDC login, publish
bus, stakeholder graph, shared BTC wallet); FleetCrown's agent Loki is a
registered voting member in Solon, casting Bitcoin-signed votes from its own
box (scripts/solon/cast-vote.ts) with decision webhooks landing at
/api/solon/events; and .github/workflows/selfhost-deploy.yml is the shared
CD pipeline that ships all three products to production.
The product thesis is simple: AI agents are becoming cheap execution capacity, but serious users still need a trustworthy command center. FleetCrown provides the state, queues, handoffs, guardrails, and business context around that capacity.
Production: https://fleetcrown.orangecat.ch
- Agent operations: launch, monitor, switch, and dispatch Claude, Codex, Gemini, Cursor, Grok, and OpenClaw across real project workspaces.
- Hybrid control plane: hosted Next.js app owns auth, database, product UI, and team state; a local daemon owns Zellij, shell, git, and agent CLIs.
- Project execution memory: per-project handoffs, queues, recent outcomes, lifecycle signals, git state, and saved context are visible in one place.
- Builder life OS: goals, people, habits, events, money, prompts, and thoughts live beside the work system rather than in disconnected apps.
- Economy-aware: Loki pulls open demand from sibling product OrangeCat and searches the economy by meaning (OrangeCat embeds the query server-side), so finding what already exists and building what's missing is one flow.
- Operational trust: runtime signals are persisted, versioned, and explained in the UI so users can tell the difference between active work, an open terminal, and historical handoff context.
FleetCrown is designed as a high-retention SaaS for power users and small teams. As a customer of OrangeCat, it demonstrates the "one is customer of the other" model (FleetCrown production consumes OrangeCat economic services). Both projects live on the OrangeCat platform with typed relations. See live: orangecat.ch projects for FleetCrown / OrangeCat (shared wallet bc1q3hh4yklcmwtpnqmxyksw36yedg7zyfy6tzzqwz). The economic model is built around durable workflow ownership, not one-off AI novelty.
| Layer | Value | Monetization path |
|---|---|---|
| Individual builder | One FleetCrown for projects, agents, commitments, and execution memory | Pro subscription |
| Team / studio | Shared project state, team visibility, agent dispatch, audit trail | Per-seat team plan |
| Agent runtime | Local daemon connects private machines to the hosted control plane | Paid runtime seats / usage tiers |
| Execution intelligence | Prompt routing, queue reasoning, outcomes, continuation policies | Premium automation tier |
| Enterprise / investor diligence | Operating telemetry, governance, security, and project health | Managed deployment / annual contract |
See docs/business-model.md for positioning, pricing logic, expansion loops, and defensibility.
Hosted control plane (self-hosted Next.js on Hetzner, Caddy in front)
Auth, database, UI, team state, command queue, runtime snapshots
Local runtime (user machine)
Zellij tabs, agent CLIs, git, shell tools, daemon, hook bridge
Data layer (Postgres / Drizzle)
User projects, runtime state, orchestration events, prompt queues,
goals, people, habits, events, billing, memories
Key design rules:
- SSOT first: schema, navigation, agent registry, runtime snapshots, prompt queues, and design tokens each have one canonical owner.
- Cloud/local separation: browser workflows stay cloud-safe; shell and terminal work happens only through the authenticated local daemon.
- Runtime truth beats assumptions: Control reflects live daemon pushes, process detection, Zellij tabs, and timestamped handoff files.
- Agent-agnostic direction: Claude-era compatibility remains where needed, but adapters and registry definitions are the migration path.
- Next.js 16.2.6 App Router, React 19, TypeScript strict
- PostgreSQL 17 with Drizzle ORM and schema-inferred types
- NextAuth v5 with GitHub OAuth and local owner-key support for private installs
- Tailwind CSS 4 with a tokenized dark-first design system
- Zellij + local daemon for terminal runtime control
- Self-hosted on Hetzner (
bitbaumbox, Caddy + systemd) — production deploys viascripts/deploy-hetzner.sh(build → rsync → restart); cron jobs run on the box - Husky + GitHub Actions for type, lint, and audit checks
src/app/ App routes and API endpoints
src/components/control/ Agent operations UI
src/components/*/ Domain surfaces: today, people, projects, goals, etc.
src/config/ Navigation, prompts, categories, product constants
src/db/schema/ Drizzle schema SSOT
src/db/queries/ Data access by domain
src/lib/ Runtime, auth, orchestration, formatting, utilities
home/ Local-first orchestration self-tests and runtime model
scripts/ Daemon, install, smoke, migration, and verification tools
docs/ Architecture, business model, cloud/local workflows
drizzle/ Generated schema migrations
packages/agent/ Hosted installer CLI
content/ Public essays and whitepaper content
Every change should preserve:
npm run verify— the one canonical gate. CI runs it verbatim, so green local verify means green CI. Its step list lives inpackage.json(scripts.verify); this file deliberately does not restate it.npm run build
This used to enumerate an ad-hoc subset of test scripts. Every such list drifts from the real gate — three docs ended up teaching three different, all-weaker bars — so the rule is now: name the gate, never its contents.
npm run smoke
CI runs type/lint/design/self-test checks on pushes and pull requests. A
scheduled audit workflow fails on high or critical dependency vulnerabilities.
Production deploys to the Hetzner box run via scripts/deploy-hetzner.sh
(build → rsync → restart fleetcrown-app).
npm install
docker compose up db -d
cp .env.example .env.local
npm run db:push # local scratch DB only — never a shared/prod database
npm run devMinimum local .env.local:
DATABASE_URL=postgresql://fleetcrown:changeme@localhost:5432/fleetcrown
AUTH_SECRET=replace-me
GITHUB_CLIENT_ID=replace-me
GITHUB_CLIENT_SECRET=replace-meOn a fresh database, visit /setup to create the first user.
Agent dispatch from the hosted app needs a connected machine:
curl -fsSL https://fleetcrown.orangecat.ch/api/agent/install | node - init --base-url https://fleetcrown.orangecat.chThe runtime requires Zellij and at least one supported CLI on PATH: claude,
codex, gemini, agent (Cursor), grok, or openclaw.
See docs/development/cloud-local-workflows.md for the full matrix of browser-only vs local-runtime workflows.
- Business model
- Architecture principles
- Debt reduction roadmap
- Cloud vs local workflows
- Responsive design (mobile/tablet)
- Agent CLI registry spec
- Postgres portability
- Local orchestration runtime
- Secrets stay out of Git; use
.env.exampleas the contract. - Production uses direct and pooled Postgres URLs separately.
- Local daemon access should use per-user
ck_*agent tokens. - Legacy shared daemon tokens require an explicit server-side opt-in flag.
- Private surfaces can be PIN-gated server-side.
- Dependency audit runs daily and high+ findings block the audit workflow.
See SECURITY.md for reporting and operational expectations.