@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
+ # Specialized Flows
2
+
3
+ **Project:** {{project_name}}
4
+ **Created:** {{timestamp}}
5
+ **Last Updated:** {{timestamp}}
6
+
7
+ ---
8
+
9
+ ## Project-Level Dependencies
10
+
11
+ Skills and commands that apply to this project's work.
12
+
13
+ | Work Type | Skill/Command | Priority | When Required | Notes |
14
+ |-----------|---------------|----------|---------------|-------|
15
+ | {{work_type}} | {{/skill-name}} | required | {{trigger_condition}} | {{optional_notes}} |
16
+ | {{work_type}} | {{/skill-name}} | optional | {{trigger_condition}} | {{optional_notes}} |
17
+
18
+ **Priority Legend:**
19
+ - `required` - Gap documented if not invoked during UNIFY
20
+ - `optional` - Informational only, no gap logged
21
+
22
+ ---
23
+
24
+ ## Phase Overrides
25
+
26
+ Skills needed for specific phases beyond project-level defaults.
27
+
28
+ | Phase | Additional Skills | Notes |
29
+ |-------|-------------------|-------|
30
+ | {{phase_number}} | {{/skill:subcommand}} | {{why_needed}} |
31
+
32
+ ---
33
+
34
+ ## Templates & Assets
35
+
36
+ Reference templates, assets, or external resources for this project.
37
+
38
+ | Asset Type | Location | When Used |
39
+ |------------|----------|-----------|
40
+ | {{asset_type}} | {{path_or_url}} | {{trigger_condition}} |
41
+
42
+ ---
43
+
44
+ ## Verification Checklist
45
+
46
+ During UNIFY, confirm:
47
+ - [ ] Required skills were invoked for matching work types
48
+ - [ ] Gaps documented in STATE.md Deviations section
49
+ - [ ] Patterns updated if intentional deviation is now standard
50
+
51
+ ### Skill Audit Template
52
+
53
+ Use this during UNIFY to track invocations:
54
+
55
+ | Expected Skill | Invoked? | Gap? | Notes |
56
+ |----------------|----------|------|-------|
57
+ | {{/skill}} | ✓/○ | Yes/- | {{context}} |
58
+
59
+ ---
60
+
61
+ ## Amendment History
62
+
63
+ | Date | Change | Reason |
64
+ |------|--------|--------|
65
+ | {{timestamp}} | Initial creation | Project setup |
66
+
67
+ ---
68
+
69
+ *Generated by `/drive:flows` or `/drive:init`*
70
+ *Reference: @references/specialized-workflow-integration.md*
@@ -0,0 +1,210 @@
1
+ # STATE.md Template
2
+
3
+ Template for `.drive/STATE.md` — the project's living memory.
4
+
5
+ **Purpose:** Single source of truth for current position, accumulated context, and session continuity.
6
+
7
+ ---
8
+
9
+ ## File Template
10
+
11
+ ```markdown
12
+ # Project State
13
+
14
+ ## Project Reference
15
+
16
+ See: .drive/PROJECT.md (updated [YYYY-MM-DD])
17
+
18
+ **Core value:** [One-liner from PROJECT.md - the ONE thing that matters]
19
+ **Current focus:** [Current milestone and phase name]
20
+
21
+ ## Current Position
22
+
23
+ Milestone: [Name] ([version])
24
+ Phase: [X] of [Y] ([Phase Name])
25
+ Plan: [A] of [B] in current phase
26
+ Status: [Ready to plan | Planning | Approved | Applying | Unifying | Complete | Blocked]
27
+ Last activity: [YYYY-MM-DD HH:MM] — [What happened]
28
+
29
+ Progress:
30
+ - Milestone: [░░░░░░░░░░] 0%
31
+ - Phase: [░░░░░░░░░░] 0%
32
+
33
+ ## Loop Position
34
+
35
+ Current loop state:
36
+ ```
37
+ PLAN ──▶ APPLY ──▶ UNIFY
38
+ ◉ ○ ○ [Planning]
39
+ ✓ ◉ ○ [Applying]
40
+ ✓ ✓ ◉ [Unifying]
41
+ ✓ ✓ ✓ [Complete - ready for next PLAN]
42
+ ```
43
+
44
+ ## Performance Metrics
45
+
46
+ **Velocity:**
47
+ - Total plans completed: [N]
48
+ - Average duration: [X] min
49
+ - Total execution time: [X.X] hours
50
+
51
+ **By Phase:**
52
+
53
+ | Phase | Plans | Total Time | Avg/Plan |
54
+ |-------|-------|------------|----------|
55
+ | 01-[name] | 0/0 | - | - |
56
+
57
+ **Recent Trend:**
58
+ - Last 5 plans: [durations]
59
+ - Trend: [Improving | Stable | Degrading]
60
+
61
+ *Updated after each plan completion*
62
+
63
+ ## Accumulated Context
64
+
65
+ ### Decisions
66
+
67
+ Decisions logged via decision-logger. Recent decisions affecting current work:
68
+
69
+ | Decision | Phase | Impact |
70
+ |----------|-------|--------|
71
+ | [Decision summary] | [Phase X] | [Ongoing effect] |
72
+
73
+ ### Deferred Issues
74
+
75
+ Issues logged but not yet addressed:
76
+
77
+ | Issue | Origin | Effort | Revisit |
78
+ |-------|--------|--------|---------|
79
+ | [Brief description] | [Phase X] | [S/M/L] | [When to reconsider] |
80
+
81
+ ### Blockers/Concerns
82
+
83
+ Active blockers affecting progress:
84
+
85
+ | Blocker | Impact | Resolution Path |
86
+ |---------|--------|-----------------|
87
+ | [Description] | [What's blocked] | [How to resolve] |
88
+
89
+ ## Boundaries (Active)
90
+
91
+ Protected elements for current phase:
92
+
93
+ - [Protected file/pattern from current PLAN.md]
94
+ - [Another protected element]
95
+
96
+ ## Session Continuity
97
+
98
+ Last session: [YYYY-MM-DD HH:MM]
99
+ Stopped at: [Description of last completed action]
100
+ Next action: [What to do when resuming]
101
+ Resume context: [Key information needed to continue]
102
+
103
+ ---
104
+ *STATE.md — Updated after every significant action*
105
+ *Size target: <100 lines (digest, not archive)*
106
+ ```
107
+
108
+ ---
109
+
110
+ ## Section Specifications
111
+
112
+ ### Project Reference
113
+ **Purpose:** Pointer to PROJECT.md for full context.
114
+ **Contains:**
115
+ - Core value (one-liner from PROJECT.md)
116
+ - Current focus (milestone + phase)
117
+ - Last update date (triggers re-read if stale)
118
+
119
+ **Update:** When PROJECT.md changes or milestone shifts.
120
+
121
+ ### Current Position
122
+ **Purpose:** Where we are right now.
123
+ **Contains:**
124
+ - Milestone name and version
125
+ - Phase X of Y with name
126
+ - Plan A of B within phase
127
+ - Status (planning/applying/unifying/complete/blocked)
128
+ - Last activity timestamp and description
129
+ - Visual progress bars
130
+
131
+ **Update:** After every phase/plan state change.
132
+
133
+ ### Loop Position
134
+ **Purpose:** Visual indicator of Drive loop state.
135
+ **States:**
136
+ - Planning: PLAN active, APPLY/UNIFY pending
137
+ - Applying: PLAN complete, APPLY active, UNIFY pending
138
+ - Unifying: PLAN/APPLY complete, UNIFY active
139
+ - Complete: Full loop done, ready for next PLAN
140
+
141
+ **Update:** At each loop phase transition.
142
+
143
+ ### Performance Metrics
144
+ **Purpose:** Track velocity for patterns and estimation.
145
+ **Contains:**
146
+ - Aggregate stats (total plans, average duration)
147
+ - Per-phase breakdown
148
+ - Recent trend analysis
149
+
150
+ **Update:** After each plan completion.
151
+
152
+ ### Accumulated Context
153
+ **Purpose:** Digest of decisions, issues, blockers.
154
+
155
+ **Decisions:** Recent decisions affecting current work. Full log in decision-logger or PROJECT.md.
156
+
157
+ **Deferred Issues:** Items logged but not addressed. Include effort estimate and revisit trigger.
158
+
159
+ **Blockers:** Active obstacles requiring resolution.
160
+
161
+ **Update:** After UNIFY phase reconciliation.
162
+
163
+ ### Boundaries (Active)
164
+ **Purpose:** Quick reference to current phase protections.
165
+ **Contains:** Protected files/patterns from active PLAN.md.
166
+
167
+ **Update:** When entering new PLAN phase.
168
+
169
+ ### Session Continuity
170
+ **Purpose:** Enable instant session resumption.
171
+ **Contains:**
172
+ - Last session timestamp
173
+ - What was completed
174
+ - What to do next
175
+ - Key context needed
176
+
177
+ **Update:** At end of each session or significant pause.
178
+
179
+ ---
180
+
181
+ ## Size Constraint
182
+
183
+ **Target:** Under 100 lines.
184
+
185
+ STATE.md is a DIGEST, not an archive. If sections grow too large:
186
+ - Keep only 3-5 recent decisions (full log elsewhere)
187
+ - Reference issue tracker instead of listing all issues
188
+ - Keep only active blockers, remove resolved
189
+ - Summarize instead of detail
190
+
191
+ **Goal:** "Read once, know where we are" — if too long, that fails.
192
+
193
+ ---
194
+
195
+ ## Lifecycle
196
+
197
+ **Creation:** After ROADMAP.md created (during project init)
198
+ - Reference PROJECT.md (extract core value)
199
+ - Initialize empty sections
200
+ - Set position to "Phase 1 ready to plan"
201
+
202
+ **Reading:** First step of EVERY workflow
203
+ - Load before planning, applying, or unifying
204
+ - Provides instant context restoration
205
+
206
+ **Writing:** After every significant action
207
+ - After PLAN approval: Update status to "Approved"
208
+ - After APPLY completion: Update position, log duration
209
+ - After UNIFY: Update decisions, issues, blockers
210
+ - After session end: Update continuity section
@@ -0,0 +1,221 @@
1
+ # SUMMARY.md Template
2
+
3
+ Template for `.drive/phases/{phase-number}-{name}/{phase}-{plan}-SUMMARY.md` — plan completion documentation.
4
+
5
+ **Purpose:** Document what was built, decisions made, deviations from plan, and readiness for next phase.
6
+
7
+ ---
8
+
9
+ ## File Template
10
+
11
+ ```markdown
12
+ ---
13
+ phase: XX-name
14
+ plan: NN
15
+ subsystem: [primary category: auth, payments, ui, api, database, infra, testing]
16
+ tags: [searchable tech: jwt, stripe, react, postgres, prisma]
17
+
18
+ # Dependency graph
19
+ requires:
20
+ - phase: [prior phase this depends on]
21
+ provides: [what that phase built that this uses]
22
+ provides:
23
+ - [what this plan built/delivered]
24
+ - [another deliverable]
25
+ affects: [phase names or keywords that will need this context]
26
+
27
+ # Tech tracking
28
+ tech-stack:
29
+ added: [libraries/tools added]
30
+ patterns: [architectural patterns established]
31
+
32
+ key-files:
33
+ created: [important files created]
34
+ modified: [important files modified]
35
+
36
+ key-decisions:
37
+ - "Decision 1: [brief]"
38
+ - "Decision 2: [brief]"
39
+
40
+ patterns-established:
41
+ - "Pattern 1: [description]"
42
+ - "Pattern 2: [description]"
43
+
44
+ # Metrics
45
+ duration: Xmin
46
+ started: YYYY-MM-DDTHH:MM:SSZ
47
+ completed: YYYY-MM-DDTHH:MM:SSZ
48
+ ---
49
+
50
+ # Phase [X] Plan [Y]: [Name] Summary
51
+
52
+ **[Substantive one-liner describing outcome - what actually shipped]**
53
+
54
+ ## Performance
55
+
56
+ | Metric | Value |
57
+ |--------|-------|
58
+ | Duration | [time] |
59
+ | Started | [ISO timestamp] |
60
+ | Completed | [ISO timestamp] |
61
+ | Tasks | [N] completed |
62
+ | Files modified | [N] |
63
+
64
+ ## Acceptance Criteria Results
65
+
66
+ | Criterion | Status | Notes |
67
+ |-----------|--------|-------|
68
+ | AC-1: [Name] | Pass / Fail | [Details if needed] |
69
+ | AC-2: [Name] | Pass / Fail | [Details] |
70
+ | AC-3: [Name] | Pass / Fail | [Details] |
71
+
72
+ ## Accomplishments
73
+
74
+ - [Most important outcome - specific, substantive]
75
+ - [Second key accomplishment]
76
+ - [Third if applicable]
77
+
78
+ ## Task Commits
79
+
80
+ Each task committed atomically:
81
+
82
+ | Task | Commit | Type | Description |
83
+ |------|--------|------|-------------|
84
+ | Task 1: [name] | `abc123f` | feat | [What was done] |
85
+ | Task 2: [name] | `def456g` | feat | [What was done] |
86
+ | Task 3: [name] | `hij789k` | test | [What was done] |
87
+
88
+ Plan metadata: `lmn012o` (docs: complete plan)
89
+
90
+ ## Files Created/Modified
91
+
92
+ | File | Change | Purpose |
93
+ |------|--------|---------|
94
+ | `path/to/file.ts` | Created | [What it does] |
95
+ | `path/to/another.ts` | Modified | [What changed] |
96
+
97
+ ## Decisions Made
98
+
99
+ [Key decisions with brief rationale]
100
+
101
+ | Decision | Rationale | Impact |
102
+ |----------|-----------|--------|
103
+ | [What was decided] | [Why] | [Effect on future work] |
104
+
105
+ Or: "None - followed plan as specified"
106
+
107
+ ## Deviations from Plan
108
+
109
+ ### Summary
110
+
111
+ | Type | Count | Impact |
112
+ |------|-------|--------|
113
+ | Auto-fixed | [N] | [Brief assessment] |
114
+ | Scope additions | [N] | [Brief assessment] |
115
+ | Deferred | [N] | Logged to issues |
116
+
117
+ **Total impact:** [Brief assessment - e.g., "Essential fixes, no scope creep"]
118
+
119
+ ### Auto-fixed Issues
120
+
121
+ **1. [Category] [Brief description]**
122
+ - **Found during:** Task [N] ([task name])
123
+ - **Issue:** [What was wrong]
124
+ - **Fix:** [What was done]
125
+ - **Files:** [Affected files]
126
+ - **Verification:** [How verified]
127
+ - **Commit:** [hash] (part of task commit)
128
+
129
+ [Repeat for each auto-fix]
130
+
131
+ ### Deferred Items
132
+
133
+ Logged to issue tracker for future consideration:
134
+ - [Issue ID]: [Brief description] (discovered in Task [N])
135
+
136
+ Or: "None - plan executed exactly as written"
137
+
138
+ ## Issues Encountered
139
+
140
+ [Problems during execution and how resolved]
141
+
142
+ | Issue | Resolution |
143
+ |-------|------------|
144
+ | [Problem] | [How solved] |
145
+
146
+ Or: "None"
147
+
148
+ ## Next Phase Readiness
149
+
150
+ **Ready:**
151
+ - [What's ready for next phase]
152
+ - [Foundation established]
153
+
154
+ **Concerns:**
155
+ - [Potential issues for future phases]
156
+ - [Technical debt introduced]
157
+
158
+ **Blockers:**
159
+ - [Anything blocking next phase] or "None"
160
+
161
+ ---
162
+ *Phase: XX-name, Plan: NN*
163
+ *Completed: [YYYY-MM-DD]*
164
+ ```
165
+
166
+ ---
167
+
168
+ ## Section Specifications
169
+
170
+ ### Frontmatter
171
+ **Purpose:** Machine-readable metadata for automatic context assembly.
172
+
173
+ | Field | Purpose |
174
+ |-------|---------|
175
+ | `phase`, `plan` | Identification |
176
+ | `subsystem` | Primary categorization (auth, api, ui, etc.) |
177
+ | `tags` | Searchable tech keywords |
178
+ | `requires` | What prior phases this depended on |
179
+ | `provides` | What this plan delivers |
180
+ | `affects` | Future phases that need this context |
181
+ | `tech-stack` | Libraries added, patterns established |
182
+ | `key-files` | Important files for @context references |
183
+ | `key-decisions` | Quick-reference decisions (detail in body) |
184
+ | `patterns-established` | Conventions future phases should follow |
185
+ | `duration`, `started`, `completed` | Performance metrics |
186
+
187
+ ### One-liner Requirements
188
+
189
+ **Must be substantive:**
190
+
191
+ | Good | Bad |
192
+ |------|-----|
193
+ | "JWT auth with refresh rotation using jose library" | "Phase complete" |
194
+ | "Prisma schema with User, Session, Product models" | "Authentication implemented" |
195
+ | "Dashboard with real-time metrics via SSE" | "All tasks done" |
196
+
197
+ The one-liner should tell someone what actually shipped.
198
+
199
+ ### Acceptance Criteria Results
200
+ **Purpose:** Verify all AC from PLAN.md were met.
201
+ **Contains:** Each AC with pass/fail status and notes.
202
+ **Requirement:** All must pass for plan to be complete.
203
+
204
+ ### Deviations Section
205
+ **Purpose:** Document unplanned work and its handling.
206
+
207
+ **Auto-fixed:** Issues discovered and resolved during execution.
208
+ - Include: category, what was wrong, fix, verification
209
+ - Must be essential fixes, not scope creep
210
+
211
+ **Deferred:** Items logged for future consideration.
212
+ - Include: issue ID, brief description, origin task
213
+
214
+ **Note:** Separate from "Issues Encountered" which documents problems with planned work.
215
+
216
+ ### Next Phase Readiness
217
+ **Purpose:** Prepare context for next PLAN phase.
218
+
219
+ **Ready:** What's available for next phase to build on.
220
+ **Concerns:** Potential issues to watch for.
221
+ **Blockers:** Anything preventing next phase (usually "None").
@@ -0,0 +1,139 @@
1
+ # UAT Issues Template
2
+
3
+ Template for `.drive/phases/XX-name/{phase}-{plan}-UAT.md` — issues discovered during user acceptance testing.
4
+
5
+ **Purpose:** Capture problems found during verify-work workflow. Unlike global ISSUES.md (for deferred enhancements), this file tracks bugs and problems in specific delivered work.
6
+
7
+ **Location:** Same directory as the SUMMARY.md being tested.
8
+
9
+ ---
10
+
11
+ ## File Template
12
+
13
+ ```markdown
14
+ # UAT Issues: Phase [X] Plan [Y]
15
+
16
+ **Tested:** [date]
17
+ **Source:** [path to SUMMARY.md that was tested]
18
+ **Tester:** User via verify-work workflow
19
+
20
+ ## Open Issues
21
+
22
+ ### UAT-001: [Brief description]
23
+
24
+ **Discovered:** [date]
25
+ **Phase/Plan:** [XX]-[YY]
26
+ **Severity:** [Blocker/Major/Minor/Cosmetic]
27
+ **Feature:** [Which feature from the test checklist]
28
+ **Description:** [User's description of the problem]
29
+ **Expected:** [What should have happened]
30
+ **Actual:** [What actually happened]
31
+ **Repro:** [Steps to reproduce, if captured]
32
+
33
+ ### UAT-002: [Brief description]
34
+
35
+ ...
36
+
37
+ ## Resolved Issues
38
+
39
+ [Moved here after fix plan executes and fixes are verified]
40
+
41
+ ### UAT-001: [Brief description]
42
+ **Resolved:** [date] — Fixed in {phase}-{plan}-FIX.md
43
+ **Commit:** [hash]
44
+
45
+ ---
46
+
47
+ *Phase: XX-name*
48
+ *Plan: YY*
49
+ *Tested: [date]*
50
+ ```
51
+
52
+ ---
53
+
54
+ ## Severity Guide
55
+
56
+ | Severity | Definition | Example | Action |
57
+ |----------|------------|---------|--------|
58
+ | **Blocker** | Feature completely unusable | App crashes on button click | Stop, fix immediately |
59
+ | **Major** | Feature works but significant problem | Form submits but data not saved | Fix before shipping |
60
+ | **Minor** | Feature usable but has issues | Button text slightly cut off | Fix if time permits |
61
+ | **Cosmetic** | Visual only, no functional impact | Wrong shade of color | Log, fix later |
62
+
63
+ ---
64
+
65
+ ## UAT Numbering
66
+
67
+ - **Prefix:** `UAT-` (distinguishes from ISS- enhancement issues)
68
+ - **Scope:** Per-file numbering (UAT-001, UAT-002, etc. within each file)
69
+ - **No global numbering:** Each {phase}-{plan}-UAT.md has its own sequence
70
+
71
+ ---
72
+
73
+ ## Good Example
74
+
75
+ ```markdown
76
+ # UAT Issues: Phase 5 Plan 2
77
+
78
+ **Tested:** 2026-01-15
79
+ **Source:** .drive/phases/05-auth/05-02-SUMMARY.md
80
+ **Tester:** User via verify-work workflow
81
+
82
+ ## Open Issues
83
+
84
+ ### UAT-001: Login form doesn't show validation errors
85
+
86
+ **Discovered:** 2026-01-15
87
+ **Phase/Plan:** 05-02
88
+ **Severity:** Major
89
+ **Feature:** User login form
90
+ **Description:** When I enter an invalid email, nothing happens. No error message appears.
91
+ **Expected:** Red error message below email field saying "Invalid email format"
92
+ **Actual:** Field border turns red but no text explanation
93
+ **Repro:**
94
+ 1. Go to /login
95
+ 2. Enter "notanemail" in email field
96
+ 3. Click Login button
97
+
98
+ ### UAT-002: Password field allows paste
99
+
100
+ **Discovered:** 2026-01-15
101
+ **Phase/Plan:** 05-02
102
+ **Severity:** Cosmetic
103
+ **Feature:** User login form
104
+ **Description:** Can paste into password field. Minor UX inconsistency.
105
+ **Expected:** Paste disabled (matches signup form)
106
+ **Actual:** Paste works in login but not signup
107
+ **Repro:** Ctrl+V in password field
108
+
109
+ ## Resolved Issues
110
+
111
+ [None yet]
112
+
113
+ ---
114
+
115
+ *Phase: 05-auth*
116
+ *Plan: 02*
117
+ *Tested: 2026-01-15*
118
+ ```
119
+
120
+ ---
121
+
122
+ ## Workflow
123
+
124
+ 1. **verify-work workflow** runs against a SUMMARY.md
125
+ 2. User tests each feature from the plan's AC
126
+ 3. Issues found → create/update {phase}-{plan}-UAT.md
127
+ 4. If blockers exist → create FIX plan immediately
128
+ 5. If majors exist → create FIX plan before shipping
129
+ 6. After FIX plan executes → move issues to "Resolved" section
130
+ 7. File becomes historical record of what was found and fixed
131
+
132
+ ---
133
+
134
+ ## Difference from ISSUES.md
135
+
136
+ | File | Purpose | Content | Timing |
137
+ |------|---------|---------|--------|
138
+ | **ISSUES.md** | Deferred enhancements | Nice-to-haves discovered during APPLY | During development |
139
+ | **UAT-ISSUES.md** | Testing problems | Bugs found during verification | During UAT |