architect
Given a PRD, produces an implementation architecture: file tree, component breakdown, data model, and a phased build plan with end conditions that Archon can…
End-to-end app creation from a single description. Five tiers: blank project, guided, templated, fully generated, or feature addition to existing codebase. Routes through PRD, architecture, and Archon campaign with verification at every step.
$ npx -y skills add SethGammon/Citadel --skill create-app --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/create-appContext preview
The summary Claude sees to decide when to auto-load this skill.
End-to-end app creation from a single description. Five tiers: blank project, guided, templated, fully generated, or feature addition to existing codebase. Routes through PRD, architecture, and Archon campaign with verification at every step.
name: create-app license: MIT description: >- End-to-end app creation from a single description. Five tiers: blank project, guided, templated, fully generated, or feature addition to existing codebase. Routes through PRD, architecture, and Archon campaign with verification at every step. user-invocable: true auto-trigger: false trigger_keywords: - create app - build app - build me - make an app - new app - generate app - add auth - add payments - integrate effort: max
**Use when:** building a new app from scratch -- full scaffold, design system, and feature set from a single description. **Don't use when:** adding a feature to an existing app (use /marshal or /archon); generating a single component (use /scaffold).
Use when the user wants to create an app, add a feature, or scaffold a project. Classify the input into one of five tiers:
If no template matches, fall through to Tier 2.
2 phases. Quality spot-checks every phase. Circuit breakers armed.
the feature is well-scoped and all conditions are machine-verifiable.
| Input Pattern | Tier | |---|---| | "blank project", "scaffold", "new empty" | 1 | | "help me build", "I want to create", "guide me" | 2 | | "todo app", "blog", "dashboard", well-known app type | 3 | | "build me [detailed]", "create [app]", confident description | 4 | | "add [feature]", "implement [feature]", existing project + feature description | 5 | | Ambiguous | Default to Tier 2 (safest) |
Read the user's input. Determine the tier. Announce what you'll do in plain language — not tier numbers. If the classification is wrong, accept user overrides ("just scaffold it" → Tier 1, "just build it" → Tier 4).
**Tier 1:** Invoke /scaffold. Done.
**Tier 2:** /prd → user approves → /architect → user approves → Archon campaign → brief user after each major phase.
**Tier 3:** Check `.planning/_templates/app-types/` for template → present PRD, ask for changes → /architect with template defaults → Archon campaign.
**Tier 4:** 1. /prd express mode (0-1 questions) 2. User approves PRD (only mandatory checkpoint) 3. /architect (auto-approve if all end conditions are machine-verifiable) 4. Archon campaign with ALL safety systems active:
5. Execute autonomously until complete or parked 6. Run full verification of all PRD end conditions, present results
**Tier 5 (Feature Addition):** 1. Read existing codebase — file tree, package.json, key entry points, existing patterns 2. /prd in feature mode (max 2 questions) 3. User approves feature spec (one mandatory checkpoint) 4. /architect in existing codebase mode — Phase 0 always "Baseline" (run typecheck + tests, record counts). Auto-approve if machine-verifiable. 5. Archon campaign — every phase end condition includes "no new typecheck errors vs baseline" and "existing tests pass" 6. On completion: verify all feature end conditions + baseline regression check, present results
Check each PRD end condition (run commands, check files, invoke /live-preview for visual checks). Report PASS / PARTIAL / FAIL with specifics.
Present: what was built, what was verified, what needs attention, how to run it, and suggested next step (e.g., /postmortem or deploy command).
**Vague requirements**: Default to Tier 2 and ask clarifying questions before producing the PRD.
**Project already initialized**: Existing sou
An open-source operating layer for Claude Code and OpenAI Codex. Citadel routes requests, preserves repository state between sessions, coordinates parallel work, applies repository safeguards, and records evidence and handoffs around the coding agent you
Repo: SethGammon/Citadel
Given a PRD, produces an implementation architecture: file tree, component breakdown, data model, and a phased build plan with end conditions that Archon can…
Autonomous multi-session campaign agent. Decomposes large work into phases, delegates to sub-agents, reviews output, and maintains campaign state across…
Generate perfectly aligned ASCII diagrams — architecture, flow, sequence, box-and-arrow. Uses a programmatic character-grid approach so alignment is guaranteed…
Intake-to-delivery pipeline. Processes pending items from .planning/intake/: briefs new ideas, executes approved work through research → plan → build → verify.…
Deep cost exploration and transparency. Shows real token usage, session costs, campaign spend, burn rates, and model breakdown. Reads Claude Code's native…
Creates new skills from the user's repeating patterns. Interview-driven: discovers the task, analyzes failure modes, generates a production SKILL.md, installs…