| name | architect |
| description | Run the multi-persona planning methodology to produce a master plan for a new project or feature. This skill orchestrates 3-5 expert personas through a rigorous 5-phase planning workflow: scope definition → independent plans → debate & critique → revised plans → synthesis into a master plan with wave structure, task specs, dependencies, and build tracker.
Use this skill whenever the user wants to plan a new project, design a feature implementation, architect a system, create a build roadmap, structure a complex initiative, or needs a multi-perspective planning approach. Trigger on phrases like "architect", "plan this project", "design the implementation", "how should we build", "create a master plan", "multi-persona planning", "planning methodology", or when the user invokes `/architect` explicitly.
Also trigger when users mention needing different expert perspectives on a project, when they want a structured approach to planning something complex, when they reference waves or phases of work, when discussing build plans or project roadmaps, or when they say things like "let's think through this from multiple angles", "we need a comprehensive plan", "help me break this down into phases", or "I want to make sure we don't miss anything in the design".
This skill is especially valuable for complex projects where one perspective isn't enough — things like building new features, refactoring systems, launching products, designing courses, creating content pipelines, or any initiative with multiple stakeholders or technical domains. Even if the user doesn't explicitly say "architect" or "multi-persona", if they're describing something that would benefit from structured planning with diverse expert input, use this skill.
|
Skill: /architect
Run the multi-persona planning methodology to produce a master plan for a new project or feature.
Parameters
- brief (required): What are we building? Can be a sentence, a paragraph, or "read [file]" to pull from an existing doc.
- --personas (optional): Override persona count. Default: auto-selected (see Phase 0).
- --skip-debate (optional): Skip Phase 2 debate AND Phase 3 revisions, go straight to synthesis. Faster but lower quality.
- --output-dir (optional): Where to write plans. Default: auto-detect from project context.
- --auto-proceed (optional): Skip all user approval prompts. Use for automated testing or non-interactive environments.
Trigger Phrases
/architect Build a centered-person thumbnail template
/architect "Add YouTube upload to the podcast pipeline"
/architect read evals-course/BUILD_PLAN.md
architect a new email drip sequence for cohort 4
Methodology
This skill implements shared/PLANNING_METHODOLOGY.md. The full workflow:
Phase 0 Scope & Persona Selection → define brief, pick 3-5 expert personas
Phase 1 Independent Plans (Round 1) → all personas plan in parallel
Phase 2 Debate & Critique → single moderator resolves conflicts
Phase 3 Revised Plans (Round 2) → personas revise in parallel
Phase 4 Alignment & Synthesis → single architect produces master plan
Phase 5 Build Status Tracker → CREATE BUILD_STATUS.yaml
Execution
1. Parse the brief
If the user provided a file path or "read [file]", read that file as the project brief.
Otherwise, use the text they provided directly.
If the brief is too vague (under 20 words, no clear deliverable), ask one clarifying question before proceeding.
2. Determine output directory
Look for context clues:
- If the brief mentions a specific project (podcast, analytics, evals, etc.), use that project's directory
- If a
working/plans/ directory already exists nearby, use it
- Otherwise, create
working/plans/ in the most relevant project directory
- If truly ambiguous, ask the user
Set:
PLANS_DIR: {project}/working/plans/
MASTER_PLAN_PATH: {project}/MASTER_PLAN.md (or {PROJECT_NAME}_MASTER_PLAN.md)
3. Phase 0: Scope & Persona Selection
Read shared/PLANNING_METHODOLOGY.md for the full methodology reference.
Select persona count based on project scope:
- Small projects (<10 tasks, 1-2 week timeline): 3 personas
- Medium projects (10-30 tasks, 2-6 weeks): 5 personas
- Large projects (>30 tasks, >6 weeks): 7 personas
- If brief is very short (<50 words) or mentions "quick plan", suggest
--quick mode (3 personas, no debate)
- If
--personas flag provided, use that count
- When uncertain, default to 5 personas
Based on the brief, select domain-specific personas. Use the archetype table from the methodology as a starting point, but customize roles to the specific project. Examples:
- Thumbnail project: CTR Optimizer, Frontend Renderer, Brand Compositor, Pipeline Architect
- Course project: Curriculum Designer, Student Advocate, Technical Author, Platform Specialist
- Database refactoring: SQL Standards Architect, Migration Safety Lead, Query Builder Engineer, Testing Engineer
Present the personas to the user:
Project: [brief summary]
Output: {MASTER_PLAN_PATH}
Scope: [Small/Medium/Large]
Personas: [N personas]
1. [Name] — [Role]. Cares about: [focus]. Will challenge: [what].
2. ...
Proceed with these personas? (a) Yes (b) Swap one out (c) Add/remove
If --auto-proceed is set, skip user approval and proceed automatically.
Otherwise, wait for approval before launching Phase 1.
4. Phase 1: Independent Plans (Round 1)
Launch all persona agents in parallel using the Task tool. Each persona gets:
- The project brief
- Their role description and perspective
- Any reference files or examples mentioned in the brief
- Instructions to write their plan to
{PLANS_DIR}/round1/{persona-slug}.md
Each persona produces:
- What needs to be built (their domain)
- How it should be structured
- Phases/waves
- Dependencies on other domains
- Risks and unknowns
- What they'd push back on
Wait for all personas to complete.
5. Phase 2: Debate & Critique
If --skip-debate: skip to Phase 4.
Launch a single debate agent that receives all Round 1 plans. It identifies:
- Agreements (2+ personas align)
- Conflicts (incompatible approaches)
- Gaps (nobody addressed)
- Resolutions with reasoning
Output: {PLANS_DIR}/debate-summary.md
6. Phase 3: Revised Plans (Round 2)
IMPORTANT: Phase 3 is ONLY skipped when --skip-debate is used. If the debate phase ran, Round 2 MUST run to incorporate debate resolutions.
Launch all persona agents again in parallel. Each receives:
- Their Round 1 plan
- The debate summary (with resolutions, gap assignments, and conflict decisions)
- Instructions to revise and write to
{PLANS_DIR}/round2/{persona-slug}.md
Each persona must address:
- Conflicts they were involved in (incorporate the resolution)
- Gaps assigned to them (add missing details)
- Agreements with other personas (reinforce consensus)
7. Phase 4: Synthesis
Launch a single synthesis agent that receives all Round 2 plans + debate summary.
Produces the master plan with sections:
- Executive Summary
- Wave Structure (summary table)
- Detailed Waves (task specs with IDs, files, deps)
- Dependency Graph
- Files Changed Summary
- Open Questions
Output: {MASTER_PLAN_PATH}
8. Phase 5: Build Status Tracker
Generate BUILD_STATUS.yaml following the schema in shared/PLANNING_METHODOLOGY.md.
If --auto-proceed is NOT set, ask for user approval of the master plan before generating the tracker.
Otherwise, proceed automatically.
8.5. Artifact Validation
Before reporting completion, verify all required artifacts exist:
Required artifacts:
{MASTER_PLAN_PATH} - Master plan file
{project}/BUILD_STATUS.yaml - Build tracker
{PLANS_DIR}/round1/*.md - Round 1 persona plans (one per persona)
{PLANS_DIR}/debate-summary.md - Debate summary (unless --skip-debate)
{PLANS_DIR}/round2/*.md - Round 2 revised plans (unless --skip-debate)
If any required artifact is missing, create it before proceeding to the final report. Log which artifacts were created vs already existed.
9. Report
=== PLANNING COMPLETE ===
Master Plan: {MASTER_PLAN_PATH}
Build Tracker: {project}/BUILD_STATUS.yaml
Persona Plans: {PLANS_DIR}/round1/ (5 files)
Revised Plans: {PLANS_DIR}/round2/ (5 files)
Debate Summary: {PLANS_DIR}/debate-summary.md
Waves: [N]
Tasks: [N]
Ready to execute: "produce wave 0" or read the master plan first
Shortcuts
/architect --quick [brief]: Use 3 personas, skip debate (Phases 0-1-4 only). Faster for smaller projects.
/architect --resume: Re-read existing plans in working/plans/ and pick up where we left off.