project-architect
Documentation-first project planning that produces implementation-ready blueprints and single-shot coding agent prompts. Generates 4 interconnected docs: SPECIFICATION.md, IMPLEMENTATION.md, TASKS.md, BRANDING.md — plus a PROMPT.md prompt for autonomous execution. Includes interactive tech stack selection, design pattern recommendations, and architecture decisions with trade-off analysis. Trigger when user wants to: plan a project, create specs, architect a system, break work into tasks, choose a tech stack, get design pattern advice, generate a coding agent prompt, or do documentation-first development. Phrases: "plan my project", "spec this out", "architect", "help me plan", "what stack should I use", "generate a prompt", "break this into tasks", "project docs", "I want to build X".
What this skill does
# Project Architect
A documentation-first project planning system that produces **implementation-ready blueprints**
and **Claude Code-ready prompts**. The philosophy: think deeply, document thoroughly, then
execute with zero ambiguity.
## Output Pipeline
```
[Discovery] → SPECIFICATION.md → IMPLEMENTATION.md → TASKS.md → BRANDING.md
(The What) (The How) (The Work) (Identity)
↓ ↓ ↓
└────────────────────┴───────────────────┘
↓
PROMPT.md
(Claude Code Single-Shot)
```
Each document feeds the next. The final PROMPT.md synthesizes all documents into a single
prompt optimized for Claude Code execution.
## Reference Files
Read the appropriate reference file before generating each document:
| Phase | Reference File | When to Read |
|-------|---------------|--------------|
| Discovery | `${CLAUDE_PLUGIN_ROOT}/references/elicitation-guide.md` | Before asking any questions |
| Tech Stack | `${CLAUDE_PLUGIN_ROOT}/references/tech-stacks.md` | When user needs stack selection help |
| Patterns | `${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md` | When making architecture decisions |
| Specification | `${CLAUDE_PLUGIN_ROOT}/references/specification-guide.md` | Before generating SPECIFICATION.md |
| Implementation | `${CLAUDE_PLUGIN_ROOT}/references/implementation-guide.md` | Before generating IMPLEMENTATION.md |
| Tasks | `${CLAUDE_PLUGIN_ROOT}/references/tasks-guide.md` | Before generating TASKS.md |
| Branding | `${CLAUDE_PLUGIN_ROOT}/references/branding-guide.md` | Before generating BRANDING.md |
| Prompt | `${CLAUDE_PLUGIN_ROOT}/references/claude-code-prompt.md` | Before generating PROMPT.md |
## Workflow
### Phase 0: Discovery & Elicitation
Read `${CLAUDE_PLUGIN_ROOT}/references/elicitation-guide.md` for the full question framework.
Before writing anything, understand the project through structured conversation.
Use `AskUserQuestion` tool aggressively for choices — the user should tap, not type,
whenever possible.
**Minimum understanding before any document generation:**
1. What does this project do? (elevator pitch)
2. Who is it for? (target audience)
3. What's the project type? (web app, CLI, library, API, mobile, desktop, infra tool)
4. What's the scope? (MVP vs full product)
5. Tech stack direction (or "help me choose")
**If the user says "help me choose a stack":**
Read `${CLAUDE_PLUGIN_ROOT}/references/tech-stacks.md` and run the interactive stack selection flow.
Present options with trade-offs using `AskUserQuestion`.
### Phase 1: SPECIFICATION.md
Read `${CLAUDE_PLUGIN_ROOT}/references/specification-guide.md` before generating.
Defines **what** the project is. Technology-aware but not implementation-detailed.
After generating, pause for user review.
### Phase 2: IMPLEMENTATION.md
Read `${CLAUDE_PLUGIN_ROOT}/references/implementation-guide.md` AND `${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md` before generating.
Translates specification into **how** to build it. This is where you:
- Recommend design patterns based on the project's needs (consult patterns reference)
- Define concrete directory structures with file-by-file purpose
- Choose dependencies with rationale
- Define module interfaces and data flows
- Include code snippets for critical patterns (signatures, types, structural examples)
**Pattern Recommendations:** Consult `${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md` and recommend specific
patterns with rationale. Don't just name-drop — show how each pattern applies to THIS project
with a short code sketch.
### Phase 3: TASKS.md
Read `${CLAUDE_PLUGIN_ROOT}/references/tasks-guide.md` before generating.
Converts implementation into **ordered work items**. Each task must be:
- Completable by Claude Code in a single session
- Self-contained with full context
- Ordered by strict dependency chain
- Include the exact files to create/modify
### Phase 4: BRANDING.md (Optional)
Read `${CLAUDE_PLUGIN_ROOT}/references/branding-guide.md` before generating.
Only generate if user wants it or the project is user-facing.
### Phase 5: PROMPT.md (Always Generate)
Read `${CLAUDE_PLUGIN_ROOT}/references/claude-code-prompt.md` before generating.
**This is the most critical output.** Synthesize all documents into a single-shot prompt
that Claude Code can execute to build the entire project from scratch. The prompt must be
completely self-contained, with inline code for complex patterns and an ordered checklist
of every file to create.
## Operating Rules
1. **Document order is sequential.** SPEC → IMPL → TASKS → BRANDING → PROMPT. Never skip ahead.
2. **Pause between documents.** Present each doc, ask for approval before the next.
3. **Use `AskUserQuestion` for decisions.** Tech stack, database, auth, deployment — any
decision with 2-4 clear options should use interactive selection, not freeform questions.
4. **Recommend, don't dictate.** Present 2-3 options with trade-offs. Let user choose.
If user says "you pick", choose and explain why.
5. **Scale to project size.** Weekend project = concise docs, 15-30 tasks. Enterprise
platform = thorough docs, 100+ tasks. Match depth to ambition.
6. **Always save as files.** Every document goes to `./[project-name]/docs/` in the current
working directory as Markdown files. Use the `Write` tool to save them.
7. **Cross-reference between documents.** IMPL references SPEC sections. TASKS reference IMPL
modules. PROMPT inlines everything needed.
8. **No filler.** Every line must be specific to THIS project. Remove sections that would be
generic boilerplate.
9. **Design patterns are recommendations.** When choosing patterns for IMPLEMENTATION.md,
consult `${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md` and match patterns to the project's specific needs.
Include a brief "why this pattern" rationale for each recommendation.
## Plugin-Aware Integration
Check if the user has other Claude Code plugins or skills installed. If they do:
- **Frontend framework planner** (react-app-planner, nextjs-app-planner, etc.) → Suggest
using it for deeper framework decisions after architect docs are done
- **Frontend design** → Reference it for UI component guidance in IMPLEMENTATION.md
- **Brand/design skills** → Integrate into BRANDING.md generation
- **MCP builder** → If project includes an MCP server, note the skill for implementation phase
- **Language-specific skills** (typescript-mastery, etc.) → Incorporate coding standards
from that skill into IMPLEMENTATION.md
Mention relevant skills naturally: "You have a react-app-planner skill — want me to use it
for deeper React architecture decisions after we finish the high-level plan?"
## Handling Partial Input
| Scenario | Action |
|----------|--------|
| Vague 1-liner | Full elicitation flow with `AskUserQuestion` |
| Detailed brief | Extract answers, ask only gaps |
| Existing spec uploaded | Validate, suggest improvements, continue from Phase 2 |
| "Just the spec" | Generate SPECIFICATION.md only, offer to continue later |
| "Skip to tasks" | Gather context, generate lightweight spec+impl, then tasks |
| "Just give me a prompt" | Condensed discovery → direct PROMPT.md generation |
| "Help me choose a stack" | Run tech stack advisor from `${CLAUDE_PLUGIN_ROOT}/references/tech-stacks.md` |
| "What patterns should I use?" | Consult `${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md`, ask about project |
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.