@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,254 @@
1
+ # Workflow Convention
2
+
3
+ ## Purpose
4
+
5
+ Workflows define **ORCHESTRATION** — step-by-step execution logic for Radar audit phases and utility processes. A workflow specifies *what happens*, *in what order*, *with which agents*, and *how sessions hand off context*.
6
+
7
+ Workflows are the operational backbone of Radar. They handle multi-session agent invocation, session boundary management, disagreement resolution sequencing, and artifact creation. Workflows do not analyze code, interpret signals, or render judgments — that is agent work. Workflows ensure agents are invoked correctly, receive the right context, produce output in the right format, and that phase transitions happen cleanly.
8
+
9
+ Radar uses approximately 12 workflow files: 8 for Core (Phases 0-5 + utilities) and 4 for Transform (Phases 6-8 + Drive handoff).
10
+
11
+ ## Location
12
+
13
+ ```
14
+ src/core/workflows/ (Core phase orchestration)
15
+ src/transform/workflows/ (Transform phase orchestration)
16
+ ```
17
+
18
+ ## Naming
19
+
20
+ **Pattern:**
21
+ - Phase workflows: `phase-{N}-{kebab-name}.md`
22
+ - Utility workflows: `{kebab-name}.md`
23
+
24
+ **Examples:**
25
+ - `phase-0-context.md`
26
+ - `phase-1-reconnaissance.md`
27
+ - `phase-2-domain-audits.md`
28
+ - `phase-3-cross-domain.md`
29
+ - `phase-4-severity-calibration.md`
30
+ - `phase-5-report.md`
31
+ - `session-handoff.md`
32
+ - `disagreement-resolution.md`
33
+
34
+ **Transform examples:**
35
+ - `phase-6-remediation.md`
36
+ - `phase-7-risk-validation.md`
37
+ - `phase-8-execution-planning.md`
38
+ - `drive-handoff.md`
39
+
40
+ ## Required Structure
41
+
42
+ Workflow files use **XML tags** (not YAML frontmatter, not markdown headers). This matches the workflow convention used in the Drive framework and provides clear structural boundaries for each section.
43
+
44
+ Workflows have no YAML frontmatter. They are loaded by explicit reference from commands and other workflows, not discovered by metadata scan.
45
+
46
+ ### Sections (All Required)
47
+
48
+ | Section | Tag | Purpose |
49
+ |---------|-----|---------|
50
+ | Purpose | `<purpose>` | One-sentence description of what this workflow does. |
51
+ | Phase Context | `<phase_context>` | Phase number, what this phase receives, which agents run, what it produces. |
52
+ | Required Input | `<required_input>` | `@` references to files and artifacts this workflow needs loaded. |
53
+ | Process | `<process>` | Ordered steps using `<step>` tags with named, prioritized instructions. |
54
+ | Output | `<output>` | What artifacts are created and where they go in `.radar/`. |
55
+ | Error Handling | `<error_handling>` | Failure scenarios and how the workflow responds. |
56
+
57
+ ### Step Structure
58
+
59
+ Steps within `<process>` use this format:
60
+
61
+ ```xml
62
+ <step name="{snake_case_name}" priority="{first|blocking|optional}">
63
+ [Detailed numbered instructions for this step]
64
+ </step>
65
+ ```
66
+
67
+ | Attribute | Required | Values | Description |
68
+ |-----------|----------|--------|-------------|
69
+ | `name` | yes | snake_case string | Unique step identifier within this workflow |
70
+ | `priority` | yes | `first`, `blocking`, `optional` | `first`: must execute before all others. `blocking`: must complete before next step. `optional`: can be skipped without invalidating the workflow. |
71
+
72
+ ## Cross-References
73
+
74
+ | Direction | What | How |
75
+ |-----------|------|-----|
76
+ | References | Agent manifests (`src/agents/`) | By agent ID for invocation |
77
+ | References | Schemas (`src/schemas/`) | For output validation |
78
+ | References | `.radar/` state files | For runtime state management |
79
+ | Referenced BY | Commands (`src/commands/`) | Delegation from user-facing entry points |
80
+ | Referenced BY | Other workflows | For sub-workflow invocation (e.g., disagreement-resolution called by phase-3) |
81
+
82
+ ## Example Skeleton
83
+
84
+ ````xml
85
+ <purpose>
86
+ [One sentence describing what this workflow does.
87
+ Example: "Executes parallel domain audits by invoking specialist agents against
88
+ their assigned domains with normalized tool signals as input."]
89
+ </purpose>
90
+
91
+ <phase_context>
92
+ Phase: [N] — [Phase Name]
93
+ Prior phase output: [What this phase receives from the previous phase.
94
+ Example: "Repository structure map, technology inventory, normalized
95
+ tool signals (.radar/signals/), STATE.md"]
96
+ Agents invoked: [Which agents run in this phase.
97
+ Example: "security-engineer, principal-engineer, sre, data-engineer,
98
+ api-designer (parallel-eligible agents run concurrently)"]
99
+ Output: [What this phase produces.
100
+ Example: "Per-agent finding sets (.radar/findings/{agent-id}.md),
101
+ disagreement records (.radar/disagreements/), updated STATE.md"]
102
+ </phase_context>
103
+
104
+ <required_input>
105
+ @.radar/STATE.md
106
+ @.radar/MANIFEST.md
107
+ @src/schemas/finding.md
108
+ @src/schemas/signal.md
109
+ @src/rules/epistemic-hygiene.md
110
+ [Additional @ references to required files]
111
+ </required_input>
112
+
113
+ <process>
114
+
115
+ <step name="validate_prerequisites" priority="first">
116
+ 1. Verify .radar/STATE.md exists and shows prior phase completed successfully.
117
+ 2. Verify all required signal files exist in .radar/signals/.
118
+ 3. Verify all agents listed in phase_context are defined in .radar/MANIFEST.md.
119
+ 4. If any prerequisite is missing, halt with error: "[prerequisite] not found.
120
+ Run phase [N-1] first."
121
+ </step>
122
+
123
+ <step name="prepare_agent_context" priority="blocking">
124
+ 1. For each agent invoked in this phase:
125
+ a. Load agent manifest from src/agents/{agent-id}.md.
126
+ b. Resolve all component references: persona, domains, tools, schemas, rules.
127
+ c. Collect normalized signals from .radar/signals/ matching the agent's tool list.
128
+ d. Collect findings from prior phases that reference the agent's domains.
129
+ 2. Bundle context into agent session input.
130
+ 3. Record agent invocation plan in .radar/STATE.md.
131
+ </step>
132
+
133
+ <step name="invoke_agents" priority="blocking">
134
+ 1. Identify parallel-eligible agents (those with `parallel_eligible: true`).
135
+ 2. Invoke parallel-eligible agents concurrently.
136
+ 3. Invoke remaining agents sequentially.
137
+ 4. For each agent invocation:
138
+ a. Provide: persona + domains + signals + schemas + rules.
139
+ b. Instruct agent to produce findings conforming to the finding schema.
140
+ c. Validate output against schema before accepting.
141
+ d. If validation fails, return to agent with specific field-level errors.
142
+ 5. Collect all agent outputs.
143
+ </step>
144
+
145
+ <step name="validate_outputs" priority="blocking">
146
+ 1. For each agent's finding set:
147
+ a. Validate every finding against src/schemas/finding.md.
148
+ b. Validate confidence ratings against src/schemas/confidence.md.
149
+ c. Check epistemic hygiene rules: evidence present, confidence justified,
150
+ severity reasoned.
151
+ 2. Flag findings that fail validation for agent revision.
152
+ 3. Record validated finding counts in .radar/STATE.md.
153
+ </step>
154
+
155
+ <step name="detect_disagreements" priority="blocking">
156
+ 1. Compare findings across agents for the same domains.
157
+ 2. Identify conflicts: same code area, different severity; same pattern,
158
+ different assessment; contradictory recommendations.
159
+ 3. For each disagreement:
160
+ a. Create disagreement record conforming to src/schemas/disagreement.md.
161
+ b. Write to .radar/disagreements/{disagreement-id}.md.
162
+ 4. If disagreements exist, queue disagreement-resolution workflow.
163
+ </step>
164
+
165
+ <step name="update_state" priority="blocking">
166
+ 1. Update .radar/STATE.md with:
167
+ - Phase [N] completion status.
168
+ - Finding counts by agent and domain.
169
+ - Disagreement count and resolution status.
170
+ - Timestamp.
171
+ 2. Write finding files to .radar/findings/{agent-id}.md.
172
+ </step>
173
+
174
+ </process>
175
+
176
+ <output>
177
+ Artifacts created:
178
+ - .radar/findings/{agent-id}.md — Per-agent finding sets (one file per agent)
179
+ - .radar/disagreements/{disagreement-id}.md — Disagreement records (if any)
180
+ - .radar/STATE.md — Updated with phase completion and metrics
181
+
182
+ All output files must conform to their respective schemas.
183
+ </output>
184
+
185
+ <error_handling>
186
+ - **Missing prerequisites:** Halt immediately. Display which prerequisite is missing
187
+ and which prior phase must be run.
188
+ - **Agent invocation failure:** Log failure, skip agent, continue with remaining agents.
189
+ Record skipped agent in STATE.md. Warn user that coverage is incomplete.
190
+ - **Schema validation failure:** Return finding to agent with field-level errors.
191
+ Allow up to 2 retry attempts. On third failure, log finding as "unvalidated"
192
+ and flag for manual review.
193
+ - **Session timeout:** Save partial state to .radar/STATE.md with status "interrupted".
194
+ Allow resume from last completed step via session-handoff workflow.
195
+ - **All agents fail:** Halt phase. Record failure in STATE.md. Do not proceed to
196
+ next phase.
197
+ </error_handling>
198
+ ````
199
+
200
+ ## Transform Workflow Types
201
+
202
+ Transform workflows orchestrate Phases 6-8 and the Drive handoff. They follow the same structural conventions as Core workflows (XML tags, step structure, error handling) but with Transform-specific concerns.
203
+
204
+ **Phase 6 — Remediation Synthesis Workflow:**
205
+ - Invokes: Remediation Architect, then Pedagogy Agent (sequential)
206
+ - Input: Complete `.radar/` Layer A record
207
+ - Steps: (1) Load all findings grouped by root cause, (2) Invoke Remediation Architect to produce playbooks at all 4 transformation layers, (3) Invoke Pedagogy Agent to enrich with educational context, (4) Classify each playbook by intervention level, (5) Validate all playbooks against playbook schema
208
+ - Output: `remediation/playbooks/`, `remediation/patterns/`, `remediation/REMEDIATION-SUMMARY.md`
209
+ - Error handling: If a finding cannot be remediated (insufficient confidence, unclear root cause), record as "unremediated" with reason
210
+
211
+ **Phase 7 — Change Risk Validation Workflow:**
212
+ - Invokes: Change Risk Modeler, then Guardrail Generator (sequential)
213
+ - Input: Phase 6 playbooks + codebase structure + git history + test coverage
214
+ - Steps: (1) Score every proposed change across 4 risk dimensions, (2) Flag changes exceeding risk thresholds for intervention level downgrade, (3) Invoke Guardrail Generator to produce project rules, (4) Establish final risk-adjusted priority ordering
215
+ - Output: `execution/risk-scores.yaml`, `remediation/guardrails/`
216
+ - Error handling: If risk scoring fails for a change, default to maximum risk and flag for human review
217
+
218
+ **Phase 8 — Execution Planning Workflow:**
219
+ - Invokes: Execution Validator
220
+ - Input: Risk-scored change plan from Phase 7
221
+ - Steps: (1) Define verification steps for every proposed change, (2) Build dependency graph, (3) Generate Drive project artifacts (PROJECT.md, ROADMAP.md, phased plans), (4) Embed risk metadata and intervention levels in Drive tasks, (5) Validate Drive project structure
222
+ - Output: `execution/change-graph.yaml`, `execution/verification-plan.md`, `execution/drive-project/`
223
+ - Error handling: If Drive project generation fails, produce a manual remediation plan as fallback
224
+
225
+ **Drive Handoff Workflow:**
226
+ - Purpose: Finalize Transform output and prepare for handoff to user's AI assistant
227
+ - Steps: (1) Validate all Layer B and C artifacts exist and are internally consistent, (2) Generate handoff summary, (3) Archive Transform state, (4) Present Drive project to user
228
+ - Output: Handoff summary document, validated Drive project
229
+ - This is the terminal workflow — after this, Radar's role is complete
230
+
231
+ ### Drive Handoff Specification
232
+
233
+ A Layer C Drive project must contain:
234
+
235
+ | Artifact | Required | Description |
236
+ |----------|----------|-------------|
237
+ | `PROJECT.md` | yes | Project definition with Radar audit reference, target codebase, remediation scope |
238
+ | `ROADMAP.md` | yes | Phased plan with dependency ordering, phase descriptions, verification gates |
239
+ | Phase plans | yes | Per-phase PLAN.md with tasks, acceptance criteria, risk metadata per task |
240
+ | Risk metadata per task | yes | Intervention level, change risk scores, finding confidence, verification plan ref |
241
+ | Verification gates per phase | yes | Pre-change, post-change, regression, and rollback criteria |
242
+
243
+ ## Anti-Patterns
244
+
245
+ | Anti-Pattern | Why It's Wrong |
246
+ |--------------|----------------|
247
+ | Embedding domain knowledge | Workflows orchestrate; they do not analyze. "Check for SQL injection in the user input handlers" is domain knowledge that belongs in `src/domains/`. Workflows invoke agents who apply domain knowledge. |
248
+ | Embedding persona behavior | Workflows invoke agents; they do not define how agents think. "Apply an attacker mindset to this step" is persona content that belongs in `src/personas/`. Workflows specify *which* agent to invoke, not *how* it should reason. |
249
+ | Vague steps | "Analyze the codebase" is not a workflow step. Workflow steps must be specific and mechanical: load these files, invoke this agent, validate against this schema, write to this path. If a step requires judgment, it should be delegated to an agent, not described vaguely. |
250
+ | Missing session handoff specs | Multi-session workflows must explicitly define what passes between sessions. What state is persisted? What context is reloaded? What is lost? Without handoff specs, session boundaries become data loss boundaries. |
251
+ | Hardcoded agent lists | Workflows should reference agents via the manifest or phase configuration, not hardcode names. "Invoke security-engineer, then principal-engineer" breaks when agents are added or removed. Reference the set of agents assigned to this phase. |
252
+ | Missing error handling | Every workflow step that can fail must have a defined failure response. "If step fails, stop" is insufficient. What state is saved? Can the user resume? What diagnostic information is provided? |
253
+ | Transform workflow without safety checks | Every Transform workflow must validate intervention levels and check risk thresholds before producing output. A workflow that generates remediation without checking confidence gating is unsafe. |
254
+ | Drive handoff without verification | The Drive project must be validated before handoff. Missing verification gates, incomplete risk metadata, or unclassified intervention levels make the handoff unreliable. |
@@ -0,0 +1,72 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 380">
2
+ <defs>
3
+ <linearGradient id="bg" x1="0" y1="0" x2="0" y2="1">
4
+ <stop offset="0%" stop-color="#1a1b26"/>
5
+ <stop offset="100%" stop-color="#16161e"/>
6
+ </linearGradient>
7
+ <linearGradient id="titlebar" x1="0" y1="0" x2="0" y2="1">
8
+ <stop offset="0%" stop-color="#2a2b3d"/>
9
+ <stop offset="100%" stop-color="#24253a"/>
10
+ </linearGradient>
11
+ </defs>
12
+
13
+ <!-- Window -->
14
+ <rect width="800" height="380" rx="10" fill="url(#bg)"/>
15
+
16
+ <!-- Title bar -->
17
+ <rect width="800" height="36" rx="10" fill="url(#titlebar)"/>
18
+ <rect y="26" width="800" height="10" fill="url(#titlebar)"/>
19
+
20
+ <!-- Window buttons -->
21
+ <circle cx="20" cy="18" r="6" fill="#ff5f57"/>
22
+ <circle cx="40" cy="18" r="6" fill="#febc2e"/>
23
+ <circle cx="60" cy="18" r="6" fill="#28c840"/>
24
+
25
+ <!-- Title text -->
26
+ <text x="400" y="23" text-anchor="middle" fill="#787c99" font-family="SF Mono, Monaco, Consolas, monospace" font-size="13">Radar — Codebase Audit System</text>
27
+
28
+ <!-- Terminal content -->
29
+ <g font-family="SF Mono, Monaco, Consolas, monospace" font-size="14">
30
+
31
+ <!-- Line 1: prompt + command -->
32
+ <text x="20" y="65" fill="#7aa2f7">$</text>
33
+ <text x="35" y="65" fill="#c0caf5">/radar:audit</text>
34
+
35
+ <!-- Line 2: blank -->
36
+
37
+ <!-- Radar title -->
38
+ <text x="20" y="120" fill="#bb9af7" font-size="48" font-weight="bold" letter-spacing="12">Radar</text>
39
+
40
+ <!-- Line: tagline -->
41
+ <text x="20" y="188" fill="#565f89" font-size="12">Automated Epistemic Governance &amp; Intelligence System</text>
42
+
43
+ <!-- Blank line -->
44
+
45
+ <!-- Phase output -->
46
+ <text x="20" y="215" fill="#9ece6a">✓</text>
47
+ <text x="38" y="215" fill="#c0caf5">Phase 0 — Context &amp; Threat Modeling</text>
48
+ <text x="380" y="215" fill="#565f89">complete</text>
49
+
50
+ <text x="20" y="237" fill="#9ece6a">✓</text>
51
+ <text x="38" y="237" fill="#c0caf5">Phase 1 — Automated Signal Gathering</text>
52
+ <text x="380" y="237" fill="#565f89">6 signal dimensions</text>
53
+
54
+ <text x="20" y="259" fill="#9ece6a">✓</text>
55
+ <text x="38" y="259" fill="#c0caf5">Phase 2 — Deep Domain Audits</text>
56
+ <text x="380" y="259" fill="#565f89">14 domains, 12 agents</text>
57
+
58
+ <text x="20" y="281" fill="#e0af68">▸</text>
59
+ <text x="38" y="281" fill="#7aa2f7">Phase 3 — Change Risk &amp; Reality Gap</text>
60
+ <text x="380" y="281" fill="#e0af68">in progress...</text>
61
+
62
+ <text x="20" y="303" fill="#565f89">○</text>
63
+ <text x="38" y="303" fill="#565f89">Phase 4 — Adversarial Review</text>
64
+
65
+ <text x="20" y="325" fill="#565f89">○</text>
66
+ <text x="38" y="325" fill="#565f89">Phase 5 — Final Synthesis</text>
67
+
68
+ <!-- Status bar -->
69
+ <text x="20" y="358" fill="#565f89" font-size="12">Findings: 23 | Agents: 12/12 | Confidence: High | Session: 3 of ~5</text>
70
+
71
+ </g>
72
+ </svg>
@@ -0,0 +1,183 @@
1
+ # Convention Compliance Report
2
+
3
+ **Date:** 2026-02-19
4
+ **Scope:** All 90 Radar spec files validated against 8 component type conventions (docs/standards/)
5
+ **Validator:** Phase 8 End-to-End Validation (08-01)
6
+
7
+ ## Executive Summary
8
+
9
+ **90/90 files pass convention compliance.** All required frontmatter fields present, all required sections present, all structural patterns followed. One cosmetic inconsistency noted (non-blocking).
10
+
11
+ ## Results by Component Type
12
+
13
+ ### Domains (14 files) — 14/14 PASS
14
+
15
+ | File | Frontmatter | Sections (8) | 1:1 Mapping | Result |
16
+ |------|-------------|-------------|-------------|--------|
17
+ | 00-context.md | PASS | PASS | 6:6 | PASS |
18
+ | 01-architecture.md | PASS | PASS | 8:8 | PASS |
19
+ | 02-data.md | PASS | PASS | 7:7 | PASS |
20
+ | 03-correctness.md | PASS | PASS | 7:7 | PASS |
21
+ | 04-security.md | PASS | PASS | 8:8 | PASS |
22
+ | 05-compliance.md | PASS | PASS | 7:7 | PASS |
23
+ | 06-testing.md | PASS | PASS | 7:7 | PASS |
24
+ | 07-reliability.md | PASS | PASS | 8:8 | PASS |
25
+ | 08-performance.md | PASS | PASS | 8:8 | PASS |
26
+ | 09-maintainability.md | PASS | PASS | 8:8 | PASS |
27
+ | 10-operability.md | PASS | PASS | 8:8 | PASS |
28
+ | 11-change-risk.md | PASS | PASS | 7:7 | PASS |
29
+ | 12-team-risk.md | PASS | PASS | 7:7 | PASS |
30
+ | 13-risk-synthesis.md | PASS | PASS | 6:6 | PASS |
31
+
32
+ **Convention checks:** id (domain-{DD}), number (two-digit string), name, owner_agents. 8 sections in order: Overview, Audit Questions, Failure Patterns, Best Practice Patterns, Red Flags, Tool Affinities, Standards & Frameworks, Metrics. Strict 1:1 failure/best-practice mapping verified.
33
+
34
+ **Total failure/best-practice pairs:** 104 (range: 6-8 per domain)
35
+
36
+ ### Rules (5 files) — 5/5 PASS
37
+
38
+ | File | Frontmatter | Sections (4) | Result |
39
+ |------|-------------|-------------|--------|
40
+ | epistemic-hygiene.md | PASS | PASS | PASS |
41
+ | disagreement-protocol.md | PASS | PASS | PASS |
42
+ | agent-boundaries.md | PASS | PASS | PASS |
43
+ | safety-governance.md | PASS | PASS | PASS |
44
+ | change-risk-rules.md | PASS | PASS | PASS |
45
+
46
+ **Convention checks:** id, name, scope, priority (all are `critical`). Sections: Purpose, Rules, DO, DON'T.
47
+
48
+ ### Schemas (9 files) — 9/9 PASS
49
+
50
+ | File | Frontmatter | Sections (5) | Result |
51
+ |------|-------------|-------------|--------|
52
+ | confidence.md | PASS | PASS | PASS |
53
+ | disagreement.md | PASS | PASS | PASS |
54
+ | finding.md | PASS | PASS | PASS |
55
+ | report-section.md | PASS | PASS | PASS |
56
+ | signal.md | PASS | PASS | PASS |
57
+ | change-risk.md | PASS | PASS | PASS |
58
+ | intervention-level.md | PASS | PASS | PASS |
59
+ | playbook.md | PASS | PASS | PASS |
60
+ | verification-plan.md | PASS | PASS | PASS |
61
+
62
+ **Convention checks:** id, name, version (all 1.0.0), used_by. Sections: Purpose, Template, Field Reference, Validation Rules, Examples.
63
+
64
+ ### Tools (8 files) — 8/8 PASS
65
+
66
+ | File | Frontmatter | Sections (6) | Result |
67
+ |------|-------------|-------------|--------|
68
+ | sonarqube.md | PASS | PASS | PASS |
69
+ | semgrep.md | PASS | PASS | PASS |
70
+ | trivy.md | PASS | PASS | PASS |
71
+ | gitleaks.md | PASS | PASS | PASS |
72
+ | checkov.md | PASS | PASS | PASS |
73
+ | syft.md | PASS | PASS | PASS |
74
+ | grype.md | PASS | PASS | PASS |
75
+ | git-history.md | PASS | PASS | PASS |
76
+
77
+ **Convention checks:** id, name, type (valid enum), domains_fed, install_required, install_command (conditional). Sections: Purpose, Configuration, Execution, Output Format, Normalization, Limitations.
78
+
79
+ **Cosmetic note:** sonarqube.md has an extra `# SonarQube Tool Adapter` heading before Purpose section — absent from other tool files. Not a convention violation.
80
+
81
+ ### Personas (17 files) — 17/17 PASS
82
+
83
+ | File | Frontmatter | XML Sections (8) | Result |
84
+ |------|-------------|------------------|--------|
85
+ | architect.md | PASS | PASS | PASS |
86
+ | compliance-officer.md | PASS | PASS | PASS |
87
+ | data-engineer.md | PASS | PASS | PASS |
88
+ | devils-advocate.md | PASS | PASS | PASS |
89
+ | performance-engineer.md | PASS | PASS | PASS |
90
+ | principal-engineer.md | PASS | PASS | PASS |
91
+ | reality-gap-analyst.md | PASS | PASS | PASS |
92
+ | security-engineer.md | PASS | PASS | PASS |
93
+ | senior-app-engineer.md | PASS | PASS | PASS |
94
+ | sre.md | PASS | PASS | PASS |
95
+ | staff-engineer.md | PASS | PASS | PASS |
96
+ | test-engineer.md | PASS | PASS | PASS |
97
+ | change-risk-modeler.md | PASS | PASS | PASS |
98
+ | execution-validator.md | PASS | PASS | PASS |
99
+ | guardrail-generator.md | PASS | PASS | PASS |
100
+ | pedagogy-agent.md | PASS | PASS | PASS |
101
+ | remediation-architect.md | PASS | PASS | PASS |
102
+
103
+ **Convention checks:** id, name, role, active_phases. XML sections: identity, mental_models, risk_philosophy, thinking_style, triggers, argumentation, confidence_calibration, constraints.
104
+
105
+ ### Agents (17 files) — 17/17 PASS
106
+
107
+ | File | Frontmatter (9 fields) | Body Sections (2) | Result |
108
+ |------|------------------------|-------------------|--------|
109
+ | architect.md | PASS | PASS | PASS |
110
+ | compliance-officer.md | PASS | PASS | PASS |
111
+ | data-engineer.md | PASS | PASS | PASS |
112
+ | devils-advocate.md | PASS | PASS | PASS |
113
+ | performance-engineer.md | PASS | PASS | PASS |
114
+ | principal-engineer.md | PASS | PASS | PASS |
115
+ | reality-gap-analyst.md | PASS | PASS | PASS |
116
+ | security-engineer.md | PASS | PASS | PASS |
117
+ | senior-app-engineer.md | PASS | PASS | PASS |
118
+ | sre.md | PASS | PASS | PASS |
119
+ | staff-engineer.md | PASS | PASS | PASS |
120
+ | test-engineer.md | PASS | PASS | PASS |
121
+ | change-risk-modeler.md | PASS | PASS | PASS |
122
+ | execution-validator.md | PASS | PASS | PASS |
123
+ | guardrail-generator.md | PASS | PASS | PASS |
124
+ | pedagogy-agent.md | PASS | PASS | PASS |
125
+ | remediation-architect.md | PASS | PASS | PASS |
126
+
127
+ **Convention checks:** id, name, persona, domains, tools, schemas (output/confidence/signal_input), rules, active_phases, parallel_eligible. Sections: Assembly Notes, Session Context.
128
+
129
+ **Note:** Transform agents add `layer_a_input` to schemas — consistent extension, not a violation.
130
+
131
+ ### Workflows (12 files) — 12/12 PASS
132
+
133
+ | File | XML-only | Sections (6) | Named Steps | Result |
134
+ |------|----------|-------------|-------------|--------|
135
+ | phase-0-context.md | PASS | PASS | PASS | PASS |
136
+ | phase-1-reconnaissance.md | PASS | PASS | PASS | PASS |
137
+ | phase-2-domain-audits.md | PASS | PASS | PASS | PASS |
138
+ | phase-3-cross-domain.md | PASS | PASS | PASS | PASS |
139
+ | phase-4-adversarial-review.md | PASS | PASS | PASS | PASS |
140
+ | phase-5-report.md | PASS | PASS | PASS | PASS |
141
+ | session-handoff.md | PASS | PASS | PASS | PASS |
142
+ | disagreement-resolution.md | PASS | PASS | PASS | PASS |
143
+ | phase-6-remediation.md | PASS | PASS | PASS | PASS |
144
+ | phase-7-risk-validation.md | PASS | PASS | PASS | PASS |
145
+ | phase-8-execution-planning.md | PASS | PASS | PASS | PASS |
146
+ | transform-safety.md | PASS | PASS | PASS | PASS |
147
+
148
+ **Convention checks:** No YAML frontmatter. XML sections: purpose, phase_context, required_input, process, output, error_handling. All `<output>` and `<error_handling>` are properly structured as sibling elements. Process steps have name and priority attributes.
149
+
150
+ ### Commands (8 files) — 8/8 PASS
151
+
152
+ | File | Frontmatter | XML Sections (5) | Result |
153
+ |------|-------------|------------------|--------|
154
+ | audit.md | PASS | PASS | PASS |
155
+ | resume.md | PASS | PASS | PASS |
156
+ | status.md | PASS | PASS | PASS |
157
+ | report.md | PASS | PASS | PASS |
158
+ | transform.md | PASS | PASS | PASS |
159
+ | remediate.md | PASS | PASS | PASS |
160
+ | playbook.md | PASS | PASS | PASS |
161
+ | guardrails.md | PASS | PASS | PASS |
162
+
163
+ **Convention checks:** name (radar:{kebab}), description, argument-hint (optional). XML sections: objective, execution_context, context, process, success_criteria.
164
+
165
+ ## Summary
166
+
167
+ | Component Type | Files | Passed | Failed | Blockers | Warnings | Cosmetic |
168
+ |---------------|-------|--------|--------|----------|----------|----------|
169
+ | Domains | 14 | 14 | 0 | 0 | 0 | 0 |
170
+ | Rules | 5 | 5 | 0 | 0 | 0 | 0 |
171
+ | Schemas | 9 | 9 | 0 | 0 | 0 | 0 |
172
+ | Tools | 8 | 8 | 0 | 0 | 0 | 1 |
173
+ | Personas | 17 | 17 | 0 | 0 | 0 | 0 |
174
+ | Agents | 17 | 17 | 0 | 0 | 0 | 0 |
175
+ | Workflows | 12 | 12 | 0 | 0 | 0 | 0 |
176
+ | Commands | 8 | 8 | 0 | 0 | 0 | 0 |
177
+ | **TOTAL** | **90** | **90** | **0** | **0** | **0** | **1** |
178
+
179
+ **Cosmetic issues (1):**
180
+ - sonarqube.md: extra `# SonarQube Tool Adapter` heading not present in other tool files
181
+
182
+ ---
183
+ *Generated: 2026-02-19 — Phase 8 End-to-End Validation*