@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.
Files changed (376) hide show
  1. package/CLAUDE.md +19 -0
  2. package/LICENSE +33 -0
  3. package/README.md +275 -0
  4. package/bin/install.js +661 -0
  5. package/docs/getting-started.md +164 -0
  6. package/docs/module-guide.md +139 -0
  7. package/modules/drive/LICENSE +21 -0
  8. package/modules/drive/PAUL-VS-GSD.md +171 -0
  9. package/modules/drive/README.md +555 -0
  10. package/modules/drive/assets/terminal.svg +67 -0
  11. package/modules/drive/bin/install.js +210 -0
  12. package/modules/drive/integration.js +76 -0
  13. package/modules/drive/package.json +38 -0
  14. package/modules/drive/src/commands/add-phase.md +36 -0
  15. package/modules/drive/src/commands/apply.md +83 -0
  16. package/modules/drive/src/commands/assumptions.md +37 -0
  17. package/modules/drive/src/commands/audit.md +57 -0
  18. package/modules/drive/src/commands/complete-milestone.md +36 -0
  19. package/modules/drive/src/commands/config.md +175 -0
  20. package/modules/drive/src/commands/consider-issues.md +41 -0
  21. package/modules/drive/src/commands/discover.md +48 -0
  22. package/modules/drive/src/commands/discuss-milestone.md +33 -0
  23. package/modules/drive/src/commands/discuss.md +34 -0
  24. package/modules/drive/src/commands/flows.md +73 -0
  25. package/modules/drive/src/commands/handoff.md +201 -0
  26. package/modules/drive/src/commands/help.md +525 -0
  27. package/modules/drive/src/commands/init.md +54 -0
  28. package/modules/drive/src/commands/map-codebase.md +34 -0
  29. package/modules/drive/src/commands/milestone.md +34 -0
  30. package/modules/drive/src/commands/pause.md +44 -0
  31. package/modules/drive/src/commands/plan-fix.md +216 -0
  32. package/modules/drive/src/commands/plan.md +36 -0
  33. package/modules/drive/src/commands/progress.md +138 -0
  34. package/modules/drive/src/commands/register.md +29 -0
  35. package/modules/drive/src/commands/remove-phase.md +37 -0
  36. package/modules/drive/src/commands/research-phase.md +209 -0
  37. package/modules/drive/src/commands/research.md +47 -0
  38. package/modules/drive/src/commands/resume.md +49 -0
  39. package/modules/drive/src/commands/status.md +78 -0
  40. package/modules/drive/src/commands/unify.md +87 -0
  41. package/modules/drive/src/commands/verify.md +60 -0
  42. package/modules/drive/src/references/checkpoints.md +234 -0
  43. package/modules/drive/src/references/context-management.md +219 -0
  44. package/modules/drive/src/references/git-strategy.md +206 -0
  45. package/modules/drive/src/references/loop-phases.md +254 -0
  46. package/modules/drive/src/references/plan-format.md +263 -0
  47. package/modules/drive/src/references/quality-principles.md +152 -0
  48. package/modules/drive/src/references/research-quality-control.md +247 -0
  49. package/modules/drive/src/references/sonarqube-integration.md +244 -0
  50. package/modules/drive/src/references/specialized-workflow-integration.md +186 -0
  51. package/modules/drive/src/references/subagent-criteria.md +179 -0
  52. package/modules/drive/src/references/tdd.md +219 -0
  53. package/modules/drive/src/references/work-units.md +161 -0
  54. package/modules/drive/src/rules/commands.md +108 -0
  55. package/modules/drive/src/rules/references.md +107 -0
  56. package/modules/drive/src/rules/style.md +123 -0
  57. package/modules/drive/src/rules/templates.md +51 -0
  58. package/modules/drive/src/rules/workflows.md +133 -0
  59. package/modules/drive/src/templates/CONTEXT.md +88 -0
  60. package/modules/drive/src/templates/DEBUG.md +164 -0
  61. package/modules/drive/src/templates/DISCOVERY.md +148 -0
  62. package/modules/drive/src/templates/HANDOFF.md +77 -0
  63. package/modules/drive/src/templates/ISSUES.md +93 -0
  64. package/modules/drive/src/templates/MILESTONES.md +167 -0
  65. package/modules/drive/src/templates/PLAN.md +328 -0
  66. package/modules/drive/src/templates/PROJECT.md +219 -0
  67. package/modules/drive/src/templates/RESEARCH.md +130 -0
  68. package/modules/drive/src/templates/ROADMAP.md +328 -0
  69. package/modules/drive/src/templates/SPECIAL-FLOWS.md +70 -0
  70. package/modules/drive/src/templates/STATE.md +210 -0
  71. package/modules/drive/src/templates/SUMMARY.md +221 -0
  72. package/modules/drive/src/templates/UAT-ISSUES.md +139 -0
  73. package/modules/drive/src/templates/codebase/architecture.md +259 -0
  74. package/modules/drive/src/templates/codebase/concerns.md +329 -0
  75. package/modules/drive/src/templates/codebase/conventions.md +311 -0
  76. package/modules/drive/src/templates/codebase/integrations.md +284 -0
  77. package/modules/drive/src/templates/codebase/stack.md +190 -0
  78. package/modules/drive/src/templates/codebase/structure.md +287 -0
  79. package/modules/drive/src/templates/codebase/testing.md +484 -0
  80. package/modules/drive/src/templates/config.md +181 -0
  81. package/modules/drive/src/templates/milestone-archive.md +236 -0
  82. package/modules/drive/src/templates/milestone-context.md +190 -0
  83. package/modules/drive/src/templates/paul-json.md +147 -0
  84. package/modules/drive/src/vector-config/PAUL +26 -0
  85. package/modules/drive/src/vector-config/PAUL.manifest +11 -0
  86. package/modules/drive/src/workflows/apply-phase.md +393 -0
  87. package/modules/drive/src/workflows/audit-plan.md +344 -0
  88. package/modules/drive/src/workflows/complete-milestone.md +479 -0
  89. package/modules/drive/src/workflows/configure-special-flows.md +283 -0
  90. package/modules/drive/src/workflows/consider-issues.md +172 -0
  91. package/modules/drive/src/workflows/create-milestone.md +268 -0
  92. package/modules/drive/src/workflows/debug.md +292 -0
  93. package/modules/drive/src/workflows/discovery.md +187 -0
  94. package/modules/drive/src/workflows/discuss-milestone.md +245 -0
  95. package/modules/drive/src/workflows/discuss-phase.md +231 -0
  96. package/modules/drive/src/workflows/init-project.md +698 -0
  97. package/modules/drive/src/workflows/map-codebase.md +459 -0
  98. package/modules/drive/src/workflows/pause-work.md +259 -0
  99. package/modules/drive/src/workflows/phase-assumptions.md +181 -0
  100. package/modules/drive/src/workflows/plan-phase.md +385 -0
  101. package/modules/drive/src/workflows/quality-gate.md +263 -0
  102. package/modules/drive/src/workflows/register-manifest.md +107 -0
  103. package/modules/drive/src/workflows/research.md +241 -0
  104. package/modules/drive/src/workflows/resume-project.md +200 -0
  105. package/modules/drive/src/workflows/roadmap-management.md +334 -0
  106. package/modules/drive/src/workflows/transition-phase.md +368 -0
  107. package/modules/drive/src/workflows/unify-phase.md +290 -0
  108. package/modules/drive/src/workflows/verify-work.md +241 -0
  109. package/modules/forge/README.md +281 -0
  110. package/modules/forge/bin/install.js +200 -0
  111. package/modules/forge/package.json +32 -0
  112. package/modules/forge/skillsmith/rules/checklists-rules.md +42 -0
  113. package/modules/forge/skillsmith/rules/context-rules.md +43 -0
  114. package/modules/forge/skillsmith/rules/entry-point-rules.md +44 -0
  115. package/modules/forge/skillsmith/rules/frameworks-rules.md +43 -0
  116. package/modules/forge/skillsmith/rules/tasks-rules.md +52 -0
  117. package/modules/forge/skillsmith/rules/templates-rules.md +43 -0
  118. package/modules/forge/skillsmith/skillsmith.md +82 -0
  119. package/modules/forge/skillsmith/tasks/audit.md +277 -0
  120. package/modules/forge/skillsmith/tasks/discover.md +145 -0
  121. package/modules/forge/skillsmith/tasks/distill.md +276 -0
  122. package/modules/forge/skillsmith/tasks/scaffold.md +349 -0
  123. package/modules/forge/specs/checklists.md +193 -0
  124. package/modules/forge/specs/context.md +223 -0
  125. package/modules/forge/specs/entry-point.md +320 -0
  126. package/modules/forge/specs/frameworks.md +228 -0
  127. package/modules/forge/specs/rules.md +245 -0
  128. package/modules/forge/specs/tasks.md +344 -0
  129. package/modules/forge/specs/templates.md +335 -0
  130. package/modules/forge/terminal.svg +70 -0
  131. package/modules/ignition/README.md +245 -0
  132. package/modules/ignition/bin/install.js +184 -0
  133. package/modules/ignition/checklists/planning-quality.md +55 -0
  134. package/modules/ignition/data/application/config.md +21 -0
  135. package/modules/ignition/data/application/guide.md +51 -0
  136. package/modules/ignition/data/application/skill-loadout.md +11 -0
  137. package/modules/ignition/data/campaign/config.md +18 -0
  138. package/modules/ignition/data/campaign/guide.md +36 -0
  139. package/modules/ignition/data/campaign/skill-loadout.md +10 -0
  140. package/modules/ignition/data/client/config.md +18 -0
  141. package/modules/ignition/data/client/guide.md +36 -0
  142. package/modules/ignition/data/client/skill-loadout.md +11 -0
  143. package/modules/ignition/data/utility/config.md +18 -0
  144. package/modules/ignition/data/utility/guide.md +31 -0
  145. package/modules/ignition/data/utility/skill-loadout.md +8 -0
  146. package/modules/ignition/data/workflow/config.md +19 -0
  147. package/modules/ignition/data/workflow/guide.md +41 -0
  148. package/modules/ignition/data/workflow/skill-loadout.md +10 -0
  149. package/modules/ignition/integration.js +54 -0
  150. package/modules/ignition/package.json +35 -0
  151. package/modules/ignition/seed.md +81 -0
  152. package/modules/ignition/tasks/add-type.md +164 -0
  153. package/modules/ignition/tasks/graduate.md +182 -0
  154. package/modules/ignition/tasks/ideate.md +221 -0
  155. package/modules/ignition/tasks/launch.md +137 -0
  156. package/modules/ignition/tasks/status.md +71 -0
  157. package/modules/ignition/templates/planning-application.md +193 -0
  158. package/modules/ignition/templates/planning-campaign.md +138 -0
  159. package/modules/ignition/templates/planning-client.md +149 -0
  160. package/modules/ignition/templates/planning-utility.md +112 -0
  161. package/modules/ignition/templates/planning-workflow.md +125 -0
  162. package/modules/ignition/terminal.svg +74 -0
  163. package/modules/mission-control/CONTEXT-CONTINUITY-SPEC.md +293 -0
  164. package/modules/mission-control/CONTEXT-ENGINEERING-GUIDE.md +282 -0
  165. package/modules/mission-control/README.md +91 -0
  166. package/modules/mission-control/assets/terminal.svg +80 -0
  167. package/modules/mission-control/examples/entities.example.json +133 -0
  168. package/modules/mission-control/examples/projects.example.json +318 -0
  169. package/modules/mission-control/examples/state.example.json +183 -0
  170. package/modules/mission-control/examples/vector.example.json +245 -0
  171. package/modules/mission-control/mission-control/checklists/install-verification.md +46 -0
  172. package/modules/mission-control/mission-control/frameworks/framework-registry.md +83 -0
  173. package/modules/mission-control/mission-control/mission-control.md +83 -0
  174. package/modules/mission-control/mission-control/tasks/insights.md +73 -0
  175. package/modules/mission-control/mission-control/tasks/install.md +194 -0
  176. package/modules/mission-control/mission-control/tasks/status.md +125 -0
  177. package/modules/mission-control/schemas/entities.schema.json +89 -0
  178. package/modules/mission-control/schemas/projects.schema.json +221 -0
  179. package/modules/mission-control/schemas/state.schema.json +108 -0
  180. package/modules/mission-control/schemas/vector.schema.json +200 -0
  181. package/modules/momentum/README.md +678 -0
  182. package/modules/momentum/bin/install.js +563 -0
  183. package/modules/momentum/integration.js +131 -0
  184. package/modules/momentum/package.json +42 -0
  185. package/modules/momentum/schemas/entities.schema.json +89 -0
  186. package/modules/momentum/schemas/projects.schema.json +221 -0
  187. package/modules/momentum/schemas/state.schema.json +108 -0
  188. package/modules/momentum/src/commands/audit-claude-md.md +31 -0
  189. package/modules/momentum/src/commands/audit.md +33 -0
  190. package/modules/momentum/src/commands/groom.md +35 -0
  191. package/modules/momentum/src/commands/history.md +27 -0
  192. package/modules/momentum/src/commands/pulse.md +33 -0
  193. package/modules/momentum/src/commands/scaffold.md +33 -0
  194. package/modules/momentum/src/commands/status.md +28 -0
  195. package/modules/momentum/src/commands/surface-convert.md +35 -0
  196. package/modules/momentum/src/commands/surface-create.md +34 -0
  197. package/modules/momentum/src/commands/surface-list.md +27 -0
  198. package/modules/momentum/src/commands/vector-hygiene.md +33 -0
  199. package/modules/momentum/src/framework/context/momentum-principles.md +71 -0
  200. package/modules/momentum/src/framework/frameworks/audit-strategies.md +53 -0
  201. package/modules/momentum/src/framework/frameworks/satellite-registration.md +44 -0
  202. package/modules/momentum/src/framework/tasks/audit-claude-md.md +68 -0
  203. package/modules/momentum/src/framework/tasks/audit.md +64 -0
  204. package/modules/momentum/src/framework/tasks/groom.md +164 -0
  205. package/modules/momentum/src/framework/tasks/history.md +34 -0
  206. package/modules/momentum/src/framework/tasks/pulse.md +83 -0
  207. package/modules/momentum/src/framework/tasks/scaffold.md +202 -0
  208. package/modules/momentum/src/framework/tasks/status.md +35 -0
  209. package/modules/momentum/src/framework/tasks/surface-convert.md +143 -0
  210. package/modules/momentum/src/framework/tasks/surface-create.md +184 -0
  211. package/modules/momentum/src/framework/tasks/surface-list.md +42 -0
  212. package/modules/momentum/src/framework/tasks/vector-hygiene.md +160 -0
  213. package/modules/momentum/src/framework/templates/workspace-json.md +96 -0
  214. package/modules/momentum/src/hooks/_template.py +129 -0
  215. package/modules/momentum/src/hooks/active-hook.py +178 -0
  216. package/modules/momentum/src/hooks/backlog-hook.py +115 -0
  217. package/modules/momentum/src/hooks/mission-control-insights.py +169 -0
  218. package/modules/momentum/src/hooks/momentum-pulse-check.py +351 -0
  219. package/modules/momentum/src/hooks/operator.py +53 -0
  220. package/modules/momentum/src/hooks/psmm-injector.py +67 -0
  221. package/modules/momentum/src/hooks/satellite-detection.py +248 -0
  222. package/modules/momentum/src/packages/momentum-mcp/index.js +119 -0
  223. package/modules/momentum/src/packages/momentum-mcp/package.json +10 -0
  224. package/modules/momentum/src/packages/momentum-mcp/tools/entities.js +226 -0
  225. package/modules/momentum/src/packages/momentum-mcp/tools/operator.js +106 -0
  226. package/modules/momentum/src/packages/momentum-mcp/tools/projects.js +322 -0
  227. package/modules/momentum/src/packages/momentum-mcp/tools/psmm.js +206 -0
  228. package/modules/momentum/src/packages/momentum-mcp/tools/state.js +199 -0
  229. package/modules/momentum/src/packages/momentum-mcp/tools/surfaces.js +404 -0
  230. package/modules/momentum/src/skill/momentum.md +111 -0
  231. package/modules/momentum/src/tasks/groom.md +164 -0
  232. package/modules/momentum/src/templates/operator.json +66 -0
  233. package/modules/momentum/src/templates/workspace.json +111 -0
  234. package/modules/momentum/terminal.svg +77 -0
  235. package/modules/radar/README.md +1552 -0
  236. package/modules/radar/commands/audit.md +233 -0
  237. package/modules/radar/commands/guardrails.md +194 -0
  238. package/modules/radar/commands/init.md +207 -0
  239. package/modules/radar/commands/playbook.md +176 -0
  240. package/modules/radar/commands/remediate.md +156 -0
  241. package/modules/radar/commands/report.md +172 -0
  242. package/modules/radar/commands/resume.md +176 -0
  243. package/modules/radar/commands/status.md +148 -0
  244. package/modules/radar/commands/transform.md +205 -0
  245. package/modules/radar/commands/validate.md +177 -0
  246. package/modules/radar/docs/ARCHITECTURE.md +336 -0
  247. package/modules/radar/docs/GETTING-STARTED.md +287 -0
  248. package/modules/radar/docs/standards/agents.md +197 -0
  249. package/modules/radar/docs/standards/commands.md +250 -0
  250. package/modules/radar/docs/standards/domains.md +191 -0
  251. package/modules/radar/docs/standards/personas.md +211 -0
  252. package/modules/radar/docs/standards/rules.md +218 -0
  253. package/modules/radar/docs/standards/runtime.md +445 -0
  254. package/modules/radar/docs/standards/schemas.md +269 -0
  255. package/modules/radar/docs/standards/tools.md +273 -0
  256. package/modules/radar/docs/standards/workflows.md +254 -0
  257. package/modules/radar/docs/terminal.svg +72 -0
  258. package/modules/radar/docs/validation/convention-compliance-report.md +183 -0
  259. package/modules/radar/docs/validation/cross-reference-report.md +195 -0
  260. package/modules/radar/docs/validation/validation-summary.md +118 -0
  261. package/modules/radar/docs/validation/version-manifest.yaml +363 -0
  262. package/modules/radar/install.sh +711 -0
  263. package/modules/radar/integration.js +53 -0
  264. package/modules/radar/src/core/agents/architect.md +25 -0
  265. package/modules/radar/src/core/agents/compliance-officer.md +25 -0
  266. package/modules/radar/src/core/agents/data-engineer.md +25 -0
  267. package/modules/radar/src/core/agents/devils-advocate.md +22 -0
  268. package/modules/radar/src/core/agents/performance-engineer.md +25 -0
  269. package/modules/radar/src/core/agents/principal-engineer.md +23 -0
  270. package/modules/radar/src/core/agents/reality-gap-analyst.md +22 -0
  271. package/modules/radar/src/core/agents/security-engineer.md +25 -0
  272. package/modules/radar/src/core/agents/senior-app-engineer.md +25 -0
  273. package/modules/radar/src/core/agents/sre.md +25 -0
  274. package/modules/radar/src/core/agents/staff-engineer.md +23 -0
  275. package/modules/radar/src/core/agents/test-engineer.md +25 -0
  276. package/modules/radar/src/core/personas/architect.md +111 -0
  277. package/modules/radar/src/core/personas/compliance-officer.md +104 -0
  278. package/modules/radar/src/core/personas/data-engineer.md +113 -0
  279. package/modules/radar/src/core/personas/devils-advocate.md +105 -0
  280. package/modules/radar/src/core/personas/performance-engineer.md +119 -0
  281. package/modules/radar/src/core/personas/principal-engineer.md +119 -0
  282. package/modules/radar/src/core/personas/reality-gap-analyst.md +111 -0
  283. package/modules/radar/src/core/personas/security-engineer.md +108 -0
  284. package/modules/radar/src/core/personas/senior-app-engineer.md +111 -0
  285. package/modules/radar/src/core/personas/sre.md +117 -0
  286. package/modules/radar/src/core/personas/staff-engineer.md +109 -0
  287. package/modules/radar/src/core/personas/test-engineer.md +109 -0
  288. package/modules/radar/src/core/workflows/disagreement-resolution.md +183 -0
  289. package/modules/radar/src/core/workflows/phase-0-context.md +148 -0
  290. package/modules/radar/src/core/workflows/phase-1-reconnaissance.md +169 -0
  291. package/modules/radar/src/core/workflows/phase-2-domain-audits.md +190 -0
  292. package/modules/radar/src/core/workflows/phase-3-cross-domain.md +177 -0
  293. package/modules/radar/src/core/workflows/phase-4-adversarial-review.md +165 -0
  294. package/modules/radar/src/core/workflows/phase-5-report.md +189 -0
  295. package/modules/radar/src/core/workflows/phase-checkpoint.md +222 -0
  296. package/modules/radar/src/core/workflows/session-handoff.md +152 -0
  297. package/modules/radar/src/domains/00-context.md +201 -0
  298. package/modules/radar/src/domains/01-architecture.md +248 -0
  299. package/modules/radar/src/domains/02-data.md +224 -0
  300. package/modules/radar/src/domains/03-correctness.md +230 -0
  301. package/modules/radar/src/domains/04-security.md +274 -0
  302. package/modules/radar/src/domains/05-compliance.md +228 -0
  303. package/modules/radar/src/domains/06-testing.md +228 -0
  304. package/modules/radar/src/domains/07-reliability.md +246 -0
  305. package/modules/radar/src/domains/08-performance.md +247 -0
  306. package/modules/radar/src/domains/09-maintainability.md +271 -0
  307. package/modules/radar/src/domains/10-operability.md +250 -0
  308. package/modules/radar/src/domains/11-change-risk.md +246 -0
  309. package/modules/radar/src/domains/12-team-risk.md +221 -0
  310. package/modules/radar/src/domains/13-risk-synthesis.md +202 -0
  311. package/modules/radar/src/rules/agent-boundaries.md +78 -0
  312. package/modules/radar/src/rules/disagreement-protocol.md +76 -0
  313. package/modules/radar/src/rules/epistemic-hygiene.md +78 -0
  314. package/modules/radar/src/schemas/confidence.md +185 -0
  315. package/modules/radar/src/schemas/disagreement.md +238 -0
  316. package/modules/radar/src/schemas/finding.md +287 -0
  317. package/modules/radar/src/schemas/report-section.md +150 -0
  318. package/modules/radar/src/schemas/signal.md +108 -0
  319. package/modules/radar/src/tools/checkov.md +463 -0
  320. package/modules/radar/src/tools/git-history.md +581 -0
  321. package/modules/radar/src/tools/gitleaks.md +447 -0
  322. package/modules/radar/src/tools/grype.md +611 -0
  323. package/modules/radar/src/tools/semgrep.md +378 -0
  324. package/modules/radar/src/tools/sonarqube.md +550 -0
  325. package/modules/radar/src/tools/syft.md +539 -0
  326. package/modules/radar/src/tools/trivy.md +439 -0
  327. package/modules/radar/src/transform/agents/change-risk-modeler.md +24 -0
  328. package/modules/radar/src/transform/agents/execution-validator.md +24 -0
  329. package/modules/radar/src/transform/agents/guardrail-generator.md +24 -0
  330. package/modules/radar/src/transform/agents/pedagogy-agent.md +24 -0
  331. package/modules/radar/src/transform/agents/remediation-architect.md +24 -0
  332. package/modules/radar/src/transform/personas/change-risk-modeler.md +95 -0
  333. package/modules/radar/src/transform/personas/execution-validator.md +95 -0
  334. package/modules/radar/src/transform/personas/guardrail-generator.md +103 -0
  335. package/modules/radar/src/transform/personas/pedagogy-agent.md +105 -0
  336. package/modules/radar/src/transform/personas/remediation-architect.md +95 -0
  337. package/modules/radar/src/transform/rules/change-risk-rules.md +87 -0
  338. package/modules/radar/src/transform/rules/safety-governance.md +87 -0
  339. package/modules/radar/src/transform/schemas/change-risk.md +139 -0
  340. package/modules/radar/src/transform/schemas/intervention-level.md +207 -0
  341. package/modules/radar/src/transform/schemas/playbook.md +205 -0
  342. package/modules/radar/src/transform/schemas/verification-plan.md +134 -0
  343. package/modules/radar/src/transform/workflows/phase-6-remediation.md +148 -0
  344. package/modules/radar/src/transform/workflows/phase-7-risk-validation.md +161 -0
  345. package/modules/radar/src/transform/workflows/phase-8-execution-planning.md +159 -0
  346. package/modules/radar/src/transform/workflows/transform-safety.md +158 -0
  347. package/modules/vector/.vector-template/sessions/.gitkeep +0 -0
  348. package/modules/vector/.vector-template/vector.json +72 -0
  349. package/modules/vector/AUDIT-CLAUDEMD.md +154 -0
  350. package/modules/vector/INSTALL.md +185 -0
  351. package/modules/vector/LICENSE +21 -0
  352. package/modules/vector/README.md +409 -0
  353. package/modules/vector/VECTOR-BLOCK.md +57 -0
  354. package/modules/vector/assets/terminal.svg +68 -0
  355. package/modules/vector/bin/install.js +455 -0
  356. package/modules/vector/bin/migrate-v1-to-v2.sh +492 -0
  357. package/modules/vector/commands/help.md +46 -0
  358. package/modules/vector/hooks/vector-hook.py +775 -0
  359. package/modules/vector/mcp/index.js +118 -0
  360. package/modules/vector/mcp/package.json +10 -0
  361. package/modules/vector/mcp/tools/decisions.js +269 -0
  362. package/modules/vector/mcp/tools/domains.js +361 -0
  363. package/modules/vector/mcp/tools/staging.js +252 -0
  364. package/modules/vector/mcp/tools/vector-json.js +647 -0
  365. package/modules/vector/package.json +38 -0
  366. package/modules/vector/schemas/vector.schema.json +237 -0
  367. package/package.json +39 -0
  368. package/shared/branding/branding.js +70 -0
  369. package/shared/config/defaults.json +59 -0
  370. package/shared/events/README.md +175 -0
  371. package/shared/events/event-bus.js +134 -0
  372. package/shared/events/event_bus.py +255 -0
  373. package/shared/events/integrations.js +161 -0
  374. package/shared/events/schemas/audit-complete.schema.json +21 -0
  375. package/shared/events/schemas/phase-progress.schema.json +23 -0
  376. package/shared/events/schemas/plan-created.schema.json +21 -0
@@ -0,0 +1,70 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 740 480" width="740" height="480">
2
+ <!-- Window shadow -->
3
+ <rect x="4" y="8" width="736" height="472" rx="12" fill="rgba(0,0,0,0.4)"/>
4
+
5
+ <!-- Window background -->
6
+ <rect width="736" height="472" rx="12" fill="#13131f"/>
7
+
8
+ <!-- Title bar -->
9
+ <rect width="736" height="40" rx="12" fill="#1e1e30"/>
10
+ <rect y="28" width="736" height="12" fill="#1e1e30"/>
11
+
12
+ <!-- Traffic lights -->
13
+ <circle cx="24" cy="20" r="7" fill="#ff5f57"/>
14
+ <circle cx="48" cy="20" r="7" fill="#febc2e"/>
15
+ <circle cx="72" cy="20" r="7" fill="#28c840"/>
16
+
17
+ <!-- Terminal label -->
18
+ <text x="368" y="25" text-anchor="middle" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="12" fill="#4a4a6a">Terminal</text>
19
+
20
+ <!-- Prompt line -->
21
+ <text x="24" y="68" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
22
+ <tspan fill="#4a4a6a">~ $ </tspan><tspan fill="#c0c0d8">/forge</tspan>
23
+ </text>
24
+
25
+ <!-- Forge logo - cyan -->
26
+ <text x="24" y="96" fill="#67d4f0" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="11" xml:space="preserve"> ███████╗██╗ ██╗██╗██╗ ██╗ ███████╗███╗ ███╗██╗████████╗██╗ ██╗</text>
27
+ <text x="24" y="111" fill="#67d4f0" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="11" xml:space="preserve"> ██╔════╝██║ ██╔╝██║██║ ██║ ██╔════╝████╗ ████║██║╚══██╔══╝██║ ██║</text>
28
+ <text x="24" y="126" fill="#4dc4e0" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="11" xml:space="preserve"> ███████╗█████╔╝ ██║██║ ██║ ███████╗██╔████╔██║██║ ██║ ███████║</text>
29
+ <text x="24" y="141" fill="#4dc4e0" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="11" xml:space="preserve"> ╚════██║██╔═██╗ ██║██║ ██║ ╚════██║██║╚██╔╝██║██║ ██║ ██╔══██║</text>
30
+ <text x="24" y="156" fill="#36b0cc" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="11" xml:space="preserve"> ███████║██║ ██╗██║███████╗███████╗███████║██║ ╚═╝ ██║██║ ██║ ██║ ██║</text>
31
+ <text x="24" y="171" fill="#36b0cc" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="11" xml:space="preserve"> ╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝</text>
32
+
33
+ <!-- Name + version -->
34
+ <text x="24" y="197" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
35
+ <tspan fill="#67d4f0" font-weight="bold">Forge</tspan><tspan fill="#4a4a6a"> v0.1.0</tspan>
36
+ </text>
37
+ <text x="24" y="214" fill="#7b8cde" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">Build consistent Claude Code skills</text>
38
+
39
+ <!-- Divider -->
40
+ <line x1="24" y1="228" x2="712" y2="228" stroke="#1e1e30" stroke-width="1.5"/>
41
+
42
+ <!-- Greeting -->
43
+ <text x="24" y="248" fill="#67d4f0" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">Forge loaded.</text>
44
+
45
+ <!-- Commands -->
46
+ <text x="24" y="273" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
47
+ <tspan fill="#c0c0d8"> -</tspan><tspan fill="#67d4f0"> Discover</tspan>
48
+ <tspan fill="#4a4a6a"> — Guided interview to design a new skill</tspan>
49
+ </text>
50
+ <text x="24" y="290" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
51
+ <tspan fill="#c0c0d8"> -</tspan><tspan fill="#67d4f0"> Scaffold</tspan>
52
+ <tspan fill="#4a4a6a"> — Generate compliant directory from spec</tspan>
53
+ </text>
54
+ <text x="24" y="307" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
55
+ <tspan fill="#c0c0d8"> -</tspan><tspan fill="#67d4f0"> Distill</tspan>
56
+ <tspan fill="#4a4a6a"> — Transform source material into chunks</tspan>
57
+ </text>
58
+ <text x="24" y="324" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
59
+ <tspan fill="#c0c0d8"> -</tspan><tspan fill="#67d4f0"> Audit</tspan>
60
+ <tspan fill="#4a4a6a"> — Check skill compliance against specs</tspan>
61
+ </text>
62
+
63
+ <!-- Prompt -->
64
+ <text x="24" y="358" fill="#c0c0d8" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">What are you building?</text>
65
+
66
+ <!-- Cursor -->
67
+ <text x="24" y="395" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
68
+ <tspan fill="#4a4a6a">~ $ </tspan><tspan fill="#67d4f0">▊</tspan>
69
+ </text>
70
+ </svg>
@@ -0,0 +1,245 @@
1
+ <div align="center">
2
+ <img src="terminal.svg" alt="Ignition terminal" width="740"/>
3
+ </div>
4
+
5
+ <div align="center">
6
+
7
+ [![Claude Code](https://img.shields.io/badge/Claude%20Code-compatible-8b5cf6?style=flat-square)](https://claude.ai/code)
8
+ [![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](LICENSE)
9
+
10
+ **Your AI project incubator.**<br/>
11
+ Take raw ideas through type-aware guided exploration and produce structured plans ready for building.
12
+
13
+ </div>
14
+
15
+ ---
16
+
17
+ ## Contents
18
+
19
+ - [What Ignition Does](#what-ignition-does)
20
+ - [Commands](#commands)
21
+ - [Project Types](#project-types)
22
+ - [How It Works](#how-it-works)
23
+ - [Architecture](#architecture)
24
+ - [The Drive Connection](#the-drive-connection--ideation-to-managed-build)
25
+ - [Ecosystem](#ecosystem)
26
+ - [Install](#install)
27
+
28
+ ---
29
+
30
+ ## Ecosystem
31
+
32
+ Ignition is part of a broader Claude Code extension ecosystem:
33
+
34
+ | System | What It Does | Link |
35
+ |--------|-------------|------|
36
+ | **Radar** | Multi-agent codebase auditing — diagnosis + controlled evolution | [GitHub](https://github.com/accelerationguy/radar) |
37
+ | **Momentum** | Builder's Automated State Engine — workspace lifecycle, health tracking, drift prevention | [GitHub](https://github.com/accelerationguy/base) |
38
+ | **Vector** | Context Augmentation & Reinforcement Layer — dynamic rules loaded JIT by intent | [GitHub](https://github.com/accelerationguy/vector) |
39
+ | **Drive** | Project orchestration — Plan, Apply, Unify Loop | [GitHub](https://github.com/accelerationguy/drive) |
40
+ | **Ignition** | Typed project incubator — guided ideation through graduation into buildable projects | You are here |
41
+ | **Forge** | Skill builder — standardized syntax specs + guided workflows for Claude Code skills | [GitHub](https://github.com/accelerationguy/forge) |
42
+ | **CC Strategic AI** | Skool community — courses, community, live support | [Skool](https://accelerationguy.com) |
43
+
44
+ ---
45
+
46
+ ## What Ignition Does
47
+
48
+ You have an idea. Maybe it's an app, a workflow, a client site, a utility, or a content campaign. Before you start building, you need to answer the right questions — and the right questions depend on what type of project it is.
49
+
50
+ Ignition is a typed project incubator for Claude Code. It guides you through collaborative exploration shaped by your project type, produces a structured PLANNING.md, and graduates mature plans into buildable project directories. If you use Drive, it can initialize a managed build from your plan without re-asking questions you already answered.
51
+
52
+ **The coach, not the interrogator.** Ignition brainstorms alongside you, offers suggestions when you're stuck, and pushes toward decisions when it's time. It doesn't fire questions at you — it thinks with you.
53
+
54
+ ---
55
+
56
+ ## Commands
57
+
58
+ | Command | What It Does |
59
+ |---------|-------------|
60
+ | `/ignition` | Start a guided ideation session (default) |
61
+ | `/ignition graduate` | Move completed ideation to `apps/` with git repo and synthesized README |
62
+ | `/ignition launch` | Graduate + initialize Drive for managed build (one command) |
63
+ | `/ignition status` | Show all projects in the ideation pipeline |
64
+ | `/ignition add-type` | Create a custom project type for Ignition's data layer |
65
+
66
+ ---
67
+
68
+ ## Project Types
69
+
70
+ Ignition ships with 5 default types. Each type shapes the conversation differently:
71
+
72
+ | Type | Rigor | Sections | What It's For |
73
+ |------|-------|----------|---------------|
74
+ | **Application** | Deep | 10 | Software with UI, data model, API, deployment |
75
+ | **Workflow** | Standard | 8 | Claude Code commands, hooks, Vector domains, skills |
76
+ | **Client** | Standard | 7 | Client websites — business context, conversion, content |
77
+ | **Utility** | Tight | 6 | Small tools, scripts, single-purpose — resists expansion |
78
+ | **Campaign** | Creative | 7 | Content, marketing, launches — timeline-driven |
79
+
80
+ **Rigor adapts behavior:**
81
+ - **Tight** — Move fast, resist scope creep, done in one session
82
+ - **Standard** — Balanced exploration with clear boundaries
83
+ - **Deep** — Thorough, architecture matters, don't rush
84
+ - **Creative** — Loose and generative, but always anchored to a measurable goal
85
+
86
+ Types are composable. Run `/ignition add-type` to create your own — just drop files in `data/{type}/` and it works immediately. No code changes needed.
87
+
88
+ ---
89
+
90
+ ## How It Works
91
+
92
+ ```
93
+ /ignition /ignition graduate /ignition launch
94
+ │ │ │
95
+ ▼ ▼ ▼
96
+ Select type ──▶ Guided ──▶ PLANNING.md ──▶ apps/{name}/ ──▶ .drive/ init
97
+ (or discover) ideation (populated) git + README (headless)
98
+ │ │
99
+ ▼ ▼
100
+ Load data/ Coach persona
101
+ {type}/ adapts rigor
102
+ ```
103
+
104
+ 1. **Type first.** Ignition determines your project type before anything else. Type shapes everything downstream.
105
+ 2. **Guided exploration.** Conversation sections load from `data/{type}/guide.md`. Each section has prompts (what to explore) and suggestions (what to offer when you're stuck).
106
+ 3. **PLANNING.md output.** When you're ready, Ignition populates a type-specific template and writes it to `projects/{name}/`.
107
+ 4. **Graduate.** Moves the project to `apps/{name}/` with git init, a synthesized README, and workspace tracking updates.
108
+ 5. **Launch (optional).** Wraps graduation + headless Drive init. Your PLANNING.md is rich enough that Drive derives its structure without re-asking questions.
109
+
110
+ ---
111
+
112
+ ## Architecture
113
+
114
+ ```
115
+ ignition/
116
+ ├── ignition.md Entry point (Forge-compliant)
117
+ ├── tasks/
118
+ │ ├── ideate.md Type-first guided ideation
119
+ │ ├── graduate.md Project graduation to apps/
120
+ │ ├── launch.md Graduate + Drive init wrapper
121
+ │ ├── status.md Pipeline visibility
122
+ │ └── add-type.md User-extensible type system
123
+ ├── data/ Composable per-type data
124
+ │ ├── application/
125
+ │ │ ├── guide.md Conversation sections (Explore + Suggest)
126
+ │ │ ├── config.md Rigor, demeanor, required sections
127
+ │ │ └── skill-loadout.md Ecosystem tool recommendations
128
+ │ ├── workflow/ Same structure
129
+ │ ├── client/ Same structure
130
+ │ ├── utility/ Same structure
131
+ │ └── campaign/ Same structure
132
+ ├── templates/
133
+ │ ├── planning-application.md PLANNING.md output template
134
+ │ ├── planning-workflow.md
135
+ │ ├── planning-client.md
136
+ │ ├── planning-utility.md
137
+ │ └── planning-campaign.md
138
+ ├── checklists/
139
+ │ └── planning-quality.md Quality gate for graduation
140
+ ├── terminal.svg Hero image
141
+ └── README.md You are here
142
+ ```
143
+
144
+ **The key design decision:** Type-specific content lives in `data/{type}/` files, not hardcoded in task files. This means:
145
+ - Adding a new type = dropping 3 files in a new `data/` directory
146
+ - No task file modifications needed
147
+ - The ideate task loads type content dynamically after selection
148
+
149
+ ---
150
+
151
+ ## The Drive Connection — Ideation to Managed Build
152
+
153
+ This is where Ignition pays off. The entire ideation flow is designed so that the PLANNING.md it produces contains everything [Drive](https://github.com/accelerationguy/drive) needs to set up a structured build — milestones, phases, tech stack, architecture decisions, phase breakdowns — without asking you anything twice.
154
+
155
+ ### The Problem
156
+
157
+ Starting a Drive project from scratch means answering a series of setup questions: What's the project? What's the stack? What are the milestones? What are the phases? If you've already thought through all of this during ideation, repeating it during project setup is friction that kills momentum.
158
+
159
+ ### How Ignition Solves It
160
+
161
+ `/ignition launch` runs the full graduation flow and then initializes Drive with **headless context**:
162
+
163
+ 1. Ignition produces a rich PLANNING.md during ideation (type-aware, quality-gated)
164
+ 2. `/ignition launch` graduates the project to `apps/{name}/` with git
165
+ 3. Drive reads the PLANNING.md and derives its entire project structure from it
166
+ 4. Drive proposes milestones, phases, and tech stack — you review and approve
167
+ 5. You're immediately ready to run `/drive:plan` for Phase 1
168
+
169
+ **No re-asking.** Drive doesn't ask "What's this project?" or "What's the tech stack?" — those answers are already in the PLANNING.md that Ignition produced. The only interaction is approving the proposed structure.
170
+
171
+ ### What Makes the PLANNING.md Drive-Ready
172
+
173
+ Ignition's quality gate (`checklists/planning-quality.md`) specifically checks for Drive-readiness:
174
+
175
+ - Phase breakdown with independently shippable milestones
176
+ - Each phase has build/test/outcome defined
177
+ - Tech stack decisions resolved (not "TBD")
178
+ - Design decisions documented with rationale
179
+ - Enough detail that Drive can derive structure without questions
180
+
181
+ ### Without Drive
182
+
183
+ Don't use Drive? `/ignition graduate` works standalone — you get a clean `apps/{name}/` directory with git and a synthesized README. Build however you want. Drive is additive, not required.
184
+
185
+ ---
186
+
187
+ ## Ecosystem
188
+
189
+ Ignition works standalone but integrates with the broader toolkit:
190
+
191
+ | Tool | How Ignition Uses It |
192
+ |------|-----------------|
193
+ | **Drive** | `/ignition launch` initializes Drive with headless context from PLANNING.md — zero-friction handoff from ideation to managed build |
194
+ | **Momentum** | Graduate updates ACTIVE.md for workspace-level project tracking |
195
+ | **Forge** | Ignition was built with Forge — compliant entry point + tasks |
196
+ | **Radar** | Recommended post-build audit for application-type projects |
197
+
198
+ All integrations are additive. Ignition works without any of them installed.
199
+
200
+ ---
201
+
202
+ ## Install
203
+
204
+ ```bash
205
+ npm i -g @accel/ignition
206
+ ```
207
+
208
+ One command. Installs the skill to `~/.claude/commands/ignition/` — available in every workspace.
209
+
210
+ ```bash
211
+ # Global install (default) — available everywhere
212
+ npm i -g @accel/ignition
213
+
214
+ # Install to current project only
215
+ npm i -g @accel/ignition -- --local
216
+
217
+ # Custom Claude config directory
218
+ npm i -g @accel/ignition -- --config-dir /path/to/.claude
219
+ ```
220
+
221
+ Then open Claude Code and type `/ignition` to start.
222
+
223
+ ### What Gets Installed
224
+
225
+ ```
226
+ ~/.claude/commands/ignition/
227
+ ├── ignition.md Entry point (routing + persona)
228
+ ├── tasks/ 5 task files
229
+ ├── data/ 15 type-specific data files (5 types × 3 files)
230
+ ├── templates/ 5 PLANNING.md output templates
231
+ └── checklists/ Planning quality gate
232
+ ```
233
+
234
+ No hooks, no MCP servers, no workspace data. Ignition is pure markdown — zero runtime dependencies.
235
+
236
+ ### Requirements
237
+
238
+ - [Claude Code](https://claude.ai/code)
239
+ - Node.js >= 16 (for install script only — Ignition itself has no runtime deps)
240
+
241
+ ---
242
+
243
+ ## License
244
+
245
+ MIT — [Acceleration Guy](https://github.com/accelerationguy)
@@ -0,0 +1,184 @@
1
+ #!/usr/bin/env node
2
+
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+ const os = require('os');
6
+
7
+ // Colors
8
+ const green = '\x1b[32m';
9
+ const cyan = '\x1b[36m';
10
+ const yellow = '\x1b[33m';
11
+ const dim = '\x1b[2m';
12
+ const reset = '\x1b[0m';
13
+
14
+ // Get version from package.json
15
+ const pkg = require('../package.json');
16
+
17
+ const banner = `
18
+ ${green} ███████╗███████╗███████╗██████╗
19
+ ██╔════╝██╔════╝██╔════╝██╔══██╗
20
+ ███████╗█████╗ █████╗ ██║ ██║
21
+ ╚════██║██╔══╝ ██╔══╝ ██║ ██║
22
+ ███████║███████╗███████╗██████╔╝
23
+ ╚══════╝╚══════╝╚══════╝╚═════╝${reset}
24
+
25
+ Ignition ${dim}v${pkg.version}${reset}
26
+ Structured Evaluation & Engineering Design
27
+ `;
28
+
29
+ // Parse args
30
+ const args = process.argv.slice(2);
31
+ const hasHelp = args.includes('--help') || args.includes('-h');
32
+ const hasLocal = args.includes('--local') || args.includes('-l');
33
+
34
+ // Parse --config-dir argument
35
+ function parseConfigDirArg() {
36
+ const idx = args.findIndex(arg => arg === '--config-dir' || arg === '-c');
37
+ if (idx !== -1) {
38
+ const nextArg = args[idx + 1];
39
+ if (!nextArg || nextArg.startsWith('-')) {
40
+ console.error(` ${yellow}--config-dir requires a path argument${reset}`);
41
+ process.exit(1);
42
+ }
43
+ return nextArg;
44
+ }
45
+ const configDirArg = args.find(arg => arg.startsWith('--config-dir=') || arg.startsWith('-c='));
46
+ if (configDirArg) {
47
+ return configDirArg.split('=')[1];
48
+ }
49
+ return null;
50
+ }
51
+
52
+ /**
53
+ * Expand ~ to home directory
54
+ */
55
+ function expandTilde(filePath) {
56
+ if (filePath && filePath.startsWith('~/')) {
57
+ return path.join(os.homedir(), filePath.slice(2));
58
+ }
59
+ return filePath;
60
+ }
61
+
62
+ /**
63
+ * Recursively copy directory, skipping .drive/, .git/, node_modules/, bin/
64
+ */
65
+ function copyDir(srcDir, destDir, skipDirs = []) {
66
+ fs.mkdirSync(destDir, { recursive: true });
67
+ const entries = fs.readdirSync(srcDir, { withFileTypes: true });
68
+ for (const entry of entries) {
69
+ if (skipDirs.includes(entry.name)) continue;
70
+ const srcPath = path.join(srcDir, entry.name);
71
+ const destPath = path.join(destDir, entry.name);
72
+ if (entry.isDirectory()) {
73
+ copyDir(srcPath, destPath, skipDirs);
74
+ } else {
75
+ fs.copyFileSync(srcPath, destPath);
76
+ }
77
+ }
78
+ }
79
+
80
+ /**
81
+ * Count files recursively
82
+ */
83
+ function countFiles(dir, ext) {
84
+ let count = 0;
85
+ const entries = fs.readdirSync(dir, { withFileTypes: true });
86
+ for (const entry of entries) {
87
+ const fullPath = path.join(dir, entry.name);
88
+ if (entry.isDirectory()) {
89
+ count += countFiles(fullPath, ext);
90
+ } else if (!ext || entry.name.endsWith(ext)) {
91
+ count++;
92
+ }
93
+ }
94
+ return count;
95
+ }
96
+
97
+ console.log(banner);
98
+
99
+ // Show help
100
+ if (hasHelp) {
101
+ console.log(` ${yellow}Usage:${reset} npx @accel/ignition [options]
102
+
103
+ ${yellow}Options:${reset}
104
+ ${cyan}-l, --local${reset} Install to ./.claude/commands/ instead of global
105
+ ${cyan}-c, --config-dir <path>${reset} Specify custom Claude config directory
106
+ ${cyan}-h, --help${reset} Show this help message
107
+
108
+ ${yellow}Examples:${reset}
109
+ ${dim}# Install globally (default) — available in all workspaces${reset}
110
+ npx @accel/ignition
111
+
112
+ ${dim}# Install to current project only${reset}
113
+ npx @accel/ignition --local
114
+
115
+ ${yellow}What gets installed:${reset}
116
+ ${cyan}commands/ignition/${reset}
117
+ ignition.md Entry point (routing + persona)
118
+ tasks/ 5 task files (ideate, graduate, launch, status, add-type)
119
+ data/ 15 type-specific data files (5 types x 3 files)
120
+ templates/ 5 PLANNING.md output templates
121
+ checklists/ Planning quality gate
122
+ `);
123
+ process.exit(0);
124
+ }
125
+
126
+ // Determine install target
127
+ const explicitConfigDir = parseConfigDirArg();
128
+ const configDir = expandTilde(explicitConfigDir) || expandTilde(process.env.CLAUDE_CONFIG_DIR);
129
+ const globalDir = configDir || path.join(os.homedir(), '.claude');
130
+ const claudeDir = hasLocal ? path.join(process.cwd(), '.claude') : globalDir;
131
+ const seedDest = path.join(claudeDir, 'commands', 'ignition');
132
+
133
+ const locationLabel = hasLocal
134
+ ? seedDest.replace(process.cwd(), '.')
135
+ : seedDest.replace(os.homedir(), '~');
136
+
137
+ // Check if already installed
138
+ if (fs.existsSync(seedDest)) {
139
+ console.log(` ${yellow}Existing installation found at ${locationLabel}${reset}`);
140
+ console.log(` Updating...`);
141
+ fs.rmSync(seedDest, { recursive: true, force: true });
142
+ }
143
+
144
+ console.log(` Installing to ${cyan}${locationLabel}${reset}\n`);
145
+
146
+ // Copy skill files
147
+ const src = path.join(__dirname, '..');
148
+
149
+ // Copy entry point
150
+ fs.mkdirSync(seedDest, { recursive: true });
151
+ fs.copyFileSync(path.join(src, 'ignition.md'), path.join(seedDest, 'ignition.md'));
152
+ console.log(` ${green}+${reset} ignition.md ${dim}(entry point)${reset}`);
153
+
154
+ // Copy tasks
155
+ const tasksSrc = path.join(src, 'tasks');
156
+ const tasksDest = path.join(seedDest, 'tasks');
157
+ copyDir(tasksSrc, tasksDest);
158
+ const taskCount = countFiles(tasksSrc, '.md');
159
+ console.log(` ${green}+${reset} tasks/ ${dim}(${taskCount} task files)${reset}`);
160
+
161
+ // Copy data
162
+ const dataSrc = path.join(src, 'data');
163
+ const dataDest = path.join(seedDest, 'data');
164
+ copyDir(dataSrc, dataDest);
165
+ const dataCount = countFiles(dataSrc, '.md');
166
+ const typeCount = fs.readdirSync(dataSrc, { withFileTypes: true }).filter(e => e.isDirectory()).length;
167
+ console.log(` ${green}+${reset} data/ ${dim}(${typeCount} types, ${dataCount} files)${reset}`);
168
+
169
+ // Copy templates
170
+ const templatesSrc = path.join(src, 'templates');
171
+ const templatesDest = path.join(seedDest, 'templates');
172
+ copyDir(templatesSrc, templatesDest);
173
+ const templateCount = countFiles(templatesSrc, '.md');
174
+ console.log(` ${green}+${reset} templates/ ${dim}(${templateCount} planning templates)${reset}`);
175
+
176
+ // Copy checklists
177
+ const checklistsSrc = path.join(src, 'checklists');
178
+ const checklistsDest = path.join(seedDest, 'checklists');
179
+ copyDir(checklistsSrc, checklistsDest);
180
+ console.log(` ${green}+${reset} checklists/ ${dim}(planning quality gate)${reset}`);
181
+
182
+ console.log(`
183
+ ${green}Done!${reset} Open Claude Code and type ${cyan}/ignition${reset} to start.
184
+ `);
@@ -0,0 +1,55 @@
1
+ # Planning Quality Checklist
2
+
3
+ Quality gate for `/ignition graduate` and `/ignition launch`. Determines if a PLANNING.md is rich enough for clean graduation and headless Drive initialization.
4
+
5
+ ## Universal Checks (All Types)
6
+
7
+ - [ ] **Type metadata** present in header (Application, Workflow, Client, Utility, Campaign, or custom)
8
+ - [ ] **Problem statement** is specific — names the problem, the audience, and why it matters
9
+ - [ ] **Design decisions** documented — at least 1 resolved decision with rationale
10
+ - [ ] **Open questions** section exists (even if "None")
11
+ - [ ] **Next actions** defined — at least 1 concrete next step
12
+ - [ ] **Skill Loadout** noted — which ecosystem tools apply to this build
13
+
14
+ ## Type-Specific Checks
15
+
16
+ Reference `data/{type}/config.md` for the authority on required vs optional sections.
17
+
18
+ - [ ] **All required sections** (per config.md) have substantive content — not just headers or placeholders
19
+ - [ ] **Optional sections** either covered or explicitly marked as N/A
20
+ - [ ] **Section depth matches rigor** — tight types (utility) can be brief; deep types (application) need thorough coverage
21
+
22
+ ### Quick Reference
23
+
24
+ | Type | Required Sections | Rigor |
25
+ |------|------------------|-------|
26
+ | Application | 8 of 10 | deep — thorough coverage expected |
27
+ | Workflow | 6 of 8 | standard — balanced |
28
+ | Client | 6 of 7 | standard — business-focused |
29
+ | Utility | 6 of 6 | tight — all required, but brief |
30
+ | Campaign | 6 of 7 | creative — can be loose, but measurable goal required |
31
+
32
+ ## Drive-Readiness Checks (for /ignition launch)
33
+
34
+ These are only required if the user intends to run `/ignition launch` (graduate + Drive init). Skip for `/ignition graduate` alone.
35
+
36
+ - [ ] **Phase breakdown** exists with independently shippable milestones
37
+ - [ ] **Each phase** has build, testable, and outcome defined
38
+ - [ ] **Tech stack decisions** are resolved — no critical "TBD" items
39
+ - [ ] **Enough detail** that Drive can derive milestones, phases, and structure without re-asking questions
40
+
41
+ ## Assessment
42
+
43
+ | Result | Criteria | Action |
44
+ |--------|----------|--------|
45
+ | **Pass** | All universal checks + all required type-specific sections | Proceed with graduation |
46
+ | **Warn** | Missing optional sections or thin content in some areas | Note gaps, ask user if they want to flesh out or proceed |
47
+ | **Fail** | Missing required sections or no problem statement | Recommend returning to `/ignition` to complete ideation |
48
+
49
+ ## Usage
50
+
51
+ This checklist is referenced by:
52
+ - `tasks/graduate.md` — step `quality_check` (before creating app directory)
53
+ - `tasks/launch.md` — inherited via graduate delegation
54
+
55
+ It is NOT a scorecard with numbers. It's a qualitative assessment that the coach persona uses to decide whether to warn the user or proceed.
@@ -0,0 +1,21 @@
1
+ # Application — Configuration
2
+
3
+ | Setting | Value |
4
+ |---------|-------|
5
+ | Rigor | deep |
6
+ | Demeanor | Thorough and architectural — explore trade-offs, push for clarity on data model and deployment before moving on. Applications have the highest complexity ceiling, so don't rush. |
7
+ | Sections | 10 |
8
+
9
+ ## Required Sections
10
+ - Problem Statement
11
+ - Tech Stack
12
+ - Data Model
13
+ - API Surface
14
+ - Deployment Strategy
15
+ - Security Considerations
16
+ - UI/UX Needs
17
+ - Phase Breakdown
18
+
19
+ ## Optional Sections
20
+ - Integration Points
21
+ - Skill Loadout
@@ -0,0 +1,51 @@
1
+ # Application — Conversation Guide
2
+
3
+ ## Section 1: Problem Statement
4
+ **Explore:** What does this solve? Who's it for — just you, a team, the public? Why build it instead of buying something off the shelf? What's the pain point that makes this worth the effort?
5
+ **Suggest:** If the user is vague, try: "What's the one thing a user would do in their first 5 minutes?" If they're solving their own problem, that's valid — note it as "dogfooding" and move on.
6
+ **Depth:** required
7
+
8
+ ## Section 2: Tech Stack
9
+ **Explore:** Do you have a stack in mind, or are you exploring? What's the deployment target — local, cloud, edge? Any constraints from the team or existing infrastructure? Why this stack over alternatives?
10
+ **Suggest:** For solo builders: Next.js + SQLite is fast to ship. For teams: consider what everyone knows. If they mention unfamiliar tech, suggest `/drive:discover` for research before committing.
11
+ **Depth:** required
12
+
13
+ ## Section 3: Data Model
14
+ **Explore:** What are the core things this app tracks? How do they relate to each other? What's the most important entity — the one everything else connects to?
15
+ **Suggest:** Start with 3-5 entities max. Draw the relationships: "A User has many X, each X belongs to one Y." If it's getting complex, suggest starting with the minimum viable schema and evolving.
16
+ **Depth:** required
17
+
18
+ ## Section 4: API Surface
19
+ **Explore:** What endpoints does this need? Is there auth? Internal-only or public API? REST, GraphQL, or tRPC? What's the most critical endpoint — the one that delivers core value?
20
+ **Suggest:** For MVPs: REST is fastest to build. Auth: start with JWT or session-based, don't over-engineer. If they need real-time: consider SSE over WebSockets for simplicity.
21
+ **Depth:** required
22
+
23
+ ## Section 5: Deployment Strategy
24
+ **Explore:** Where does this run? Local dev setup, staging, production — what's the plan for each? Docker or bare metal? CI/CD pipeline needed?
25
+ **Suggest:** For solo projects: Railway or Vercel for zero-config deploys. For Docker: suggest a compose file early. If they need a database: managed > self-hosted for MVPs.
26
+ **Depth:** required
27
+
28
+ ## Section 6: Security Considerations
29
+ **Explore:** What's the auth model? What data is sensitive? Any compliance requirements (HIPAA, SOC2, GDPR)? What are the OWASP risks specific to THIS app?
30
+ **Suggest:** At minimum: input validation, parameterized queries, CSRF protection, rate limiting. If handling PII: encryption at rest. Don't over-engineer security for internal tools.
31
+ **Depth:** required
32
+
33
+ ## Section 7: UI/UX Needs
34
+ **Explore:** What does the user see? Key views/pages? Design system or freestyle? Mobile-responsive needed? Any real-time UI requirements (dashboards, notifications)?
35
+ **Suggest:** For MVPs: Tailwind + shadcn/ui gets you 80% there. If they have design ideas, suggest ui-ux-pro-max for implementation. If not, suggest starting with a wireframe conversation.
36
+ **Depth:** required
37
+
38
+ ## Section 8: Integration Points
39
+ **Explore:** What external systems does this talk to? APIs, webhooks, MCP servers, third-party services? What happens if an integration is down?
40
+ **Suggest:** List each integration with: what data flows, which direction, what auth is needed. For MCP servers: check if one already exists in the workspace before building new.
41
+ **Depth:** optional
42
+
43
+ ## Section 9: Phase Breakdown
44
+ **Explore:** What's the minimum slice that proves the concept? What comes after that? Can you ship something useful in 3-5 phases? What's the "it works" moment for each phase?
45
+ **Suggest:** Phase 1 should be the smallest thing that delivers value. Each phase should be independently testable. If they're planning more than 7 phases, the scope might be too big.
46
+ **Depth:** required
47
+
48
+ ## Section 10: Skill Loadout
49
+ **Explore:** Which ecosystem tools make sense for this build? Need code quality scanning? UI design help? Structured development workflow?
50
+ **Suggest:** Load skill-loadout.md recommendations. For most applications: Drive (required for managed build), Radar (recommended post-build audit), ui-ux-pro-max (if frontend-heavy).
51
+ **Depth:** optional
@@ -0,0 +1,11 @@
1
+ # Application — Skill Loadout
2
+
3
+ ## Recommended Tools
4
+
5
+ | Tool | Priority | Why |
6
+ |------|----------|-----|
7
+ | Drive | required | Structured milestones and phases for managed build — applications are too complex for ad-hoc development |
8
+ | Radar | recommended | Post-build security and quality audit — catches OWASP issues, scalability gaps |
9
+ | ui-ux-pro-max | recommended | Frontend design system, component patterns, responsive layouts — if the app has a UI |
10
+ | sonarqube | optional | Continuous code quality scanning — useful for larger codebases or team projects |
11
+ | use-railway | optional | If deploying to Railway — handles project creation, env vars, domains |
@@ -0,0 +1,18 @@
1
+ # Campaign — Configuration
2
+
3
+ | Setting | Value |
4
+ |---------|-------|
5
+ | Rigor | creative |
6
+ | Demeanor | Loose and generative — let ideas flow, explore angles, brainstorm freely. But always anchor back to the measurable goal. Campaigns are timeline-driven, not architecture-driven. |
7
+ | Sections | 7 |
8
+
9
+ ## Required Sections
10
+ - Strategy & Goal
11
+ - Audience
12
+ - Deliverables List
13
+ - Channels & Platforms
14
+ - Timeline
15
+ - Success Metrics
16
+
17
+ ## Optional Sections
18
+ - Skill Loadout