@accelerationguy/accel 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +19 -0
- package/LICENSE +33 -0
- package/README.md +275 -0
- package/bin/install.js +661 -0
- package/docs/getting-started.md +164 -0
- package/docs/module-guide.md +139 -0
- package/modules/drive/LICENSE +21 -0
- package/modules/drive/PAUL-VS-GSD.md +171 -0
- package/modules/drive/README.md +555 -0
- package/modules/drive/assets/terminal.svg +67 -0
- package/modules/drive/bin/install.js +210 -0
- package/modules/drive/integration.js +76 -0
- package/modules/drive/package.json +38 -0
- package/modules/drive/src/commands/add-phase.md +36 -0
- package/modules/drive/src/commands/apply.md +83 -0
- package/modules/drive/src/commands/assumptions.md +37 -0
- package/modules/drive/src/commands/audit.md +57 -0
- package/modules/drive/src/commands/complete-milestone.md +36 -0
- package/modules/drive/src/commands/config.md +175 -0
- package/modules/drive/src/commands/consider-issues.md +41 -0
- package/modules/drive/src/commands/discover.md +48 -0
- package/modules/drive/src/commands/discuss-milestone.md +33 -0
- package/modules/drive/src/commands/discuss.md +34 -0
- package/modules/drive/src/commands/flows.md +73 -0
- package/modules/drive/src/commands/handoff.md +201 -0
- package/modules/drive/src/commands/help.md +525 -0
- package/modules/drive/src/commands/init.md +54 -0
- package/modules/drive/src/commands/map-codebase.md +34 -0
- package/modules/drive/src/commands/milestone.md +34 -0
- package/modules/drive/src/commands/pause.md +44 -0
- package/modules/drive/src/commands/plan-fix.md +216 -0
- package/modules/drive/src/commands/plan.md +36 -0
- package/modules/drive/src/commands/progress.md +138 -0
- package/modules/drive/src/commands/register.md +29 -0
- package/modules/drive/src/commands/remove-phase.md +37 -0
- package/modules/drive/src/commands/research-phase.md +209 -0
- package/modules/drive/src/commands/research.md +47 -0
- package/modules/drive/src/commands/resume.md +49 -0
- package/modules/drive/src/commands/status.md +78 -0
- package/modules/drive/src/commands/unify.md +87 -0
- package/modules/drive/src/commands/verify.md +60 -0
- package/modules/drive/src/references/checkpoints.md +234 -0
- package/modules/drive/src/references/context-management.md +219 -0
- package/modules/drive/src/references/git-strategy.md +206 -0
- package/modules/drive/src/references/loop-phases.md +254 -0
- package/modules/drive/src/references/plan-format.md +263 -0
- package/modules/drive/src/references/quality-principles.md +152 -0
- package/modules/drive/src/references/research-quality-control.md +247 -0
- package/modules/drive/src/references/sonarqube-integration.md +244 -0
- package/modules/drive/src/references/specialized-workflow-integration.md +186 -0
- package/modules/drive/src/references/subagent-criteria.md +179 -0
- package/modules/drive/src/references/tdd.md +219 -0
- package/modules/drive/src/references/work-units.md +161 -0
- package/modules/drive/src/rules/commands.md +108 -0
- package/modules/drive/src/rules/references.md +107 -0
- package/modules/drive/src/rules/style.md +123 -0
- package/modules/drive/src/rules/templates.md +51 -0
- package/modules/drive/src/rules/workflows.md +133 -0
- package/modules/drive/src/templates/CONTEXT.md +88 -0
- package/modules/drive/src/templates/DEBUG.md +164 -0
- package/modules/drive/src/templates/DISCOVERY.md +148 -0
- package/modules/drive/src/templates/HANDOFF.md +77 -0
- package/modules/drive/src/templates/ISSUES.md +93 -0
- package/modules/drive/src/templates/MILESTONES.md +167 -0
- package/modules/drive/src/templates/PLAN.md +328 -0
- package/modules/drive/src/templates/PROJECT.md +219 -0
- package/modules/drive/src/templates/RESEARCH.md +130 -0
- package/modules/drive/src/templates/ROADMAP.md +328 -0
- package/modules/drive/src/templates/SPECIAL-FLOWS.md +70 -0
- package/modules/drive/src/templates/STATE.md +210 -0
- package/modules/drive/src/templates/SUMMARY.md +221 -0
- package/modules/drive/src/templates/UAT-ISSUES.md +139 -0
- package/modules/drive/src/templates/codebase/architecture.md +259 -0
- package/modules/drive/src/templates/codebase/concerns.md +329 -0
- package/modules/drive/src/templates/codebase/conventions.md +311 -0
- package/modules/drive/src/templates/codebase/integrations.md +284 -0
- package/modules/drive/src/templates/codebase/stack.md +190 -0
- package/modules/drive/src/templates/codebase/structure.md +287 -0
- package/modules/drive/src/templates/codebase/testing.md +484 -0
- package/modules/drive/src/templates/config.md +181 -0
- package/modules/drive/src/templates/milestone-archive.md +236 -0
- package/modules/drive/src/templates/milestone-context.md +190 -0
- package/modules/drive/src/templates/paul-json.md +147 -0
- package/modules/drive/src/vector-config/PAUL +26 -0
- package/modules/drive/src/vector-config/PAUL.manifest +11 -0
- package/modules/drive/src/workflows/apply-phase.md +393 -0
- package/modules/drive/src/workflows/audit-plan.md +344 -0
- package/modules/drive/src/workflows/complete-milestone.md +479 -0
- package/modules/drive/src/workflows/configure-special-flows.md +283 -0
- package/modules/drive/src/workflows/consider-issues.md +172 -0
- package/modules/drive/src/workflows/create-milestone.md +268 -0
- package/modules/drive/src/workflows/debug.md +292 -0
- package/modules/drive/src/workflows/discovery.md +187 -0
- package/modules/drive/src/workflows/discuss-milestone.md +245 -0
- package/modules/drive/src/workflows/discuss-phase.md +231 -0
- package/modules/drive/src/workflows/init-project.md +698 -0
- package/modules/drive/src/workflows/map-codebase.md +459 -0
- package/modules/drive/src/workflows/pause-work.md +259 -0
- package/modules/drive/src/workflows/phase-assumptions.md +181 -0
- package/modules/drive/src/workflows/plan-phase.md +385 -0
- package/modules/drive/src/workflows/quality-gate.md +263 -0
- package/modules/drive/src/workflows/register-manifest.md +107 -0
- package/modules/drive/src/workflows/research.md +241 -0
- package/modules/drive/src/workflows/resume-project.md +200 -0
- package/modules/drive/src/workflows/roadmap-management.md +334 -0
- package/modules/drive/src/workflows/transition-phase.md +368 -0
- package/modules/drive/src/workflows/unify-phase.md +290 -0
- package/modules/drive/src/workflows/verify-work.md +241 -0
- package/modules/forge/README.md +281 -0
- package/modules/forge/bin/install.js +200 -0
- package/modules/forge/package.json +32 -0
- package/modules/forge/skillsmith/rules/checklists-rules.md +42 -0
- package/modules/forge/skillsmith/rules/context-rules.md +43 -0
- package/modules/forge/skillsmith/rules/entry-point-rules.md +44 -0
- package/modules/forge/skillsmith/rules/frameworks-rules.md +43 -0
- package/modules/forge/skillsmith/rules/tasks-rules.md +52 -0
- package/modules/forge/skillsmith/rules/templates-rules.md +43 -0
- package/modules/forge/skillsmith/skillsmith.md +82 -0
- package/modules/forge/skillsmith/tasks/audit.md +277 -0
- package/modules/forge/skillsmith/tasks/discover.md +145 -0
- package/modules/forge/skillsmith/tasks/distill.md +276 -0
- package/modules/forge/skillsmith/tasks/scaffold.md +349 -0
- package/modules/forge/specs/checklists.md +193 -0
- package/modules/forge/specs/context.md +223 -0
- package/modules/forge/specs/entry-point.md +320 -0
- package/modules/forge/specs/frameworks.md +228 -0
- package/modules/forge/specs/rules.md +245 -0
- package/modules/forge/specs/tasks.md +344 -0
- package/modules/forge/specs/templates.md +335 -0
- package/modules/forge/terminal.svg +70 -0
- package/modules/ignition/README.md +245 -0
- package/modules/ignition/bin/install.js +184 -0
- package/modules/ignition/checklists/planning-quality.md +55 -0
- package/modules/ignition/data/application/config.md +21 -0
- package/modules/ignition/data/application/guide.md +51 -0
- package/modules/ignition/data/application/skill-loadout.md +11 -0
- package/modules/ignition/data/campaign/config.md +18 -0
- package/modules/ignition/data/campaign/guide.md +36 -0
- package/modules/ignition/data/campaign/skill-loadout.md +10 -0
- package/modules/ignition/data/client/config.md +18 -0
- package/modules/ignition/data/client/guide.md +36 -0
- package/modules/ignition/data/client/skill-loadout.md +11 -0
- package/modules/ignition/data/utility/config.md +18 -0
- package/modules/ignition/data/utility/guide.md +31 -0
- package/modules/ignition/data/utility/skill-loadout.md +8 -0
- package/modules/ignition/data/workflow/config.md +19 -0
- package/modules/ignition/data/workflow/guide.md +41 -0
- package/modules/ignition/data/workflow/skill-loadout.md +10 -0
- package/modules/ignition/integration.js +54 -0
- package/modules/ignition/package.json +35 -0
- package/modules/ignition/seed.md +81 -0
- package/modules/ignition/tasks/add-type.md +164 -0
- package/modules/ignition/tasks/graduate.md +182 -0
- package/modules/ignition/tasks/ideate.md +221 -0
- package/modules/ignition/tasks/launch.md +137 -0
- package/modules/ignition/tasks/status.md +71 -0
- package/modules/ignition/templates/planning-application.md +193 -0
- package/modules/ignition/templates/planning-campaign.md +138 -0
- package/modules/ignition/templates/planning-client.md +149 -0
- package/modules/ignition/templates/planning-utility.md +112 -0
- package/modules/ignition/templates/planning-workflow.md +125 -0
- package/modules/ignition/terminal.svg +74 -0
- package/modules/mission-control/CONTEXT-CONTINUITY-SPEC.md +293 -0
- package/modules/mission-control/CONTEXT-ENGINEERING-GUIDE.md +282 -0
- package/modules/mission-control/README.md +91 -0
- package/modules/mission-control/assets/terminal.svg +80 -0
- package/modules/mission-control/examples/entities.example.json +133 -0
- package/modules/mission-control/examples/projects.example.json +318 -0
- package/modules/mission-control/examples/state.example.json +183 -0
- package/modules/mission-control/examples/vector.example.json +245 -0
- package/modules/mission-control/mission-control/checklists/install-verification.md +46 -0
- package/modules/mission-control/mission-control/frameworks/framework-registry.md +83 -0
- package/modules/mission-control/mission-control/mission-control.md +83 -0
- package/modules/mission-control/mission-control/tasks/insights.md +73 -0
- package/modules/mission-control/mission-control/tasks/install.md +194 -0
- package/modules/mission-control/mission-control/tasks/status.md +125 -0
- package/modules/mission-control/schemas/entities.schema.json +89 -0
- package/modules/mission-control/schemas/projects.schema.json +221 -0
- package/modules/mission-control/schemas/state.schema.json +108 -0
- package/modules/mission-control/schemas/vector.schema.json +200 -0
- package/modules/momentum/README.md +678 -0
- package/modules/momentum/bin/install.js +563 -0
- package/modules/momentum/integration.js +131 -0
- package/modules/momentum/package.json +42 -0
- package/modules/momentum/schemas/entities.schema.json +89 -0
- package/modules/momentum/schemas/projects.schema.json +221 -0
- package/modules/momentum/schemas/state.schema.json +108 -0
- package/modules/momentum/src/commands/audit-claude-md.md +31 -0
- package/modules/momentum/src/commands/audit.md +33 -0
- package/modules/momentum/src/commands/groom.md +35 -0
- package/modules/momentum/src/commands/history.md +27 -0
- package/modules/momentum/src/commands/pulse.md +33 -0
- package/modules/momentum/src/commands/scaffold.md +33 -0
- package/modules/momentum/src/commands/status.md +28 -0
- package/modules/momentum/src/commands/surface-convert.md +35 -0
- package/modules/momentum/src/commands/surface-create.md +34 -0
- package/modules/momentum/src/commands/surface-list.md +27 -0
- package/modules/momentum/src/commands/vector-hygiene.md +33 -0
- package/modules/momentum/src/framework/context/momentum-principles.md +71 -0
- package/modules/momentum/src/framework/frameworks/audit-strategies.md +53 -0
- package/modules/momentum/src/framework/frameworks/satellite-registration.md +44 -0
- package/modules/momentum/src/framework/tasks/audit-claude-md.md +68 -0
- package/modules/momentum/src/framework/tasks/audit.md +64 -0
- package/modules/momentum/src/framework/tasks/groom.md +164 -0
- package/modules/momentum/src/framework/tasks/history.md +34 -0
- package/modules/momentum/src/framework/tasks/pulse.md +83 -0
- package/modules/momentum/src/framework/tasks/scaffold.md +202 -0
- package/modules/momentum/src/framework/tasks/status.md +35 -0
- package/modules/momentum/src/framework/tasks/surface-convert.md +143 -0
- package/modules/momentum/src/framework/tasks/surface-create.md +184 -0
- package/modules/momentum/src/framework/tasks/surface-list.md +42 -0
- package/modules/momentum/src/framework/tasks/vector-hygiene.md +160 -0
- package/modules/momentum/src/framework/templates/workspace-json.md +96 -0
- package/modules/momentum/src/hooks/_template.py +129 -0
- package/modules/momentum/src/hooks/active-hook.py +178 -0
- package/modules/momentum/src/hooks/backlog-hook.py +115 -0
- package/modules/momentum/src/hooks/mission-control-insights.py +169 -0
- package/modules/momentum/src/hooks/momentum-pulse-check.py +351 -0
- package/modules/momentum/src/hooks/operator.py +53 -0
- package/modules/momentum/src/hooks/psmm-injector.py +67 -0
- package/modules/momentum/src/hooks/satellite-detection.py +248 -0
- package/modules/momentum/src/packages/momentum-mcp/index.js +119 -0
- package/modules/momentum/src/packages/momentum-mcp/package.json +10 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/entities.js +226 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/operator.js +106 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/projects.js +322 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/psmm.js +206 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/state.js +199 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/surfaces.js +404 -0
- package/modules/momentum/src/skill/momentum.md +111 -0
- package/modules/momentum/src/tasks/groom.md +164 -0
- package/modules/momentum/src/templates/operator.json +66 -0
- package/modules/momentum/src/templates/workspace.json +111 -0
- package/modules/momentum/terminal.svg +77 -0
- package/modules/radar/README.md +1552 -0
- package/modules/radar/commands/audit.md +233 -0
- package/modules/radar/commands/guardrails.md +194 -0
- package/modules/radar/commands/init.md +207 -0
- package/modules/radar/commands/playbook.md +176 -0
- package/modules/radar/commands/remediate.md +156 -0
- package/modules/radar/commands/report.md +172 -0
- package/modules/radar/commands/resume.md +176 -0
- package/modules/radar/commands/status.md +148 -0
- package/modules/radar/commands/transform.md +205 -0
- package/modules/radar/commands/validate.md +177 -0
- package/modules/radar/docs/ARCHITECTURE.md +336 -0
- package/modules/radar/docs/GETTING-STARTED.md +287 -0
- package/modules/radar/docs/standards/agents.md +197 -0
- package/modules/radar/docs/standards/commands.md +250 -0
- package/modules/radar/docs/standards/domains.md +191 -0
- package/modules/radar/docs/standards/personas.md +211 -0
- package/modules/radar/docs/standards/rules.md +218 -0
- package/modules/radar/docs/standards/runtime.md +445 -0
- package/modules/radar/docs/standards/schemas.md +269 -0
- package/modules/radar/docs/standards/tools.md +273 -0
- package/modules/radar/docs/standards/workflows.md +254 -0
- package/modules/radar/docs/terminal.svg +72 -0
- package/modules/radar/docs/validation/convention-compliance-report.md +183 -0
- package/modules/radar/docs/validation/cross-reference-report.md +195 -0
- package/modules/radar/docs/validation/validation-summary.md +118 -0
- package/modules/radar/docs/validation/version-manifest.yaml +363 -0
- package/modules/radar/install.sh +711 -0
- package/modules/radar/integration.js +53 -0
- package/modules/radar/src/core/agents/architect.md +25 -0
- package/modules/radar/src/core/agents/compliance-officer.md +25 -0
- package/modules/radar/src/core/agents/data-engineer.md +25 -0
- package/modules/radar/src/core/agents/devils-advocate.md +22 -0
- package/modules/radar/src/core/agents/performance-engineer.md +25 -0
- package/modules/radar/src/core/agents/principal-engineer.md +23 -0
- package/modules/radar/src/core/agents/reality-gap-analyst.md +22 -0
- package/modules/radar/src/core/agents/security-engineer.md +25 -0
- package/modules/radar/src/core/agents/senior-app-engineer.md +25 -0
- package/modules/radar/src/core/agents/sre.md +25 -0
- package/modules/radar/src/core/agents/staff-engineer.md +23 -0
- package/modules/radar/src/core/agents/test-engineer.md +25 -0
- package/modules/radar/src/core/personas/architect.md +111 -0
- package/modules/radar/src/core/personas/compliance-officer.md +104 -0
- package/modules/radar/src/core/personas/data-engineer.md +113 -0
- package/modules/radar/src/core/personas/devils-advocate.md +105 -0
- package/modules/radar/src/core/personas/performance-engineer.md +119 -0
- package/modules/radar/src/core/personas/principal-engineer.md +119 -0
- package/modules/radar/src/core/personas/reality-gap-analyst.md +111 -0
- package/modules/radar/src/core/personas/security-engineer.md +108 -0
- package/modules/radar/src/core/personas/senior-app-engineer.md +111 -0
- package/modules/radar/src/core/personas/sre.md +117 -0
- package/modules/radar/src/core/personas/staff-engineer.md +109 -0
- package/modules/radar/src/core/personas/test-engineer.md +109 -0
- package/modules/radar/src/core/workflows/disagreement-resolution.md +183 -0
- package/modules/radar/src/core/workflows/phase-0-context.md +148 -0
- package/modules/radar/src/core/workflows/phase-1-reconnaissance.md +169 -0
- package/modules/radar/src/core/workflows/phase-2-domain-audits.md +190 -0
- package/modules/radar/src/core/workflows/phase-3-cross-domain.md +177 -0
- package/modules/radar/src/core/workflows/phase-4-adversarial-review.md +165 -0
- package/modules/radar/src/core/workflows/phase-5-report.md +189 -0
- package/modules/radar/src/core/workflows/phase-checkpoint.md +222 -0
- package/modules/radar/src/core/workflows/session-handoff.md +152 -0
- package/modules/radar/src/domains/00-context.md +201 -0
- package/modules/radar/src/domains/01-architecture.md +248 -0
- package/modules/radar/src/domains/02-data.md +224 -0
- package/modules/radar/src/domains/03-correctness.md +230 -0
- package/modules/radar/src/domains/04-security.md +274 -0
- package/modules/radar/src/domains/05-compliance.md +228 -0
- package/modules/radar/src/domains/06-testing.md +228 -0
- package/modules/radar/src/domains/07-reliability.md +246 -0
- package/modules/radar/src/domains/08-performance.md +247 -0
- package/modules/radar/src/domains/09-maintainability.md +271 -0
- package/modules/radar/src/domains/10-operability.md +250 -0
- package/modules/radar/src/domains/11-change-risk.md +246 -0
- package/modules/radar/src/domains/12-team-risk.md +221 -0
- package/modules/radar/src/domains/13-risk-synthesis.md +202 -0
- package/modules/radar/src/rules/agent-boundaries.md +78 -0
- package/modules/radar/src/rules/disagreement-protocol.md +76 -0
- package/modules/radar/src/rules/epistemic-hygiene.md +78 -0
- package/modules/radar/src/schemas/confidence.md +185 -0
- package/modules/radar/src/schemas/disagreement.md +238 -0
- package/modules/radar/src/schemas/finding.md +287 -0
- package/modules/radar/src/schemas/report-section.md +150 -0
- package/modules/radar/src/schemas/signal.md +108 -0
- package/modules/radar/src/tools/checkov.md +463 -0
- package/modules/radar/src/tools/git-history.md +581 -0
- package/modules/radar/src/tools/gitleaks.md +447 -0
- package/modules/radar/src/tools/grype.md +611 -0
- package/modules/radar/src/tools/semgrep.md +378 -0
- package/modules/radar/src/tools/sonarqube.md +550 -0
- package/modules/radar/src/tools/syft.md +539 -0
- package/modules/radar/src/tools/trivy.md +439 -0
- package/modules/radar/src/transform/agents/change-risk-modeler.md +24 -0
- package/modules/radar/src/transform/agents/execution-validator.md +24 -0
- package/modules/radar/src/transform/agents/guardrail-generator.md +24 -0
- package/modules/radar/src/transform/agents/pedagogy-agent.md +24 -0
- package/modules/radar/src/transform/agents/remediation-architect.md +24 -0
- package/modules/radar/src/transform/personas/change-risk-modeler.md +95 -0
- package/modules/radar/src/transform/personas/execution-validator.md +95 -0
- package/modules/radar/src/transform/personas/guardrail-generator.md +103 -0
- package/modules/radar/src/transform/personas/pedagogy-agent.md +105 -0
- package/modules/radar/src/transform/personas/remediation-architect.md +95 -0
- package/modules/radar/src/transform/rules/change-risk-rules.md +87 -0
- package/modules/radar/src/transform/rules/safety-governance.md +87 -0
- package/modules/radar/src/transform/schemas/change-risk.md +139 -0
- package/modules/radar/src/transform/schemas/intervention-level.md +207 -0
- package/modules/radar/src/transform/schemas/playbook.md +205 -0
- package/modules/radar/src/transform/schemas/verification-plan.md +134 -0
- package/modules/radar/src/transform/workflows/phase-6-remediation.md +148 -0
- package/modules/radar/src/transform/workflows/phase-7-risk-validation.md +161 -0
- package/modules/radar/src/transform/workflows/phase-8-execution-planning.md +159 -0
- package/modules/radar/src/transform/workflows/transform-safety.md +158 -0
- package/modules/vector/.vector-template/sessions/.gitkeep +0 -0
- package/modules/vector/.vector-template/vector.json +72 -0
- package/modules/vector/AUDIT-CLAUDEMD.md +154 -0
- package/modules/vector/INSTALL.md +185 -0
- package/modules/vector/LICENSE +21 -0
- package/modules/vector/README.md +409 -0
- package/modules/vector/VECTOR-BLOCK.md +57 -0
- package/modules/vector/assets/terminal.svg +68 -0
- package/modules/vector/bin/install.js +455 -0
- package/modules/vector/bin/migrate-v1-to-v2.sh +492 -0
- package/modules/vector/commands/help.md +46 -0
- package/modules/vector/hooks/vector-hook.py +775 -0
- package/modules/vector/mcp/index.js +118 -0
- package/modules/vector/mcp/package.json +10 -0
- package/modules/vector/mcp/tools/decisions.js +269 -0
- package/modules/vector/mcp/tools/domains.js +361 -0
- package/modules/vector/mcp/tools/staging.js +252 -0
- package/modules/vector/mcp/tools/vector-json.js +647 -0
- package/modules/vector/package.json +38 -0
- package/modules/vector/schemas/vector.schema.json +237 -0
- package/package.json +39 -0
- package/shared/branding/branding.js +70 -0
- package/shared/config/defaults.json +59 -0
- package/shared/events/README.md +175 -0
- package/shared/events/event-bus.js +134 -0
- package/shared/events/event_bus.py +255 -0
- package/shared/events/integrations.js +161 -0
- package/shared/events/schemas/audit-complete.schema.json +21 -0
- package/shared/events/schemas/phase-progress.schema.json +23 -0
- package/shared/events/schemas/plan-created.schema.json +21 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Graduate a completed ideation from projects/{name}/ into apps/{name}/ with its own git repo, type-aware README, and workspace tracking updates.
|
|
3
|
+
</purpose>
|
|
4
|
+
|
|
5
|
+
<user-story>
|
|
6
|
+
As a builder with a completed PLANNING.md, I want to graduate my project into a proper app directory with git and a synthesized README, so that I can start building without manual setup.
|
|
7
|
+
</user-story>
|
|
8
|
+
|
|
9
|
+
<when-to-use>
|
|
10
|
+
- Ideation is complete and PLANNING.md exists in projects/{name}/
|
|
11
|
+
- Ready to move from planning to building
|
|
12
|
+
- Want a clean app directory with git repo and project brief
|
|
13
|
+
</when-to-use>
|
|
14
|
+
|
|
15
|
+
<context>
|
|
16
|
+
@ignition.md
|
|
17
|
+
@checklists/planning-quality.md (quality gate — loaded before graduation)
|
|
18
|
+
</context>
|
|
19
|
+
|
|
20
|
+
<steps>
|
|
21
|
+
|
|
22
|
+
<step name="validate_input" priority="first">
|
|
23
|
+
## Validate Project
|
|
24
|
+
|
|
25
|
+
Check `$ARGUMENTS` for a project name.
|
|
26
|
+
|
|
27
|
+
**If no argument provided:**
|
|
28
|
+
Scan `projects/` for directories containing PLANNING.md. List them:
|
|
29
|
+
|
|
30
|
+
> "Available projects ready for graduation:"
|
|
31
|
+
> - {name} ({type from PLANNING.md})
|
|
32
|
+
> - {name} ({type})
|
|
33
|
+
>
|
|
34
|
+
> "Which one? Or provide a name."
|
|
35
|
+
|
|
36
|
+
Wait for response.
|
|
37
|
+
|
|
38
|
+
**If argument provided:**
|
|
39
|
+
1. Confirm `projects/{name}/PLANNING.md` exists — if not: "No PLANNING.md found at `projects/{name}/`. Run `/ignition` to create one first."
|
|
40
|
+
2. Confirm `apps/{name}/` does NOT exist — if it does: "`apps/{name}/` already exists. This project was already graduated."
|
|
41
|
+
3. If either check fails, stop.
|
|
42
|
+
</step>
|
|
43
|
+
|
|
44
|
+
<step name="quality_check">
|
|
45
|
+
## Quality Gate
|
|
46
|
+
|
|
47
|
+
Read `projects/{name}/PLANNING.md` and extract:
|
|
48
|
+
- **Type** metadata field (application, workflow, client, utility, campaign)
|
|
49
|
+
- Overall content depth
|
|
50
|
+
|
|
51
|
+
Reference `checklists/planning-quality.md` to assess whether the PLANNING.md is rich enough for a clean graduation and potential headless Drive init.
|
|
52
|
+
|
|
53
|
+
<if condition="Type metadata is missing">
|
|
54
|
+
Infer type from content, or ask: "I can't find a Type field in this PLANNING.md. What type of project is this? (application, workflow, client, utility, campaign)"
|
|
55
|
+
|
|
56
|
+
Wait for response.
|
|
57
|
+
</if>
|
|
58
|
+
|
|
59
|
+
<if condition="PLANNING.md appears too thin">
|
|
60
|
+
Warn the user:
|
|
61
|
+
|
|
62
|
+
> "This PLANNING.md looks light — it may not have enough detail for a strong README or future Drive init. Want to go back to `/ignition` to flesh it out, or graduate as-is?"
|
|
63
|
+
|
|
64
|
+
Wait for response. If user wants to proceed, continue. If not, exit with suggestion to run `/ignition`.
|
|
65
|
+
</if>
|
|
66
|
+
</step>
|
|
67
|
+
|
|
68
|
+
<step name="create_app_directory">
|
|
69
|
+
## Create App Directory
|
|
70
|
+
|
|
71
|
+
1. Create the app directory:
|
|
72
|
+
```bash
|
|
73
|
+
mkdir -p apps/{name}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
2. Initialize git repo:
|
|
77
|
+
```bash
|
|
78
|
+
cd apps/{name}
|
|
79
|
+
git init -b main
|
|
80
|
+
```
|
|
81
|
+
</step>
|
|
82
|
+
|
|
83
|
+
<step name="synthesize_readme">
|
|
84
|
+
## Synthesize README
|
|
85
|
+
|
|
86
|
+
Read `projects/{name}/PLANNING.md` fully. Generate `apps/{name}/README.md` by **synthesizing** (not copying) a clean project brief.
|
|
87
|
+
|
|
88
|
+
**Common sections (all types):**
|
|
89
|
+
- Title and one-line description
|
|
90
|
+
- Type, Skill Loadout, Quality Gates metadata
|
|
91
|
+
- Overview — concise summary of what and why
|
|
92
|
+
- Design Decisions — resolved decisions (numbered)
|
|
93
|
+
- Implementation Phases — phase breakdown (or "N/A" for small projects)
|
|
94
|
+
- Open Questions — unresolved items
|
|
95
|
+
- References
|
|
96
|
+
|
|
97
|
+
**Type-specific sections to add:**
|
|
98
|
+
|
|
99
|
+
| Type | Additional Sections |
|
|
100
|
+
|------|-------------------|
|
|
101
|
+
| Application | Stack, Deploy, Data Model, API Surface, Architecture, UI/UX |
|
|
102
|
+
| Workflow | Scope Definition, Integration Map, Interaction Design, Output Artifacts |
|
|
103
|
+
| Client | Client name, Business Context, Conversion Strategy, Timeline, Tech Approach |
|
|
104
|
+
| Utility | Location, Interface (invocation/input/output), Done Criteria |
|
|
105
|
+
| Campaign | Goal, Deliverables List, Timeline, Success Metrics |
|
|
106
|
+
|
|
107
|
+
**Synthesis guidelines:**
|
|
108
|
+
- Remove brainstorming artifacts, iteration history, abandoned ideas
|
|
109
|
+
- Keep all resolved design decisions
|
|
110
|
+
- Keep technical architecture details
|
|
111
|
+
- Keep implementation phases
|
|
112
|
+
- Preserve tables and structured data (information-dense)
|
|
113
|
+
- Preserve Type and Skill Loadout metadata — Drive uses this for configuration
|
|
114
|
+
- The README should be comprehensive enough to run `/drive:init` against
|
|
115
|
+
|
|
116
|
+
Present the generated README to the user:
|
|
117
|
+
|
|
118
|
+
> "Here's the README I synthesized from your PLANNING.md. Take a look — anything to adjust?"
|
|
119
|
+
|
|
120
|
+
Wait for response.
|
|
121
|
+
|
|
122
|
+
<if condition="user requests changes">
|
|
123
|
+
Apply edits and re-present until approved.
|
|
124
|
+
</if>
|
|
125
|
+
</step>
|
|
126
|
+
|
|
127
|
+
<step name="finalize">
|
|
128
|
+
## Finalize Graduation
|
|
129
|
+
|
|
130
|
+
1. **Write README.md** to `apps/{name}/README.md`
|
|
131
|
+
|
|
132
|
+
2. **Initial commit:**
|
|
133
|
+
```bash
|
|
134
|
+
cd apps/{name}
|
|
135
|
+
git add README.md
|
|
136
|
+
git commit -m "Initial commit: project brief from graduation"
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
3. **Update ACTIVE.md** — find the project entry and update:
|
|
140
|
+
- Location: `apps/{name}/`
|
|
141
|
+
- Status: `Graduated — ready for /drive:init`
|
|
142
|
+
- If no entry exists, ask user which section to add it under
|
|
143
|
+
|
|
144
|
+
4. **Note graduation in PLANNING.md** — append to `projects/{name}/PLANNING.md`:
|
|
145
|
+
```
|
|
146
|
+
---
|
|
147
|
+
**Graduated:** {today's date}
|
|
148
|
+
**Location:** `apps/{name}/`
|
|
149
|
+
**README:** `apps/{name}/README.md`
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
5. **Report:**
|
|
153
|
+
```
|
|
154
|
+
Graduated: projects/{name}/ → apps/{name}/
|
|
155
|
+
README: apps/{name}/README.md
|
|
156
|
+
Git: Initialized with initial commit
|
|
157
|
+
|
|
158
|
+
Next steps:
|
|
159
|
+
- `/drive:init` in apps/{name}/ to start a managed build
|
|
160
|
+
- `/ignition launch {name}` does this automatically (graduate + Drive init)
|
|
161
|
+
```
|
|
162
|
+
</step>
|
|
163
|
+
|
|
164
|
+
</steps>
|
|
165
|
+
|
|
166
|
+
<output>
|
|
167
|
+
- `apps/{name}/` — new app directory with git repo
|
|
168
|
+
- `apps/{name}/README.md` — type-aware synthesized project brief
|
|
169
|
+
- Updated `ACTIVE.md` entry
|
|
170
|
+
- Graduation note appended to `projects/{name}/PLANNING.md`
|
|
171
|
+
</output>
|
|
172
|
+
|
|
173
|
+
<acceptance-criteria>
|
|
174
|
+
- [ ] Input validated: PLANNING.md exists, apps/ doesn't
|
|
175
|
+
- [ ] Quality gate checked before graduation
|
|
176
|
+
- [ ] Type extracted from PLANNING.md metadata
|
|
177
|
+
- [ ] README synthesized with type-specific sections (not copied verbatim)
|
|
178
|
+
- [ ] Git repo initialized with initial commit
|
|
179
|
+
- [ ] ACTIVE.md updated with graduated location
|
|
180
|
+
- [ ] Graduation date noted in original PLANNING.md
|
|
181
|
+
- [ ] Wait points present at key decisions (quality warning, README review)
|
|
182
|
+
</acceptance-criteria>
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Guide a user through type-aware collaborative ideation, producing a populated PLANNING.md document ready for graduation or Drive-managed build.
|
|
3
|
+
</purpose>
|
|
4
|
+
|
|
5
|
+
<user-story>
|
|
6
|
+
As a builder with a raw idea, I want guided exploration shaped by my project type, so that I produce a structured PLANNING.md without missing critical design decisions.
|
|
7
|
+
</user-story>
|
|
8
|
+
|
|
9
|
+
<when-to-use>
|
|
10
|
+
- Starting a new project and need to shape the idea before building
|
|
11
|
+
- Have a vague concept that needs structure and scoping
|
|
12
|
+
- Want type-specific guidance (app vs utility vs campaign needs different depth)
|
|
13
|
+
- Ready to produce a PLANNING.md for `/ignition graduate` or `/ignition launch`
|
|
14
|
+
</when-to-use>
|
|
15
|
+
|
|
16
|
+
<context>
|
|
17
|
+
@ignition.md
|
|
18
|
+
@data/{type}/guide.md (loaded after type selection)
|
|
19
|
+
@data/{type}/config.md (loaded after type selection)
|
|
20
|
+
@data/{type}/skill-loadout.md (loaded during skill loadout step)
|
|
21
|
+
@templates/planning-{type}.md (loaded during output generation)
|
|
22
|
+
@checklists/planning-quality.md (referenced as quality gate before output)
|
|
23
|
+
</context>
|
|
24
|
+
|
|
25
|
+
<steps>
|
|
26
|
+
|
|
27
|
+
<step name="determine_type" priority="first">
|
|
28
|
+
## Determine Project Type
|
|
29
|
+
|
|
30
|
+
Check `$ARGUMENTS` for a type match:
|
|
31
|
+
|
|
32
|
+
| Input | Type |
|
|
33
|
+
|-------|------|
|
|
34
|
+
| `application`, `app` | application |
|
|
35
|
+
| `workflow` | workflow |
|
|
36
|
+
| `client` | client |
|
|
37
|
+
| `utility`, `tool` | utility |
|
|
38
|
+
| `campaign`, `content` | campaign |
|
|
39
|
+
|
|
40
|
+
**If match found:** Confirm with user — "Sounds like an **{type}** project. That right?"
|
|
41
|
+
|
|
42
|
+
**If no match or empty:** Ask the user to describe what they're building in a sentence or two. Then suggest the best-fit type with reasoning:
|
|
43
|
+
|
|
44
|
+
> "Based on what you described, this sounds like a **{type}** project — {one-line reason}. Does that fit?"
|
|
45
|
+
|
|
46
|
+
Use these signals to route:
|
|
47
|
+
|
|
48
|
+
| Type | Signals |
|
|
49
|
+
|------|---------|
|
|
50
|
+
| Application | Has UI, data model, API, deployment — software people use |
|
|
51
|
+
| Workflow | Commands, hooks, Vector domains, templates — Claude Code tooling |
|
|
52
|
+
| Client | Website for a client — business context, conversion, content |
|
|
53
|
+
| Utility | Small tool, script, single-purpose — resists expansion |
|
|
54
|
+
| Campaign | Content, marketing, launches — timeline-driven, not code-driven |
|
|
55
|
+
|
|
56
|
+
Wait for response before proceeding.
|
|
57
|
+
</step>
|
|
58
|
+
|
|
59
|
+
<step name="get_project_name">
|
|
60
|
+
## Get Project Name
|
|
61
|
+
|
|
62
|
+
Ask for a project name — lowercase, hyphenated. This becomes the directory name under `projects/`.
|
|
63
|
+
|
|
64
|
+
Check if `projects/{name}/` already exists:
|
|
65
|
+
- **If exists:** "There's already a `projects/{name}/` directory. Want to continue that existing ideation, or pick a different name?"
|
|
66
|
+
- **If new:** Create `projects/{name}/` directory.
|
|
67
|
+
|
|
68
|
+
Wait for response.
|
|
69
|
+
</step>
|
|
70
|
+
|
|
71
|
+
<step name="load_type_context">
|
|
72
|
+
## Load Type Context
|
|
73
|
+
|
|
74
|
+
Read the composable data files for the selected type:
|
|
75
|
+
|
|
76
|
+
1. Read `data/{type}/guide.md` — conversation sections for this type
|
|
77
|
+
2. Read `data/{type}/config.md` — rigor level, demeanor, required vs optional sections
|
|
78
|
+
|
|
79
|
+
**Adopt the coach persona for the rest of this session:**
|
|
80
|
+
|
|
81
|
+
You are a project coach. Brainstorm alongside the user — offer concrete suggestions when they're stuck, push toward decisions when it's time, let ideas breathe when they need space. You are NOT an interrogator firing questions. You're a thinking partner who happens to know the ecosystem.
|
|
82
|
+
|
|
83
|
+
Adapt your approach based on config.md:
|
|
84
|
+
- **Tight rigor** (utilities): Move fast, resist scope creep, keep it small
|
|
85
|
+
- **Standard rigor** (workflows, clients): Balanced exploration, clear boundaries
|
|
86
|
+
- **Deep rigor** (applications): Thorough exploration, architecture matters
|
|
87
|
+
- **Creative rigor** (campaigns): Loose, generative, timeline-focused
|
|
88
|
+
</step>
|
|
89
|
+
|
|
90
|
+
<step name="guided_conversation">
|
|
91
|
+
## Guided Exploration
|
|
92
|
+
|
|
93
|
+
Work through the sections defined in `data/{type}/guide.md`. These are conversation prompts, not a questionnaire.
|
|
94
|
+
|
|
95
|
+
**Rules of engagement:**
|
|
96
|
+
- Present 1-2 related sections at a time, not all at once
|
|
97
|
+
- Adapt based on discussion flow — skip sections the user has already addressed naturally
|
|
98
|
+
- Circle back to sections that need more depth
|
|
99
|
+
- Offer concrete suggestions: "For this type of app, most teams use X because..." or "Given your audience, you might consider Y"
|
|
100
|
+
- If the user is stuck, propose a direction: "Here's one way this could work: ..."
|
|
101
|
+
- If the user is going too broad, gently constrain: "That's ambitious — what's the minimum slice that proves the concept?"
|
|
102
|
+
|
|
103
|
+
**Section groups (from guide.md):**
|
|
104
|
+
|
|
105
|
+
Work through the guide sections in logical groups. After presenting each group and discussing:
|
|
106
|
+
|
|
107
|
+
Wait for response.
|
|
108
|
+
|
|
109
|
+
Continue until all required sections (per config.md) are covered, or the user signals they're ready to wrap up.
|
|
110
|
+
|
|
111
|
+
<if condition="user signals readiness before all sections covered">
|
|
112
|
+
Check config.md for required vs optional sections. If required sections are missing, note them: "We haven't covered {section} yet — that's usually important for {type} projects. Want to hit that quickly, or skip it?"
|
|
113
|
+
</if>
|
|
114
|
+
</step>
|
|
115
|
+
|
|
116
|
+
<step name="skill_loadout">
|
|
117
|
+
## Skill Loadout
|
|
118
|
+
|
|
119
|
+
Read `data/{type}/skill-loadout.md` for recommended ecosystem tools.
|
|
120
|
+
|
|
121
|
+
Present the recommended skills for this project type:
|
|
122
|
+
|
|
123
|
+
> "For a **{type}** project, these tools from the ecosystem are worth considering:"
|
|
124
|
+
> - {skill 1} — {why}
|
|
125
|
+
> - {skill 2} — {why}
|
|
126
|
+
|
|
127
|
+
Ask if any resonate or if they want to note specific tools for the build phase.
|
|
128
|
+
|
|
129
|
+
Wait for response.
|
|
130
|
+
</step>
|
|
131
|
+
|
|
132
|
+
<step name="generate_planning">
|
|
133
|
+
## Generate PLANNING.md
|
|
134
|
+
|
|
135
|
+
When the user is ready (all sections covered or user signals completion):
|
|
136
|
+
|
|
137
|
+
1. Read `templates/planning-{type}.md` for output structure
|
|
138
|
+
2. Reference `checklists/planning-quality.md` — verify the content is rich enough for headless Drive init
|
|
139
|
+
3. Populate the template with content from the conversation
|
|
140
|
+
4. Write to `projects/{name}/PLANNING.md`
|
|
141
|
+
5. Fill in the metadata block (Type, Skill Loadout, Quality Gates)
|
|
142
|
+
|
|
143
|
+
Present the completed PLANNING.md to the user for review.
|
|
144
|
+
|
|
145
|
+
> "Here's the PLANNING.md I've drafted from our conversation. Take a look — anything to adjust before we lock it in?"
|
|
146
|
+
|
|
147
|
+
Wait for response.
|
|
148
|
+
|
|
149
|
+
<if condition="user requests changes">
|
|
150
|
+
Apply edits and re-present. Repeat until user approves.
|
|
151
|
+
</if>
|
|
152
|
+
</step>
|
|
153
|
+
|
|
154
|
+
<step name="update_tracking">
|
|
155
|
+
## Update Tracking & Report
|
|
156
|
+
|
|
157
|
+
After user approves the PLANNING.md:
|
|
158
|
+
|
|
159
|
+
1. Update `.accel/momentum/ACTIVE.md` (if Momentum is present) with a new entry:
|
|
160
|
+
```
|
|
161
|
+
### {Project Name}
|
|
162
|
+
- **Location:** `projects/{name}/`
|
|
163
|
+
- **Type:** {type}
|
|
164
|
+
- **Status:** Ideation complete — ready for `/ignition graduate`
|
|
165
|
+
- **Next:** `/ignition graduate {name}` or `/ignition launch {name}`
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
2. **Emit a `plan-created` event** so other modules (Drive, Momentum) can react:
|
|
169
|
+
Write a JSON file to `~/.accel/events/` with this structure:
|
|
170
|
+
```json
|
|
171
|
+
{
|
|
172
|
+
"_producer": "ignition",
|
|
173
|
+
"source": "ignition",
|
|
174
|
+
"type": "plan-created",
|
|
175
|
+
"payload": {
|
|
176
|
+
"path": "projects/{name}/PLANNING.md",
|
|
177
|
+
"projectType": "{type}",
|
|
178
|
+
"title": "{Project Name}"
|
|
179
|
+
},
|
|
180
|
+
"timestamp": "<ISO 8601>"
|
|
181
|
+
}
|
|
182
|
+
```
|
|
183
|
+
Filename format: `{timestamp}-{seq}-ignition-plan-created.json`
|
|
184
|
+
|
|
185
|
+
If Python is available, use the shared event bus:
|
|
186
|
+
```python
|
|
187
|
+
import sys; sys.path.insert(0, '<workspace>/.accel/../shared/events')
|
|
188
|
+
from event_bus import emit_plan_created
|
|
189
|
+
emit_plan_created('projects/{name}/PLANNING.md', '{type}', '{Project Name}')
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
3. Report completion:
|
|
193
|
+
```
|
|
194
|
+
Created: projects/{name}/PLANNING.md ({type} template)
|
|
195
|
+
Updated: ACTIVE.md
|
|
196
|
+
Emitted: plan-created event to ~/.accel/events/
|
|
197
|
+
|
|
198
|
+
Next steps:
|
|
199
|
+
- `/ignition graduate {name}` — move to apps/ with git init
|
|
200
|
+
- `/ignition launch {name}` — graduate + initialize Drive for managed build
|
|
201
|
+
```
|
|
202
|
+
</step>
|
|
203
|
+
|
|
204
|
+
</steps>
|
|
205
|
+
|
|
206
|
+
<output>
|
|
207
|
+
- `projects/{name}/PLANNING.md` — populated type-specific planning document
|
|
208
|
+
- `ACTIVE.md` entry (if Momentum present)
|
|
209
|
+
- Location: `projects/{name}/`
|
|
210
|
+
</output>
|
|
211
|
+
|
|
212
|
+
<acceptance-criteria>
|
|
213
|
+
- [ ] Type determined before any substantive ideation begins
|
|
214
|
+
- [ ] Type-specific data files loaded and used to shape conversation
|
|
215
|
+
- [ ] Conversation is collaborative (coach), not interrogative (questionnaire)
|
|
216
|
+
- [ ] Wait points present at every user input boundary
|
|
217
|
+
- [ ] Existing project detection prevents silent overwrites
|
|
218
|
+
- [ ] PLANNING.md generated from type-specific template
|
|
219
|
+
- [ ] Planning quality checklist referenced before output
|
|
220
|
+
- [ ] ACTIVE.md updated with new project entry
|
|
221
|
+
</acceptance-criteria>
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Graduate a project and initialize Drive in one step — the "easy button" from ideation to managed build.
|
|
3
|
+
</purpose>
|
|
4
|
+
|
|
5
|
+
<user-story>
|
|
6
|
+
As a builder ready to start building, I want to graduate my project and set up Drive in a single command, so that I don't have to run separate graduation and initialization steps.
|
|
7
|
+
</user-story>
|
|
8
|
+
|
|
9
|
+
<when-to-use>
|
|
10
|
+
- Ideation is complete and you want to start building immediately
|
|
11
|
+
- You want Drive-managed development (structured phases, plans, progress tracking)
|
|
12
|
+
- You prefer one command over running `/ignition graduate` then `/drive:init` separately
|
|
13
|
+
</when-to-use>
|
|
14
|
+
|
|
15
|
+
<context>
|
|
16
|
+
@ignition.md
|
|
17
|
+
@tasks/graduate.md (delegation target — launch wraps this flow)
|
|
18
|
+
</context>
|
|
19
|
+
|
|
20
|
+
<steps>
|
|
21
|
+
|
|
22
|
+
<step name="run_graduation" priority="first">
|
|
23
|
+
## Run Graduation
|
|
24
|
+
|
|
25
|
+
Execute the full graduation flow from `tasks/graduate.md` first.
|
|
26
|
+
|
|
27
|
+
All validation, quality checks, README synthesis, git init, and tracking updates happen there. Do NOT duplicate that logic here — delegate entirely.
|
|
28
|
+
|
|
29
|
+
Pass `$ARGUMENTS` through as the project name.
|
|
30
|
+
|
|
31
|
+
After graduation completes successfully, proceed to Drive integration below.
|
|
32
|
+
|
|
33
|
+
<if condition="graduation fails or user exits during graduate flow">
|
|
34
|
+
Stop here. Do not proceed to Drive integration. The graduate task handles its own error reporting.
|
|
35
|
+
</if>
|
|
36
|
+
</step>
|
|
37
|
+
|
|
38
|
+
<step name="offer_paul">
|
|
39
|
+
## Offer Drive Integration
|
|
40
|
+
|
|
41
|
+
After graduation is complete, ask the user:
|
|
42
|
+
|
|
43
|
+
> "Project graduated to `apps/{name}/`. Want to initialize Drive for a managed build?"
|
|
44
|
+
>
|
|
45
|
+
> Drive gives you structured milestones, phases, plans, and progress tracking. Your PLANNING.md has enough detail to set up Drive without re-answering questions.
|
|
46
|
+
>
|
|
47
|
+
> **Yes** — initialize Drive now
|
|
48
|
+
> **No** — just the graduation is fine (you can run `/drive:init` later)
|
|
49
|
+
|
|
50
|
+
Wait for response.
|
|
51
|
+
|
|
52
|
+
<if condition="user declines">
|
|
53
|
+
Report graduation-only result:
|
|
54
|
+
|
|
55
|
+
> "Graduated: `apps/{name}/`"
|
|
56
|
+
> "Run `/drive:init` in `apps/{name}/` if you change your mind."
|
|
57
|
+
|
|
58
|
+
Exit.
|
|
59
|
+
</if>
|
|
60
|
+
</step>
|
|
61
|
+
|
|
62
|
+
<step name="check_paul_availability">
|
|
63
|
+
## Check Drive Availability
|
|
64
|
+
|
|
65
|
+
Check if the Drive framework is installed:
|
|
66
|
+
```bash
|
|
67
|
+
ls ~/.claude/drive-framework/ 2>/dev/null
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
<if condition="drive-framework directory exists">
|
|
71
|
+
Drive is available. Proceed to headless init.
|
|
72
|
+
</if>
|
|
73
|
+
|
|
74
|
+
<if condition="drive-framework directory not found">
|
|
75
|
+
Inform the user:
|
|
76
|
+
|
|
77
|
+
> "Drive isn't installed globally yet. It needs to be at `~/.claude/drive-framework/`."
|
|
78
|
+
>
|
|
79
|
+
> "Want to install it now? I can help set it up, or you can run `/drive:init` later after installing."
|
|
80
|
+
|
|
81
|
+
Wait for response.
|
|
82
|
+
|
|
83
|
+
If user wants to install: guide them through installation (this is environment-specific — provide the standard setup steps).
|
|
84
|
+
If user declines: exit gracefully with graduation-only result.
|
|
85
|
+
</if>
|
|
86
|
+
</step>
|
|
87
|
+
|
|
88
|
+
<step name="headless_paul_init">
|
|
89
|
+
## Headless Drive Init
|
|
90
|
+
|
|
91
|
+
Run `/drive:init` in the graduated `apps/{name}/` directory with headless context:
|
|
92
|
+
|
|
93
|
+
1. Read `apps/{name}/README.md` (synthesized from PLANNING.md during graduation)
|
|
94
|
+
2. Also read the original `projects/{name}/PLANNING.md` for full depth
|
|
95
|
+
|
|
96
|
+
Pass this context to Drive init with the instruction:
|
|
97
|
+
|
|
98
|
+
> "Use the PLANNING.md and README.md as the project brief. Derive milestones, phases, and project structure from them. Do NOT re-ask questions that Ignition already answered during ideation — the answers are in these documents. Propose the project structure and ask for approval."
|
|
99
|
+
|
|
100
|
+
Drive will propose a structure (milestones, phases, tech stack). The user reviews and approves — headless means no redundant questions, NOT no approval.
|
|
101
|
+
|
|
102
|
+
Wait for response (user approves or adjusts Drive's proposed structure).
|
|
103
|
+
</step>
|
|
104
|
+
|
|
105
|
+
<step name="report_completion">
|
|
106
|
+
## Report Completion
|
|
107
|
+
|
|
108
|
+
After Drive initialization is approved:
|
|
109
|
+
|
|
110
|
+
```
|
|
111
|
+
Launched: {name}
|
|
112
|
+
Location: apps/{name}/
|
|
113
|
+
Drive: Initialized with {milestone} — {N} phases
|
|
114
|
+
|
|
115
|
+
Your project is ready for managed development.
|
|
116
|
+
Run /drive:plan to start Phase 1.
|
|
117
|
+
```
|
|
118
|
+
</step>
|
|
119
|
+
|
|
120
|
+
</steps>
|
|
121
|
+
|
|
122
|
+
<output>
|
|
123
|
+
- Everything from tasks/graduate.md (app directory, git repo, README, tracking)
|
|
124
|
+
- `.drive/` directory in `apps/{name}/` (PROJECT.md, ROADMAP.md, STATE.md)
|
|
125
|
+
- Project ready for `/drive:plan`
|
|
126
|
+
</output>
|
|
127
|
+
|
|
128
|
+
<acceptance-criteria>
|
|
129
|
+
- [ ] Delegates to tasks/graduate.md without duplicating logic
|
|
130
|
+
- [ ] Asks user about Drive (not filesystem scan for decision)
|
|
131
|
+
- [ ] Checks Drive framework availability before attempting init
|
|
132
|
+
- [ ] Prompts installation if Drive not found
|
|
133
|
+
- [ ] Headless Drive init passes PLANNING.md as context
|
|
134
|
+
- [ ] User still approves Drive's proposed structure
|
|
135
|
+
- [ ] Graceful exit if user declines Drive at any point
|
|
136
|
+
- [ ] Wait points at Drive offer and structure approval
|
|
137
|
+
</acceptance-criteria>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Show the project ideation pipeline — what's in projects/, what's ready to graduate, and what's already been graduated.
|
|
3
|
+
</purpose>
|
|
4
|
+
|
|
5
|
+
<user-story>
|
|
6
|
+
As a builder with multiple ideas in progress, I want to see which projects are in ideation, which are ready to graduate, and which have already moved to apps/, so that I can decide what to work on next.
|
|
7
|
+
</user-story>
|
|
8
|
+
|
|
9
|
+
<when-to-use>
|
|
10
|
+
- Want to see all projects in the pipeline
|
|
11
|
+
- Deciding which ideation to continue or graduate
|
|
12
|
+
- Checking if a project has already been graduated
|
|
13
|
+
</when-to-use>
|
|
14
|
+
|
|
15
|
+
<steps>
|
|
16
|
+
|
|
17
|
+
<step name="scan_projects" priority="first">
|
|
18
|
+
## Scan Pipeline
|
|
19
|
+
|
|
20
|
+
Scan `projects/` for directories containing `PLANNING.md`. For each project found, extract:
|
|
21
|
+
|
|
22
|
+
1. **Name** — directory name
|
|
23
|
+
2. **Type** — read Type metadata from PLANNING.md header
|
|
24
|
+
3. **Created** — file creation date of PLANNING.md
|
|
25
|
+
4. **Graduated** — check if PLANNING.md contains a `**Graduated:**` line at the bottom
|
|
26
|
+
|
|
27
|
+
Also check `apps/` for directories that match project names — these are graduated projects.
|
|
28
|
+
|
|
29
|
+
If `projects/` doesn't exist or is empty: "No projects in the pipeline. Run `/ignition` to start one."
|
|
30
|
+
</step>
|
|
31
|
+
|
|
32
|
+
<step name="display_pipeline">
|
|
33
|
+
## Display Pipeline
|
|
34
|
+
|
|
35
|
+
Present results as a formatted table:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
Project Pipeline
|
|
39
|
+
═══════════════════════════════════════════════════
|
|
40
|
+
Name Type Status
|
|
41
|
+
───────────────────────────────────────────────────
|
|
42
|
+
{name} {type} Ready for /ignition graduate
|
|
43
|
+
{name} {type} Graduated → apps/{name}/
|
|
44
|
+
{name} {type} In progress (no Type yet)
|
|
45
|
+
═══════════════════════════════════════════════════
|
|
46
|
+
{N} projects | {M} ready to graduate | {K} graduated
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**Status logic:**
|
|
50
|
+
- Has Type + content depth → "Ready for /ignition graduate"
|
|
51
|
+
- Has graduation note → "Graduated → apps/{name}/"
|
|
52
|
+
- Missing Type or very thin → "In progress"
|
|
53
|
+
|
|
54
|
+
If any projects are ready to graduate, suggest: "Run `/ignition graduate {name}` to move to apps/."
|
|
55
|
+
</step>
|
|
56
|
+
|
|
57
|
+
</steps>
|
|
58
|
+
|
|
59
|
+
<output>
|
|
60
|
+
- Formatted pipeline table displayed to user
|
|
61
|
+
- No files created or modified (read-only)
|
|
62
|
+
</output>
|
|
63
|
+
|
|
64
|
+
<acceptance-criteria>
|
|
65
|
+
- [ ] Scans projects/ for directories with PLANNING.md
|
|
66
|
+
- [ ] Extracts name, type, and graduation status per project
|
|
67
|
+
- [ ] Displays formatted pipeline table
|
|
68
|
+
- [ ] Identifies graduated projects (checks for graduation note)
|
|
69
|
+
- [ ] Read-only — does not modify any files
|
|
70
|
+
- [ ] Handles empty pipeline gracefully
|
|
71
|
+
</acceptance-criteria>
|