@ngocsangairvds/vsaf 3.2.16 → 4.0.1

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 (2337) hide show
  1. package/README.md +638 -302
  2. package/package.json +51 -13
  3. package/packages/cli/dist/commands/doctor.d.ts +9 -0
  4. package/packages/cli/dist/commands/doctor.d.ts.map +1 -0
  5. package/packages/cli/dist/commands/doctor.js +49 -0
  6. package/packages/cli/dist/commands/doctor.js.map +1 -0
  7. package/packages/cli/dist/commands/init.d.ts +6 -0
  8. package/packages/cli/dist/commands/init.d.ts.map +1 -0
  9. package/packages/cli/dist/commands/init.js +66 -0
  10. package/packages/cli/dist/commands/init.js.map +1 -0
  11. package/packages/cli/dist/commands/install.d.ts +38 -0
  12. package/packages/cli/dist/commands/install.d.ts.map +1 -0
  13. package/packages/cli/dist/commands/install.js +246 -0
  14. package/packages/cli/dist/commands/install.js.map +1 -0
  15. package/packages/cli/dist/commands/list.d.ts +7 -0
  16. package/packages/cli/dist/commands/list.d.ts.map +1 -0
  17. package/packages/cli/dist/commands/list.js +40 -0
  18. package/packages/cli/dist/commands/list.js.map +1 -0
  19. package/packages/cli/dist/commands/mcp.d.ts +2 -0
  20. package/packages/cli/dist/commands/mcp.d.ts.map +1 -0
  21. package/packages/cli/dist/commands/mcp.js +8 -0
  22. package/packages/cli/dist/commands/mcp.js.map +1 -0
  23. package/packages/cli/dist/commands/run.d.ts +13 -0
  24. package/packages/cli/dist/commands/run.d.ts.map +1 -0
  25. package/packages/cli/dist/commands/run.js +90 -0
  26. package/packages/cli/dist/commands/run.js.map +1 -0
  27. package/packages/cli/dist/commands/serve.d.ts +6 -0
  28. package/packages/cli/dist/commands/serve.d.ts.map +1 -0
  29. package/packages/cli/dist/commands/serve.js +28 -0
  30. package/packages/cli/dist/commands/serve.js.map +1 -0
  31. package/packages/cli/dist/commands/skill.d.ts +48 -0
  32. package/packages/cli/dist/commands/skill.d.ts.map +1 -0
  33. package/packages/cli/dist/commands/skill.js +283 -0
  34. package/packages/cli/dist/commands/skill.js.map +1 -0
  35. package/packages/cli/dist/commands/status.d.ts +4 -0
  36. package/packages/cli/dist/commands/status.d.ts.map +1 -0
  37. package/packages/cli/dist/commands/status.js +21 -0
  38. package/packages/cli/dist/commands/status.js.map +1 -0
  39. package/packages/cli/dist/index.d.ts +3 -0
  40. package/packages/cli/dist/index.d.ts.map +1 -0
  41. package/packages/cli/dist/index.js +218 -0
  42. package/packages/cli/dist/index.js.map +1 -0
  43. package/packages/cli/dist/mcp/server.d.ts +40 -0
  44. package/packages/cli/dist/mcp/server.d.ts.map +1 -0
  45. package/packages/cli/dist/mcp/server.js +219 -0
  46. package/packages/cli/dist/mcp/server.js.map +1 -0
  47. package/packages/cli/dist/server/app.d.ts +8 -0
  48. package/packages/cli/dist/server/app.d.ts.map +1 -0
  49. package/packages/cli/dist/server/app.js +29 -0
  50. package/packages/cli/dist/server/app.js.map +1 -0
  51. package/packages/cli/dist/server/routes/health.d.ts +3 -0
  52. package/packages/cli/dist/server/routes/health.d.ts.map +1 -0
  53. package/packages/cli/dist/server/routes/health.js +13 -0
  54. package/packages/cli/dist/server/routes/health.js.map +1 -0
  55. package/packages/cli/dist/server/routes/runs.d.ts +9 -0
  56. package/packages/cli/dist/server/routes/runs.d.ts.map +1 -0
  57. package/packages/cli/dist/server/routes/runs.js +57 -0
  58. package/packages/cli/dist/server/routes/runs.js.map +1 -0
  59. package/packages/cli/dist/server/routes/workflows.d.ts +5 -0
  60. package/packages/cli/dist/server/routes/workflows.d.ts.map +1 -0
  61. package/packages/cli/dist/server/routes/workflows.js +56 -0
  62. package/packages/cli/dist/server/routes/workflows.js.map +1 -0
  63. package/packages/cli/dist/server/services/execution-manager.d.ts +15 -0
  64. package/packages/cli/dist/server/services/execution-manager.d.ts.map +1 -0
  65. package/packages/cli/dist/server/services/execution-manager.js +78 -0
  66. package/packages/cli/dist/server/services/execution-manager.js.map +1 -0
  67. package/packages/cli/dist/server/services/sse-manager.d.ts +9 -0
  68. package/packages/cli/dist/server/services/sse-manager.d.ts.map +1 -0
  69. package/packages/cli/dist/server/services/sse-manager.js +41 -0
  70. package/packages/cli/dist/server/services/sse-manager.js.map +1 -0
  71. package/packages/cli/dist/server/static.d.ts +3 -0
  72. package/packages/cli/dist/server/static.d.ts.map +1 -0
  73. package/packages/cli/dist/server/static.js +30 -0
  74. package/packages/cli/dist/server/static.js.map +1 -0
  75. package/packages/cli/dist/ui/progress.d.ts +3 -0
  76. package/packages/cli/dist/ui/progress.d.ts.map +1 -0
  77. package/packages/cli/dist/ui/progress.js +27 -0
  78. package/packages/cli/dist/ui/progress.js.map +1 -0
  79. package/packages/core/dist/commands/command-loader.d.ts +9 -0
  80. package/packages/core/dist/commands/command-loader.d.ts.map +1 -0
  81. package/packages/core/dist/commands/command-loader.js +32 -0
  82. package/packages/core/dist/commands/command-loader.js.map +1 -0
  83. package/packages/core/dist/commands/prompt-builder.d.ts +3 -0
  84. package/packages/core/dist/commands/prompt-builder.d.ts.map +1 -0
  85. package/packages/core/dist/commands/prompt-builder.js +9 -0
  86. package/packages/core/dist/commands/prompt-builder.js.map +1 -0
  87. package/packages/core/dist/config/config-loader.d.ts +13 -0
  88. package/packages/core/dist/config/config-loader.d.ts.map +1 -0
  89. package/packages/core/dist/config/config-loader.js +40 -0
  90. package/packages/core/dist/config/config-loader.js.map +1 -0
  91. package/packages/core/dist/engine/condition-evaluator.d.ts +7 -0
  92. package/packages/core/dist/engine/condition-evaluator.d.ts.map +1 -0
  93. package/packages/core/dist/engine/condition-evaluator.js +37 -0
  94. package/packages/core/dist/engine/condition-evaluator.js.map +1 -0
  95. package/packages/core/dist/engine/contract-validator.d.ts +2 -0
  96. package/packages/core/dist/engine/contract-validator.d.ts.map +1 -0
  97. package/packages/core/dist/engine/contract-validator.js +8 -0
  98. package/packages/core/dist/engine/contract-validator.js.map +1 -0
  99. package/packages/core/dist/engine/cycle-detector.d.ts +4 -0
  100. package/packages/core/dist/engine/cycle-detector.d.ts.map +1 -0
  101. package/packages/core/dist/engine/cycle-detector.js +39 -0
  102. package/packages/core/dist/engine/cycle-detector.js.map +1 -0
  103. package/packages/core/dist/engine/dag-executor.d.ts +58 -0
  104. package/packages/core/dist/engine/dag-executor.d.ts.map +1 -0
  105. package/packages/core/dist/engine/dag-executor.js +262 -0
  106. package/packages/core/dist/engine/dag-executor.js.map +1 -0
  107. package/packages/core/dist/engine/dag-parser.d.ts +3 -0
  108. package/packages/core/dist/engine/dag-parser.d.ts.map +1 -0
  109. package/packages/core/dist/engine/dag-parser.js +83 -0
  110. package/packages/core/dist/engine/dag-parser.js.map +1 -0
  111. package/packages/core/dist/engine/node-runner.d.ts +16 -0
  112. package/packages/core/dist/engine/node-runner.d.ts.map +1 -0
  113. package/packages/core/dist/engine/node-runner.js +54 -0
  114. package/packages/core/dist/engine/node-runner.js.map +1 -0
  115. package/packages/core/dist/engine/variable-resolver.d.ts +10 -0
  116. package/packages/core/dist/engine/variable-resolver.d.ts.map +1 -0
  117. package/packages/core/dist/engine/variable-resolver.js +25 -0
  118. package/packages/core/dist/engine/variable-resolver.js.map +1 -0
  119. package/packages/core/dist/index.d.ts +20 -0
  120. package/packages/core/dist/index.d.ts.map +1 -0
  121. package/packages/core/dist/index.js +55 -0
  122. package/packages/core/dist/index.js.map +1 -0
  123. package/packages/core/dist/isolation/artifact-store.d.ts +9 -0
  124. package/packages/core/dist/isolation/artifact-store.d.ts.map +1 -0
  125. package/packages/core/dist/isolation/artifact-store.js +30 -0
  126. package/packages/core/dist/isolation/artifact-store.js.map +1 -0
  127. package/packages/core/dist/isolation/workspace-manager.d.ts +36 -0
  128. package/packages/core/dist/isolation/workspace-manager.d.ts.map +1 -0
  129. package/packages/core/dist/isolation/workspace-manager.js +189 -0
  130. package/packages/core/dist/isolation/workspace-manager.js.map +1 -0
  131. package/packages/core/dist/providers/provider-registry.d.ts +8 -0
  132. package/packages/core/dist/providers/provider-registry.d.ts.map +1 -0
  133. package/packages/core/dist/providers/provider-registry.js +21 -0
  134. package/packages/core/dist/providers/provider-registry.js.map +1 -0
  135. package/packages/core/dist/schema/ajv-instance.d.ts +3 -0
  136. package/packages/core/dist/schema/ajv-instance.d.ts.map +1 -0
  137. package/packages/core/dist/schema/ajv-instance.js +12 -0
  138. package/packages/core/dist/schema/ajv-instance.js.map +1 -0
  139. package/packages/core/dist/schema/validators.d.ts +11 -0
  140. package/packages/core/dist/schema/validators.d.ts.map +1 -0
  141. package/packages/core/dist/schema/validators.js +68 -0
  142. package/packages/core/dist/schema/validators.js.map +1 -0
  143. package/packages/core/dist/schema/workflow-schema.d.ts +158 -0
  144. package/packages/core/dist/schema/workflow-schema.d.ts.map +1 -0
  145. package/packages/core/dist/schema/workflow-schema.js +84 -0
  146. package/packages/core/dist/schema/workflow-schema.js.map +1 -0
  147. package/packages/core/dist/skills/skill-loader.d.ts +9 -0
  148. package/packages/core/dist/skills/skill-loader.d.ts.map +1 -0
  149. package/packages/core/dist/skills/skill-loader.js +37 -0
  150. package/packages/core/dist/skills/skill-loader.js.map +1 -0
  151. package/packages/core/dist/store/event-log.d.ts +8 -0
  152. package/packages/core/dist/store/event-log.d.ts.map +1 -0
  153. package/packages/core/dist/store/event-log.js +30 -0
  154. package/packages/core/dist/store/event-log.js.map +1 -0
  155. package/packages/core/dist/store/run-store.d.ts +20 -0
  156. package/packages/core/dist/store/run-store.d.ts.map +1 -0
  157. package/packages/core/dist/store/run-store.js +113 -0
  158. package/packages/core/dist/store/run-store.js.map +1 -0
  159. package/packages/core/dist/store/types.d.ts +30 -0
  160. package/packages/core/dist/store/types.d.ts.map +1 -0
  161. package/packages/core/dist/store/types.js +3 -0
  162. package/packages/core/dist/store/types.js.map +1 -0
  163. package/packages/core/dist/types/dag.d.ts +36 -0
  164. package/packages/core/dist/types/dag.d.ts.map +1 -0
  165. package/packages/core/dist/types/dag.js +3 -0
  166. package/packages/core/dist/types/dag.js.map +1 -0
  167. package/packages/core/dist/types/index.d.ts +4 -0
  168. package/packages/core/dist/types/index.d.ts.map +1 -0
  169. package/packages/core/dist/types/index.js +20 -0
  170. package/packages/core/dist/types/index.js.map +1 -0
  171. package/packages/core/dist/types/provider.d.ts +19 -0
  172. package/packages/core/dist/types/provider.d.ts.map +1 -0
  173. package/packages/core/dist/types/provider.js +3 -0
  174. package/packages/core/dist/types/provider.js.map +1 -0
  175. package/packages/core/dist/types/workflow.d.ts +47 -0
  176. package/packages/core/dist/types/workflow.d.ts.map +1 -0
  177. package/packages/core/dist/types/workflow.js +3 -0
  178. package/packages/core/dist/types/workflow.js.map +1 -0
  179. package/skills/sdlc/architecture/SKILL.md +202 -0
  180. package/skills/sdlc/diagnose/SKILL.md +117 -0
  181. package/skills/sdlc/discovery/SKILL.md +182 -0
  182. package/skills/sdlc/feature-complete/SKILL.md +159 -0
  183. package/skills/sdlc/grill-me/SKILL.md +10 -0
  184. package/skills/sdlc/hotfix-analyze/SKILL.md +174 -0
  185. package/skills/sdlc/hotfix-green/SKILL.md +101 -0
  186. package/skills/sdlc/hotfix-red/SKILL.md +96 -0
  187. package/skills/sdlc/hotfix-review/SKILL.md +151 -0
  188. package/skills/sdlc/implement/SKILL.md +234 -0
  189. package/skills/sdlc/improve-codebase-architecture/SKILL.md +70 -0
  190. package/skills/sdlc/init/SKILL.md +195 -0
  191. package/skills/sdlc/install-deps.mjs +139 -0
  192. package/skills/sdlc/onboard-code/SKILL.md +193 -0
  193. package/skills/sdlc/onboard-docs/SKILL.md +121 -0
  194. package/skills/sdlc/pack.yaml +59 -0
  195. package/skills/sdlc/prd/SKILL.md +163 -0
  196. package/skills/sdlc/review/SKILL.md +229 -0
  197. package/skills/sdlc/sdlc-health/SKILL.md +165 -0
  198. package/skills/sdlc/setup/SKILL.md +162 -0
  199. package/skills/sdlc/ship/SKILL.md +279 -0
  200. package/skills/sdlc/srs/SKILL.md +135 -0
  201. package/skills/sdlc/tdd/SKILL.md +107 -0
  202. package/skills/sdlc/test-design/SKILL.md +126 -0
  203. package/skills/sdlc/workflows/hotfix-tdd.yaml +20 -0
  204. package/skills/sdlc/workflows/hotfix.yaml +34 -0
  205. package/skills/sdlc/workflows/master-sdlc.yaml +45 -0
  206. package/skills/sdlc/workflows/onboarding.yaml +9 -0
  207. package/skills/sdlc/workflows/sdlc-build.yaml +16 -0
  208. package/skills/sdlc/workflows/sdlc-design.yaml +12 -0
  209. package/skills/sdlc/workflows/sdlc-qa.yaml +17 -0
  210. package/skills/sdlc/workflows/sdlc-testcase.yaml +7 -0
  211. package/skills/sdlc/workflows/sdlc-thinking.yaml +12 -0
  212. package/skills/sdlc/zoom-out/SKILL.md +7 -0
  213. package/assets/templates/.claude/settings.json +0 -48
  214. package/assets/templates/.codex/instructions.md +0 -143
  215. package/assets/templates/CLAUDE.md +0 -161
  216. package/bin/vsaf.js +0 -142
  217. package/src/config.js +0 -167
  218. package/src/global.js +0 -261
  219. package/src/project.js +0 -191
  220. package/src/status.js +0 -91
  221. package/src/utils.js +0 -126
  222. package/src/workflow.js +0 -106
  223. package/tools/bmad/_config/agent-manifest.csv +0 -7
  224. package/tools/bmad/_config/bmad-help.csv +0 -44
  225. package/tools/bmad/_config/files-manifest.csv +0 -261
  226. package/tools/bmad/_config/manifest.yaml +0 -21
  227. package/tools/bmad/_config/skill-manifest.csv +0 -42
  228. package/tools/bmad/bmm/1-analysis/bmad-document-project/templates/srs-feature-template.md +0 -669
  229. package/tools/bmad/bmm/1-analysis/bmad-document-project/templates/srs-system-template.md +0 -430
  230. package/tools/bmad/bmm/config.yaml +0 -20
  231. package/tools/bmad/bmm/module-help.csv +0 -33
  232. package/tools/bmad/core/config.yaml +0 -9
  233. package/tools/bmad/core/module-help.csv +0 -12
  234. package/tools/skills/bmad-agent-architect/SKILL.md +0 -54
  235. package/tools/skills/bmad-agent-architect/bmad-skill-manifest.yaml +0 -11
  236. package/tools/skills/bmad-agent-dev/SKILL.md +0 -69
  237. package/tools/skills/bmad-agent-dev/bmad-skill-manifest.yaml +0 -11
  238. package/tools/skills/bmad-agent-pm/SKILL.md +0 -59
  239. package/tools/skills/bmad-agent-pm/bmad-skill-manifest.yaml +0 -11
  240. package/tools/skills/bmad-agent-tech-writer/SKILL.md +0 -57
  241. package/tools/skills/bmad-agent-tech-writer/bmad-skill-manifest.yaml +0 -11
  242. package/tools/skills/bmad-agent-tech-writer/explain-concept.md +0 -20
  243. package/tools/skills/bmad-agent-tech-writer/mermaid-gen.md +0 -20
  244. package/tools/skills/bmad-agent-tech-writer/validate-doc.md +0 -19
  245. package/tools/skills/bmad-agent-tech-writer/write-document.md +0 -20
  246. package/tools/skills/bmad-agent-ux-designer/SKILL.md +0 -55
  247. package/tools/skills/bmad-agent-ux-designer/bmad-skill-manifest.yaml +0 -11
  248. package/tools/skills/bmad-checkpoint-preview/SKILL.md +0 -29
  249. package/tools/skills/bmad-checkpoint-preview/generate-trail.md +0 -38
  250. package/tools/skills/bmad-checkpoint-preview/step-01-orientation.md +0 -105
  251. package/tools/skills/bmad-checkpoint-preview/step-02-walkthrough.md +0 -89
  252. package/tools/skills/bmad-checkpoint-preview/step-03-detail-pass.md +0 -106
  253. package/tools/skills/bmad-checkpoint-preview/step-04-testing.md +0 -74
  254. package/tools/skills/bmad-checkpoint-preview/step-05-wrapup.md +0 -24
  255. package/tools/skills/bmad-correct-course/SKILL.md +0 -6
  256. package/tools/skills/bmad-correct-course/checklist.md +0 -288
  257. package/tools/skills/bmad-correct-course/workflow.md +0 -267
  258. package/tools/skills/bmad-create-story/SKILL.md +0 -6
  259. package/tools/skills/bmad-create-story/checklist.md +0 -357
  260. package/tools/skills/bmad-create-story/discover-inputs.md +0 -88
  261. package/tools/skills/bmad-create-story/template.md +0 -49
  262. package/tools/skills/bmad-create-story/workflow.md +0 -380
  263. package/tools/skills/bmad-create-ux-design/SKILL.md +0 -6
  264. package/tools/skills/bmad-create-ux-design/steps/step-01-init.md +0 -135
  265. package/tools/skills/bmad-create-ux-design/steps/step-01b-continue.md +0 -127
  266. package/tools/skills/bmad-create-ux-design/steps/step-02-discovery.md +0 -190
  267. package/tools/skills/bmad-create-ux-design/steps/step-03-core-experience.md +0 -217
  268. package/tools/skills/bmad-create-ux-design/steps/step-04-emotional-response.md +0 -220
  269. package/tools/skills/bmad-create-ux-design/steps/step-05-inspiration.md +0 -235
  270. package/tools/skills/bmad-create-ux-design/steps/step-06-design-system.md +0 -253
  271. package/tools/skills/bmad-create-ux-design/steps/step-07-defining-experience.md +0 -255
  272. package/tools/skills/bmad-create-ux-design/steps/step-08-visual-foundation.md +0 -225
  273. package/tools/skills/bmad-create-ux-design/steps/step-09-design-directions.md +0 -225
  274. package/tools/skills/bmad-create-ux-design/steps/step-10-user-journeys.md +0 -242
  275. package/tools/skills/bmad-create-ux-design/steps/step-11-component-strategy.md +0 -249
  276. package/tools/skills/bmad-create-ux-design/steps/step-12-ux-patterns.md +0 -238
  277. package/tools/skills/bmad-create-ux-design/steps/step-13-responsive-accessibility.md +0 -265
  278. package/tools/skills/bmad-create-ux-design/steps/step-14-complete.md +0 -171
  279. package/tools/skills/bmad-create-ux-design/ux-design-template.md +0 -13
  280. package/tools/skills/bmad-create-ux-design/workflow.md +0 -35
  281. package/tools/skills/bmad-dev-story/SKILL.md +0 -6
  282. package/tools/skills/bmad-dev-story/checklist.md +0 -80
  283. package/tools/skills/bmad-dev-story/workflow.md +0 -450
  284. package/tools/skills/bmad-distillator/SKILL.md +0 -177
  285. package/tools/skills/bmad-distillator/agents/distillate-compressor.md +0 -116
  286. package/tools/skills/bmad-distillator/agents/round-trip-reconstructor.md +0 -68
  287. package/tools/skills/bmad-distillator/resources/compression-rules.md +0 -51
  288. package/tools/skills/bmad-distillator/resources/distillate-format-reference.md +0 -227
  289. package/tools/skills/bmad-distillator/resources/splitting-strategy.md +0 -78
  290. package/tools/skills/bmad-distillator/scripts/analyze_sources.py +0 -300
  291. package/tools/skills/bmad-distillator/scripts/tests/test_analyze_sources.py +0 -204
  292. package/tools/skills/bmad-document-project/SKILL.md +0 -6
  293. package/tools/skills/bmad-document-project/checklist.md +0 -245
  294. package/tools/skills/bmad-document-project/documentation-requirements.csv +0 -12
  295. package/tools/skills/bmad-document-project/instructions.md +0 -128
  296. package/tools/skills/bmad-document-project/templates/deep-dive-template.md +0 -345
  297. package/tools/skills/bmad-document-project/templates/index-template.md +0 -169
  298. package/tools/skills/bmad-document-project/templates/project-overview-template.md +0 -103
  299. package/tools/skills/bmad-document-project/templates/project-scan-report-schema.json +0 -160
  300. package/tools/skills/bmad-document-project/templates/source-tree-template.md +0 -135
  301. package/tools/skills/bmad-document-project/workflow.md +0 -25
  302. package/tools/skills/bmad-document-project/workflows/deep-dive-instructions.md +0 -299
  303. package/tools/skills/bmad-document-project/workflows/deep-dive-workflow.md +0 -34
  304. package/tools/skills/bmad-document-project/workflows/full-scan-instructions.md +0 -1107
  305. package/tools/skills/bmad-document-project/workflows/full-scan-workflow.md +0 -34
  306. package/tools/skills/bmad-edit-prd/SKILL.md +0 -6
  307. package/tools/skills/bmad-edit-prd/steps-e/step-e-01-discovery.md +0 -242
  308. package/tools/skills/bmad-edit-prd/steps-e/step-e-01b-legacy-conversion.md +0 -204
  309. package/tools/skills/bmad-edit-prd/steps-e/step-e-02-review.md +0 -245
  310. package/tools/skills/bmad-edit-prd/steps-e/step-e-03-edit.md +0 -250
  311. package/tools/skills/bmad-edit-prd/steps-e/step-e-04-complete.md +0 -163
  312. package/tools/skills/bmad-edit-prd/workflow.md +0 -62
  313. package/tools/skills/bmad-editorial-review-prose/SKILL.md +0 -86
  314. package/tools/skills/bmad-editorial-review-structure/SKILL.md +0 -179
  315. package/tools/skills/bmad-generate-project-context/SKILL.md +0 -6
  316. package/tools/skills/bmad-generate-project-context/project-context-template.md +0 -21
  317. package/tools/skills/bmad-generate-project-context/steps/step-01-discover.md +0 -186
  318. package/tools/skills/bmad-generate-project-context/steps/step-02-generate.md +0 -321
  319. package/tools/skills/bmad-generate-project-context/steps/step-03-complete.md +0 -278
  320. package/tools/skills/bmad-generate-project-context/workflow.md +0 -39
  321. package/tools/skills/bmad-help/SKILL.md +0 -75
  322. package/tools/skills/bmad-index-docs/SKILL.md +0 -66
  323. package/tools/skills/bmad-market-research/SKILL.md +0 -6
  324. package/tools/skills/bmad-market-research/research.template.md +0 -29
  325. package/tools/skills/bmad-market-research/steps/step-01-init.md +0 -184
  326. package/tools/skills/bmad-market-research/steps/step-02-customer-behavior.md +0 -239
  327. package/tools/skills/bmad-market-research/steps/step-03-customer-pain-points.md +0 -251
  328. package/tools/skills/bmad-market-research/steps/step-04-customer-decisions.md +0 -261
  329. package/tools/skills/bmad-market-research/steps/step-05-competitive-analysis.md +0 -173
  330. package/tools/skills/bmad-market-research/steps/step-06-research-completion.md +0 -478
  331. package/tools/skills/bmad-market-research/workflow.md +0 -51
  332. package/tools/skills/bmad-product-brief/SKILL.md +0 -82
  333. package/tools/skills/bmad-product-brief/agents/artifact-analyzer.md +0 -60
  334. package/tools/skills/bmad-product-brief/agents/opportunity-reviewer.md +0 -44
  335. package/tools/skills/bmad-product-brief/agents/skeptic-reviewer.md +0 -44
  336. package/tools/skills/bmad-product-brief/agents/web-researcher.md +0 -49
  337. package/tools/skills/bmad-product-brief/bmad-manifest.json +0 -17
  338. package/tools/skills/bmad-product-brief/prompts/contextual-discovery.md +0 -57
  339. package/tools/skills/bmad-product-brief/prompts/draft-and-review.md +0 -86
  340. package/tools/skills/bmad-product-brief/prompts/finalize.md +0 -75
  341. package/tools/skills/bmad-product-brief/prompts/guided-elicitation.md +0 -70
  342. package/tools/skills/bmad-product-brief/resources/brief-template.md +0 -60
  343. package/tools/skills/bmad-quick-dev/SKILL.md +0 -6
  344. package/tools/skills/bmad-quick-dev/compile-epic-context.md +0 -62
  345. package/tools/skills/bmad-quick-dev/spec-template.md +0 -88
  346. package/tools/skills/bmad-quick-dev/step-01-clarify-and-route.md +0 -91
  347. package/tools/skills/bmad-quick-dev/step-02-plan.md +0 -47
  348. package/tools/skills/bmad-quick-dev/step-03-implement.md +0 -39
  349. package/tools/skills/bmad-quick-dev/step-04-review.md +0 -49
  350. package/tools/skills/bmad-quick-dev/step-05-present.md +0 -63
  351. package/tools/skills/bmad-quick-dev/step-oneshot.md +0 -61
  352. package/tools/skills/bmad-quick-dev/workflow.md +0 -75
  353. package/tools/skills/bmad-retrospective/SKILL.md +0 -6
  354. package/tools/skills/bmad-retrospective/workflow.md +0 -1479
  355. package/tools/skills/bmad-shard-doc/SKILL.md +0 -105
  356. package/tools/skills/bmad-sprint-planning/SKILL.md +0 -6
  357. package/tools/skills/bmad-sprint-planning/checklist.md +0 -33
  358. package/tools/skills/bmad-sprint-planning/sprint-status-template.yaml +0 -56
  359. package/tools/skills/bmad-sprint-planning/workflow.md +0 -263
  360. package/tools/skills/bmad-sprint-status/SKILL.md +0 -6
  361. package/tools/skills/bmad-sprint-status/workflow.md +0 -261
  362. package/tools/skills/bmad-technical-research/SKILL.md +0 -6
  363. package/tools/skills/bmad-technical-research/research.template.md +0 -29
  364. package/tools/skills/bmad-technical-research/technical-steps/step-01-init.md +0 -137
  365. package/tools/skills/bmad-technical-research/technical-steps/step-02-technical-overview.md +0 -239
  366. package/tools/skills/bmad-technical-research/technical-steps/step-03-integration-patterns.md +0 -248
  367. package/tools/skills/bmad-technical-research/technical-steps/step-04-architectural-patterns.md +0 -202
  368. package/tools/skills/bmad-technical-research/technical-steps/step-05-implementation-research.md +0 -233
  369. package/tools/skills/bmad-technical-research/technical-steps/step-06-research-synthesis.md +0 -487
  370. package/tools/skills/bmad-technical-research/workflow.md +0 -52
  371. package/tools/skills/bmad-validate-prd/data/prd-purpose.md +0 -197
  372. package/tools/skills/gitnexus/gitnexus-cli/SKILL.md +0 -82
  373. package/tools/skills/gitnexus/gitnexus-debugging/SKILL.md +0 -89
  374. package/tools/skills/gitnexus/gitnexus-exploring/SKILL.md +0 -78
  375. package/tools/skills/gitnexus/gitnexus-guide/SKILL.md +0 -64
  376. package/tools/skills/gitnexus/gitnexus-impact-analysis/SKILL.md +0 -97
  377. package/tools/skills/gitnexus/gitnexus-refactoring/SKILL.md +0 -121
  378. package/tools/skills/vds-scripts-skill/.openskills.json +0 -6
  379. package/tools/skills/vds-scripts-skill/QUALITY.md +0 -44
  380. package/tools/skills/vds-scripts-skill/SKILL.md +0 -127
  381. package/tools/skills/vds-scripts-skill/references/audit-commands.md +0 -171
  382. package/tools/skills/vds-scripts-skill/references/capability-index.md +0 -34
  383. package/tools/skills/vds-scripts-skill/references/development-commands.md +0 -12
  384. package/tools/skills/vds-scripts-skill/references/google-sheets.md +0 -71
  385. package/tools/skills/vds-scripts-skill/references/integration-commands.md +0 -17
  386. package/tools/skills/vds-scripts-skill/references/platform-bootstrap.md +0 -31
  387. package/tools/skills/vds-scripts-skill/references/specialist-routing.md +0 -14
  388. package/tools/skills/vds-scripts-skill/references/validation-commands.md +0 -15
  389. package/tools/skills/vsaf-build/SKILL.md +0 -146
  390. package/tools/skills/vsaf-discover/SKILL.md +0 -92
  391. package/tools/skills/vsaf-doc/SKILL.md +0 -22
  392. package/tools/skills/vsaf-doc-prd/SKILL.md +0 -58
  393. package/tools/skills/vsaf-doc-srs/SKILL.md +0 -170
  394. package/tools/skills/vsaf-docs/SKILL.md +0 -81
  395. package/tools/skills/vsaf-onboard/SKILL.md +0 -81
  396. package/tools/skills/vsaf-plan/SKILL.md +0 -101
  397. package/tools/skills/vsaf-push-prd/SKILL.md +0 -154
  398. package/tools/skills/vsaf-push-srs/SKILL.md +0 -166
  399. package/tools/skills/vsaf-retro/SKILL.md +0 -94
  400. package/tools/skills/vsaf-ship/SKILL.md +0 -142
  401. package/tools/skills/vsaf-sprint/SKILL.md +0 -111
  402. package/tools/skills/vsaf-test/SKILL.md +0 -207
  403. package/tools/vds-scripts/.claude/phase7-CLOSURE.md +0 -100
  404. package/tools/vds-scripts/.dockerignore +0 -62
  405. package/tools/vds-scripts/.github/ISSUE_TEMPLATE/cli-change.md +0 -92
  406. package/tools/vds-scripts/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +0 -48
  407. package/tools/vds-scripts/.github/workflows/chaos-smoke.yml +0 -266
  408. package/tools/vds-scripts/.github/workflows/confluence-sync.yml +0 -44
  409. package/tools/vds-scripts/.github/workflows/docs-confluence-evidence.yml +0 -170
  410. package/tools/vds-scripts/.github/workflows/docs-quality.yml +0 -59
  411. package/tools/vds-scripts/.github/workflows/lint-and-test.yml +0 -90
  412. package/tools/vds-scripts/.github/workflows/scheduler-load-smoke.yml +0 -104
  413. package/tools/vds-scripts/.github/workflows/telegram-bridge-ci.yml +0 -131
  414. package/tools/vds-scripts/.graphifyignore +0 -29
  415. package/tools/vds-scripts/.importlinter +0 -86
  416. package/tools/vds-scripts/.mcp.json +0 -11
  417. package/tools/vds-scripts/.pre-commit-config.yaml +0 -62
  418. package/tools/vds-scripts/.ruffignore +0 -3
  419. package/tools/vds-scripts/.secrets.baseline +0 -133
  420. package/tools/vds-scripts/AGENTS.md +0 -250
  421. package/tools/vds-scripts/AGENTS.vi.md +0 -92
  422. package/tools/vds-scripts/Makefile +0 -97
  423. package/tools/vds-scripts/README.md +0 -103
  424. package/tools/vds-scripts/bitbucket_manifest_mapping.toml +0 -34
  425. package/tools/vds-scripts/bitbucket_orchestrator/ARCHITECTURE_ANALYSIS.md +0 -258
  426. package/tools/vds-scripts/bitbucket_orchestrator/BITBUCKET_API_PRACTICES.md +0 -393
  427. package/tools/vds-scripts/bitbucket_orchestrator/EVALUATION_REPORT.md +0 -61
  428. package/tools/vds-scripts/bitbucket_orchestrator/FEATURES.md +0 -908
  429. package/tools/vds-scripts/bitbucket_orchestrator/README.md +0 -817
  430. package/tools/vds-scripts/bitbucket_orchestrator/pyproject.toml +0 -49
  431. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/__init__.py +0 -50
  432. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/async_client.py +0 -641
  433. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/cli.py +0 -2271
  434. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/client.py +0 -2693
  435. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/config.py +0 -186
  436. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/errors.py +0 -34
  437. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/factory.py +0 -185
  438. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/parsers.py +0 -113
  439. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/protocols.py +0 -244
  440. package/tools/vds-scripts/bitbucket_orchestrator/src/vds_bitbucket_orchestrator/repo_ops.py +0 -325
  441. package/tools/vds-scripts/bitbucket_orchestrator/tests/__init__.py +0 -8
  442. package/tools/vds-scripts/bitbucket_orchestrator/tests/conftest.py +0 -65
  443. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_advanced_search.py +0 -155
  444. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_async_client.py +0 -505
  445. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_branch_permissions.py +0 -172
  446. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_cli.py +0 -113
  447. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_cli_archive.py +0 -122
  448. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_cli_clone.py +0 -131
  449. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client.py +0 -207
  450. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_archive.py +0 -73
  451. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_branch_conditions.py +0 -101
  452. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_code_advanced.py +0 -180
  453. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_code_file.py +0 -33
  454. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_deployment_environments.py +0 -193
  455. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_issues.py +0 -163
  456. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_pipelines_advanced.py +0 -171
  457. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_pr_blockers.py +0 -118
  458. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_client_repository_variables.py +0 -155
  459. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_code.py +0 -98
  460. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_code_advanced.py +0 -279
  461. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_code_insights.py +0 -334
  462. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_conditions.py +0 -149
  463. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_config.py +0 -297
  464. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_deployment_env.py +0 -352
  465. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_errors.py +0 -67
  466. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_factory.py +0 -352
  467. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_fork_operations.py +0 -203
  468. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_issue_cli.py +0 -262
  469. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_pipeline_advanced.py +0 -265
  470. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_pr_blocker.py +0 -206
  471. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_protocols.py +0 -336
  472. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_repo_ops_archive.py +0 -169
  473. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_repo_ops_clone.py +0 -115
  474. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_repo_ops_parsing.py +0 -149
  475. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_repo_settings.py +0 -336
  476. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_repo_variables.py +0 -266
  477. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_webhooks.py +0 -188
  478. package/tools/vds-scripts/bitbucket_orchestrator/tests/test_workspace.py +0 -234
  479. package/tools/vds-scripts/bitbucket_orchestrator/tests/unit/__init__.py +0 -0
  480. package/tools/vds-scripts/bitbucket_orchestrator/tests/unit/test_parsers.py +0 -254
  481. package/tools/vds-scripts/code/code_evidence_pack.json +0 -435
  482. package/tools/vds-scripts/confluence_orchestrator/Dockerfile +0 -19
  483. package/tools/vds-scripts/confluence_orchestrator/README.md +0 -479
  484. package/tools/vds-scripts/confluence_orchestrator/SYNC_SCRIPTS.md +0 -127
  485. package/tools/vds-scripts/confluence_orchestrator/SYNC_STANDARDIZATION.md +0 -108
  486. package/tools/vds-scripts/confluence_orchestrator/pyproject.toml +0 -50
  487. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/__init__.py +0 -56
  488. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/async_client.py +0 -100
  489. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/cli.py +0 -3160
  490. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/config.py +0 -215
  491. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/content.py +0 -368
  492. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/content_v2.py +0 -144
  493. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/crawl_tree.py +0 -1833
  494. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/errors.py +0 -44
  495. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/eventing.py +0 -111
  496. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/http.py +0 -1850
  497. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/orchestration.py +0 -166
  498. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/protocols.py +0 -61
  499. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/reporting.py +0 -78
  500. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/tree.py +0 -122
  501. package/tools/vds-scripts/confluence_orchestrator/src/confluence_orchestrator/tree_copier.py +0 -431
  502. package/tools/vds-scripts/confluence_orchestrator/sync_pdfs_from_markdown.py +0 -203
  503. package/tools/vds-scripts/confluence_orchestrator/sync_pdfs_to_confluence.py +0 -299
  504. package/tools/vds-scripts/confluence_orchestrator/sync_png_attachments.py +0 -299
  505. package/tools/vds-scripts/confluence_orchestrator/tests/conftest.py +0 -46
  506. package/tools/vds-scripts/confluence_orchestrator/tests/test_advanced_content.py +0 -252
  507. package/tools/vds-scripts/confluence_orchestrator/tests/test_advanced_search.py +0 -193
  508. package/tools/vds-scripts/confluence_orchestrator/tests/test_async_client.py +0 -104
  509. package/tools/vds-scripts/confluence_orchestrator/tests/test_cache_management.py +0 -246
  510. package/tools/vds-scripts/confluence_orchestrator/tests/test_cli.py +0 -716
  511. package/tools/vds-scripts/confluence_orchestrator/tests/test_config.py +0 -130
  512. package/tools/vds-scripts/confluence_orchestrator/tests/test_content.py +0 -192
  513. package/tools/vds-scripts/confluence_orchestrator/tests/test_content_flags.py +0 -27
  514. package/tools/vds-scripts/confluence_orchestrator/tests/test_content_labels.py +0 -94
  515. package/tools/vds-scripts/confluence_orchestrator/tests/test_crawl_tree.py +0 -2252
  516. package/tools/vds-scripts/confluence_orchestrator/tests/test_degraded_write_safety.py +0 -176
  517. package/tools/vds-scripts/confluence_orchestrator/tests/test_draft_management.py +0 -225
  518. package/tools/vds-scripts/confluence_orchestrator/tests/test_errors.py +0 -75
  519. package/tools/vds-scripts/confluence_orchestrator/tests/test_eventing.py +0 -73
  520. package/tools/vds-scripts/confluence_orchestrator/tests/test_eventing_chaos.py +0 -37
  521. package/tools/vds-scripts/confluence_orchestrator/tests/test_eventing_rate_limit.py +0 -44
  522. package/tools/vds-scripts/confluence_orchestrator/tests/test_eventing_timeout.py +0 -49
  523. package/tools/vds-scripts/confluence_orchestrator/tests/test_export.py +0 -231
  524. package/tools/vds-scripts/confluence_orchestrator/tests/test_history.py +0 -217
  525. package/tools/vds-scripts/confluence_orchestrator/tests/test_http.py +0 -375
  526. package/tools/vds-scripts/confluence_orchestrator/tests/test_orchestration.py +0 -93
  527. package/tools/vds-scripts/confluence_orchestrator/tests/test_protocols.py +0 -23
  528. package/tools/vds-scripts/confluence_orchestrator/tests/test_reporting.py +0 -24
  529. package/tools/vds-scripts/confluence_orchestrator/tests/test_search_cql.py +0 -36
  530. package/tools/vds-scripts/confluence_orchestrator/tests/test_space_management.py +0 -236
  531. package/tools/vds-scripts/confluence_orchestrator/tests/test_space_permissions.py +0 -384
  532. package/tools/vds-scripts/confluence_orchestrator/tests/test_tree_copier.py +0 -644
  533. package/tools/vds-scripts/confluence_orchestrator/tests/test_tree_copier_remap.py +0 -289
  534. package/tools/vds-scripts/confluence_orchestrator/tests/test_user_group_management.py +0 -387
  535. package/tools/vds-scripts/db_query_orchestrator/Dockerfile +0 -64
  536. package/tools/vds-scripts/db_query_orchestrator/README.md +0 -105
  537. package/tools/vds-scripts/db_query_orchestrator/pyproject.toml +0 -67
  538. package/tools/vds-scripts/db_query_orchestrator/src/vds_db_query_orchestrator/__init__.py +0 -5
  539. package/tools/vds-scripts/db_query_orchestrator/src/vds_db_query_orchestrator/cli.py +0 -545
  540. package/tools/vds-scripts/db_query_orchestrator/tests/__init__.py +0 -0
  541. package/tools/vds-scripts/db_query_orchestrator/tests/test_cli.py +0 -171
  542. package/tools/vds-scripts/docker/.dockerignore +0 -38
  543. package/tools/vds-scripts/docker/ADR.md +0 -392
  544. package/tools/vds-scripts/docker/Dockerfile +0 -68
  545. package/tools/vds-scripts/docker/MIGRATION.md +0 -453
  546. package/tools/vds-scripts/docker/README.md +0 -347
  547. package/tools/vds-scripts/docker/ROLLBACK.md +0 -596
  548. package/tools/vds-scripts/docker/docker-compose.cli.yml +0 -90
  549. package/tools/vds-scripts/docker/docker-compose.infra.yml +0 -276
  550. package/tools/vds-scripts/docker/docker-compose.services.yml +0 -386
  551. package/tools/vds-scripts/docker/infrastructure/init-schemas.sql +0 -143
  552. package/tools/vds-scripts/docker/infrastructure/pgbouncer/pgbouncer.ini +0 -71
  553. package/tools/vds-scripts/docker/infrastructure/pgbouncer/userlist.txt +0 -50
  554. package/tools/vds-scripts/docker/infrastructure/pgbouncer/userlist.txt.template +0 -36
  555. package/tools/vds-scripts/docs/.confluence-evidence/.gitkeep +0 -0
  556. package/tools/vds-scripts/docs/.confluence-evidence/PREFLIGHT.md +0 -132
  557. package/tools/vds-scripts/docs/.confluence-evidence/README.md +0 -84
  558. package/tools/vds-scripts/docs/.confluence.yaml +0 -157
  559. package/tools/vds-scripts/docs/.freshness.yaml +0 -54
  560. package/tools/vds-scripts/docs/README.md +0 -235
  561. package/tools/vds-scripts/docs/agents/README.md +0 -33
  562. package/tools/vds-scripts/docs/agents/explanation/data-flow.md +0 -132
  563. package/tools/vds-scripts/docs/agents/explanation/development-roadmap.md +0 -49
  564. package/tools/vds-scripts/docs/agents/explanation/features-overview.md +0 -62
  565. package/tools/vds-scripts/docs/agents/explanation/index.md +0 -36
  566. package/tools/vds-scripts/docs/agents/explanation/runtime-verification-and-gap-reporting.md +0 -127
  567. package/tools/vds-scripts/docs/agents/explanation/system-architecture.md +0 -139
  568. package/tools/vds-scripts/docs/agents/explanation/whats-new.md +0 -75
  569. package/tools/vds-scripts/docs/agents/explanation/who-ecosystem-introduction.md +0 -65
  570. package/tools/vds-scripts/docs/agents/explanation/who-ecosystem-model.md +0 -41
  571. package/tools/vds-scripts/docs/agents/how-to/02-using-vds-ai-memory.md +0 -98
  572. package/tools/vds-scripts/docs/agents/how-to/03-memory-cross-agent.md +0 -241
  573. package/tools/vds-scripts/docs/agents/how-to/04-using-progress-reports.md +0 -240
  574. package/tools/vds-scripts/docs/agents/how-to/08-semantic-search.md +0 -46
  575. package/tools/vds-scripts/docs/agents/how-to/apply-phase3-migration.md +0 -148
  576. package/tools/vds-scripts/docs/agents/how-to/choose-the-right-command-or-skill.md +0 -34
  577. package/tools/vds-scripts/docs/agents/how-to/contribute-new-orchestrator.md +0 -149
  578. package/tools/vds-scripts/docs/agents/how-to/decision-tree.md +0 -63
  579. package/tools/vds-scripts/docs/agents/how-to/first-audit-run.md +0 -83
  580. package/tools/vds-scripts/docs/agents/how-to/index.md +0 -49
  581. package/tools/vds-scripts/docs/agents/how-to/install-and-bootstrap-who-scripts-and-skills.md +0 -314
  582. package/tools/vds-scripts/docs/agents/how-to/orchestrator-workflows/analytics-pipeline-workflow.md +0 -165
  583. package/tools/vds-scripts/docs/agents/how-to/orchestrator-workflows/code-quality-gate-workflow.md +0 -138
  584. package/tools/vds-scripts/docs/agents/how-to/orchestrator-workflows/confluence-bitbucket-sync-workflow.md +0 -130
  585. package/tools/vds-scripts/docs/agents/how-to/orchestrator-workflows/document-delivery-workflow.md +0 -142
  586. package/tools/vds-scripts/docs/agents/how-to/orchestrator-workflows/memory-progress-workflow.md +0 -140
  587. package/tools/vds-scripts/docs/agents/how-to/orchestrator-workflows/research-spec-audit-workflow.md +0 -135
  588. package/tools/vds-scripts/docs/agents/how-to/phase131-all-project-preparation.md +0 -211
  589. package/tools/vds-scripts/docs/agents/how-to/phase131-bounded-parallel-analysis.md +0 -123
  590. package/tools/vds-scripts/docs/agents/how-to/phase131-confluence-upload-recovery.md +0 -204
  591. package/tools/vds-scripts/docs/agents/how-to/phase132-department-preparation.md +0 -144
  592. package/tools/vds-scripts/docs/agents/how-to/run-ecosystem-daily-report.md +0 -213
  593. package/tools/vds-scripts/docs/agents/how-to/tips-and-tricks.md +0 -138
  594. package/tools/vds-scripts/docs/agents/how-to/troubleshooting-guide.md +0 -221
  595. package/tools/vds-scripts/docs/agents/reference/agent-operational-contract.md +0 -162
  596. package/tools/vds-scripts/docs/agents/reference/alignment-phase179-report.md +0 -144
  597. package/tools/vds-scripts/docs/agents/reference/audit-triage-playbook.md +0 -256
  598. package/tools/vds-scripts/docs/agents/reference/backup-restore.md +0 -132
  599. package/tools/vds-scripts/docs/agents/reference/bitbucket-orchestrator.md +0 -56
  600. package/tools/vds-scripts/docs/agents/reference/brd-orchestrator.md +0 -52
  601. package/tools/vds-scripts/docs/agents/reference/capability-coverage-review.md +0 -51
  602. package/tools/vds-scripts/docs/agents/reference/ci-workflows.md +0 -98
  603. package/tools/vds-scripts/docs/agents/reference/circular-dependency-orchestrator.md +0 -55
  604. package/tools/vds-scripts/docs/agents/reference/cli-commands.md +0 -583
  605. package/tools/vds-scripts/docs/agents/reference/cli-development-standards.md +0 -41
  606. package/tools/vds-scripts/docs/agents/reference/cli-help-matrix.md +0 -84
  607. package/tools/vds-scripts/docs/agents/reference/common-errors.md +0 -126
  608. package/tools/vds-scripts/docs/agents/reference/configuration-reference.md +0 -128
  609. package/tools/vds-scripts/docs/agents/reference/confluence-orchestrator.md +0 -56
  610. package/tools/vds-scripts/docs/agents/reference/confluence-sync-target.md +0 -111
  611. package/tools/vds-scripts/docs/agents/reference/confluence-sync.md +0 -46
  612. package/tools/vds-scripts/docs/agents/reference/db-query-orchestrator.md +0 -93
  613. package/tools/vds-scripts/docs/agents/reference/diagrams-orchestrator.md +0 -52
  614. package/tools/vds-scripts/docs/agents/reference/ecosystem-daily-report.md +0 -229
  615. package/tools/vds-scripts/docs/agents/reference/elastic-orchestrator.md +0 -57
  616. package/tools/vds-scripts/docs/agents/reference/env-git-helper.md +0 -216
  617. package/tools/vds-scripts/docs/agents/reference/evolution-orchestrator.md +0 -113
  618. package/tools/vds-scripts/docs/agents/reference/excel-orchestrator.md +0 -51
  619. package/tools/vds-scripts/docs/agents/reference/git-orchestrator.md +0 -62
  620. package/tools/vds-scripts/docs/agents/reference/google-sheets-orchestrator.md +0 -51
  621. package/tools/vds-scripts/docs/agents/reference/grafana-orchestrator.md +0 -52
  622. package/tools/vds-scripts/docs/agents/reference/hexagonal-orchestrator.md +0 -64
  623. package/tools/vds-scripts/docs/agents/reference/index.md +0 -36
  624. package/tools/vds-scripts/docs/agents/reference/infrastructure-v2.15.md +0 -67
  625. package/tools/vds-scripts/docs/agents/reference/intellij-orchestrator.md +0 -50
  626. package/tools/vds-scripts/docs/agents/reference/jira-orchestrator.md +0 -60
  627. package/tools/vds-scripts/docs/agents/reference/links-orchestrator.md +0 -57
  628. package/tools/vds-scripts/docs/agents/reference/lint-cli.md +0 -99
  629. package/tools/vds-scripts/docs/agents/reference/lsp-orchestrator.md +0 -51
  630. package/tools/vds-scripts/docs/agents/reference/markdown-orchestrator.md +0 -53
  631. package/tools/vds-scripts/docs/agents/reference/mcp-orchestrator.md +0 -88
  632. package/tools/vds-scripts/docs/agents/reference/memory-orchestrator.md +0 -53
  633. package/tools/vds-scripts/docs/agents/reference/metabase-orchestrator.md +0 -51
  634. package/tools/vds-scripts/docs/agents/reference/migration-playbook.md +0 -71
  635. package/tools/vds-scripts/docs/agents/reference/multi-agent-orchestrator.md +0 -52
  636. package/tools/vds-scripts/docs/agents/reference/openapi-orchestrator.md +0 -57
  637. package/tools/vds-scripts/docs/agents/reference/orchestrator-architecture.md +0 -194
  638. package/tools/vds-scripts/docs/agents/reference/orchestrator-comparison-matrix.md +0 -79
  639. package/tools/vds-scripts/docs/agents/reference/orchestrator-index.md +0 -73
  640. package/tools/vds-scripts/docs/agents/reference/pdf-orchestrator.md +0 -57
  641. package/tools/vds-scripts/docs/agents/reference/portable-paths-and-config.md +0 -0
  642. package/tools/vds-scripts/docs/agents/reference/portable-paths-validation-matrix.md +0 -129
  643. package/tools/vds-scripts/docs/agents/reference/progress-orchestrator.md +0 -51
  644. package/tools/vds-scripts/docs/agents/reference/progress-report-cli.md +0 -215
  645. package/tools/vds-scripts/docs/agents/reference/public-interface-orchestrator.md +0 -73
  646. package/tools/vds-scripts/docs/agents/reference/research-orchestrator.md +0 -53
  647. package/tools/vds-scripts/docs/agents/reference/schema-orchestrator.md +0 -57
  648. package/tools/vds-scripts/docs/agents/reference/search-tools.md +0 -34
  649. package/tools/vds-scripts/docs/agents/reference/skills-commands.md +0 -256
  650. package/tools/vds-scripts/docs/agents/reference/skills-reference.md +0 -32
  651. package/tools/vds-scripts/docs/agents/reference/sonarqube-orchestrator.md +0 -62
  652. package/tools/vds-scripts/docs/agents/reference/spec-orchestrator.md +0 -56
  653. package/tools/vds-scripts/docs/agents/reference/structure-orchestrator.md +0 -69
  654. package/tools/vds-scripts/docs/agents/reference/system-requirements.md +0 -76
  655. package/tools/vds-scripts/docs/agents/reference/tasks-orchestrator.md +0 -53
  656. package/tools/vds-scripts/docs/agents/reference/validation-and-sync-notes.md +0 -54
  657. package/tools/vds-scripts/docs/agents/reference/vds-ai-memory-api.md +0 -51
  658. package/tools/vds-scripts/docs/agents/reference/vds-cli-reference.md +0 -34
  659. package/tools/vds-scripts/docs/agents/reference/who-capability-inventory.md +0 -96
  660. package/tools/vds-scripts/docs/agents/reference/who-capability-routing-matrix.md +0 -14
  661. package/tools/vds-scripts/docs/agents/tutorials/feature-progression-guide.md +0 -112
  662. package/tools/vds-scripts/docs/agents/tutorials/index.md +0 -36
  663. package/tools/vds-scripts/docs/agents/tutorials/quick-start.md +0 -50
  664. package/tools/vds-scripts/docs/agents/tutorials/who-skills-and-scripts-onboarding.md +0 -47
  665. package/tools/vds-scripts/docs/agents/tutorials/zero-to-productive-developer.md +0 -339
  666. package/tools/vds-scripts/docs/confluence/IMPLEMENTATION-SUMMARY.md +0 -78
  667. package/tools/vds-scripts/docs/confluence/SYNC-GUIDE.md +0 -47
  668. package/tools/vds-scripts/docs/deployment/offline-docker-image-load.md +0 -59
  669. package/tools/vds-scripts/docs/evolution-auto-run-rollout.md +0 -325
  670. package/tools/vds-scripts/docs/evolution-loop-deep-integration.md +0 -496
  671. package/tools/vds-scripts/docs/evolution-loop-integration-guide.md +0 -359
  672. package/tools/vds-scripts/docs/openspace-schema-snapshot.md +0 -73
  673. package/tools/vds-scripts/docs/operations/sla-mttr-policy.md +0 -44
  674. package/tools/vds-scripts/docs/p0-closure-evidence/SUMMARY.md +0 -58
  675. package/tools/vds-scripts/docs/p4-closure-evidence/.gitkeep +0 -0
  676. package/tools/vds-scripts/docs/p4-closure-evidence/smoke-20260427T024137Z-b95b586b.json +0 -15
  677. package/tools/vds-scripts/docs/p8-preflight-evidence/alembic-and-runtime-advisory-locks.md +0 -45
  678. package/tools/vds-scripts/docs/p8-preflight-evidence/dbos-listen-notify.md +0 -54
  679. package/tools/vds-scripts/docs/p8-preflight-evidence/pgbouncer-search-path-empirical.md +0 -110
  680. package/tools/vds-scripts/docs/p8-preflight-evidence/pgvector-set-local-audit.md +0 -51
  681. package/tools/vds-scripts/docs/p8-preflight-evidence/topology-decision-session-mode.md +0 -57
  682. package/tools/vds-scripts/docs/phases/CHANGELOG.md +0 -103
  683. package/tools/vds-scripts/docs/phases/PHASE_125_COMPLETION_AND_MERGE.md +0 -212
  684. package/tools/vds-scripts/docs/phases/phase125/IMPLEMENTATION_REPORT.md +0 -227
  685. package/tools/vds-scripts/docs/phases/phase125/TSK-125.10-11-implementation-summary.md +0 -196
  686. package/tools/vds-scripts/docs/phases/phase125/profile-patch-ollama-local-anthropic.md +0 -122
  687. package/tools/vds-scripts/docs/phases/phase125_completion_summary.md +0 -369
  688. package/tools/vds-scripts/docs/phases/phase125_llm_analysis_skill.md +0 -164
  689. package/tools/vds-scripts/docs/phases/phase125_merge_complete.md +0 -147
  690. package/tools/vds-scripts/docs/phases/phase125_skill_runtime_closure_20260321.md +0 -91
  691. package/tools/vds-scripts/docs/phases/phase2-portable-paths/closure-handoff-summary-2026-03-23.md +0 -290
  692. package/tools/vds-scripts/docs/phases/phase2-portable-paths/remaining-risk-register-2026-03-25.md +0 -143
  693. package/tools/vds-scripts/docs/phases/phase2-portable-paths/verification-evidence-2026-03-23.md +0 -135
  694. package/tools/vds-scripts/docs/v0-sunset-known-issues.md +0 -88
  695. package/tools/vds-scripts/docs/vi/TRANSLATION-BACKLOG.md +0 -72
  696. package/tools/vds-scripts/docs/vi/agents/README.md +0 -41
  697. package/tools/vds-scripts/docs/vi/agents/explanation/features-overview.md +0 -29
  698. package/tools/vds-scripts/docs/vi/agents/explanation/index.md +0 -14
  699. package/tools/vds-scripts/docs/vi/agents/explanation/runtime-verification-and-gap-reporting.md +0 -129
  700. package/tools/vds-scripts/docs/vi/agents/explanation/whats-new.md +0 -37
  701. package/tools/vds-scripts/docs/vi/agents/explanation/who-ecosystem-introduction.md +0 -21
  702. package/tools/vds-scripts/docs/vi/agents/explanation/who-ecosystem-model.md +0 -36
  703. package/tools/vds-scripts/docs/vi/agents/how-to/02-using-vds-ai-memory.md +0 -100
  704. package/tools/vds-scripts/docs/vi/agents/how-to/03-memory-cross-agent.md +0 -243
  705. package/tools/vds-scripts/docs/vi/agents/how-to/04-using-progress-reports.md +0 -242
  706. package/tools/vds-scripts/docs/vi/agents/how-to/08-semantic-search.md +0 -16
  707. package/tools/vds-scripts/docs/vi/agents/how-to/choose-the-right-command-or-skill.md +0 -36
  708. package/tools/vds-scripts/docs/vi/agents/how-to/decision-tree.md +0 -77
  709. package/tools/vds-scripts/docs/vi/agents/how-to/first-audit-run.md +0 -85
  710. package/tools/vds-scripts/docs/vi/agents/how-to/index.md +0 -21
  711. package/tools/vds-scripts/docs/vi/agents/how-to/install-and-bootstrap-who-scripts-and-skills.md +0 -156
  712. package/tools/vds-scripts/docs/vi/agents/how-to/orchestrator-workflows/analytics-pipeline-workflow.md +0 -174
  713. package/tools/vds-scripts/docs/vi/agents/how-to/orchestrator-workflows/code-quality-gate-workflow.md +0 -147
  714. package/tools/vds-scripts/docs/vi/agents/how-to/orchestrator-workflows/confluence-bitbucket-sync-workflow.md +0 -139
  715. package/tools/vds-scripts/docs/vi/agents/how-to/orchestrator-workflows/document-delivery-workflow.md +0 -151
  716. package/tools/vds-scripts/docs/vi/agents/how-to/orchestrator-workflows/memory-progress-workflow.md +0 -149
  717. package/tools/vds-scripts/docs/vi/agents/how-to/orchestrator-workflows/research-spec-audit-workflow.md +0 -144
  718. package/tools/vds-scripts/docs/vi/agents/how-to/phase131-all-project-preparation.md +0 -213
  719. package/tools/vds-scripts/docs/vi/agents/how-to/phase131-bounded-parallel-analysis.md +0 -125
  720. package/tools/vds-scripts/docs/vi/agents/how-to/phase131-confluence-upload-recovery.md +0 -206
  721. package/tools/vds-scripts/docs/vi/agents/how-to/phase132-department-preparation.md +0 -146
  722. package/tools/vds-scripts/docs/vi/agents/how-to/tips-and-tricks.md +0 -34
  723. package/tools/vds-scripts/docs/vi/agents/how-to/troubleshooting-guide.md +0 -36
  724. package/tools/vds-scripts/docs/vi/agents/reference/agent-operational-contract.md +0 -98
  725. package/tools/vds-scripts/docs/vi/agents/reference/audit-triage-playbook.md +0 -258
  726. package/tools/vds-scripts/docs/vi/agents/reference/bitbucket-orchestrator.md +0 -30
  727. package/tools/vds-scripts/docs/vi/agents/reference/brd-orchestrator.md +0 -29
  728. package/tools/vds-scripts/docs/vi/agents/reference/capability-coverage-review.md +0 -46
  729. package/tools/vds-scripts/docs/vi/agents/reference/circular-dependency-orchestrator.md +0 -29
  730. package/tools/vds-scripts/docs/vi/agents/reference/cli-commands.md +0 -409
  731. package/tools/vds-scripts/docs/vi/agents/reference/cli-development-standards.md +0 -19
  732. package/tools/vds-scripts/docs/vi/agents/reference/cli-help-matrix.md +0 -71
  733. package/tools/vds-scripts/docs/vi/agents/reference/common-errors.md +0 -133
  734. package/tools/vds-scripts/docs/vi/agents/reference/configuration-reference.md +0 -25
  735. package/tools/vds-scripts/docs/vi/agents/reference/confluence-orchestrator.md +0 -30
  736. package/tools/vds-scripts/docs/vi/agents/reference/db-query-orchestrator.md +0 -34
  737. package/tools/vds-scripts/docs/vi/agents/reference/diagrams-orchestrator.md +0 -31
  738. package/tools/vds-scripts/docs/vi/agents/reference/elastic-orchestrator.md +0 -30
  739. package/tools/vds-scripts/docs/vi/agents/reference/evolution-orchestrator.md +0 -31
  740. package/tools/vds-scripts/docs/vi/agents/reference/excel-orchestrator.md +0 -60
  741. package/tools/vds-scripts/docs/vi/agents/reference/git-orchestrator.md +0 -31
  742. package/tools/vds-scripts/docs/vi/agents/reference/google-sheets-orchestrator.md +0 -60
  743. package/tools/vds-scripts/docs/vi/agents/reference/grafana-orchestrator.md +0 -30
  744. package/tools/vds-scripts/docs/vi/agents/reference/hexagonal-orchestrator.md +0 -73
  745. package/tools/vds-scripts/docs/vi/agents/reference/index.md +0 -25
  746. package/tools/vds-scripts/docs/vi/agents/reference/intellij-orchestrator.md +0 -59
  747. package/tools/vds-scripts/docs/vi/agents/reference/jira-orchestrator.md +0 -32
  748. package/tools/vds-scripts/docs/vi/agents/reference/links-orchestrator.md +0 -66
  749. package/tools/vds-scripts/docs/vi/agents/reference/lsp-orchestrator.md +0 -60
  750. package/tools/vds-scripts/docs/vi/agents/reference/markdown-orchestrator.md +0 -62
  751. package/tools/vds-scripts/docs/vi/agents/reference/mcp-orchestrator.md +0 -34
  752. package/tools/vds-scripts/docs/vi/agents/reference/memory-orchestrator.md +0 -45
  753. package/tools/vds-scripts/docs/vi/agents/reference/metabase-orchestrator.md +0 -30
  754. package/tools/vds-scripts/docs/vi/agents/reference/multi-agent-orchestrator.md +0 -61
  755. package/tools/vds-scripts/docs/vi/agents/reference/openapi-orchestrator.md +0 -66
  756. package/tools/vds-scripts/docs/vi/agents/reference/orchestrator-architecture.md +0 -24
  757. package/tools/vds-scripts/docs/vi/agents/reference/orchestrator-index.md +0 -73
  758. package/tools/vds-scripts/docs/vi/agents/reference/pdf-orchestrator.md +0 -30
  759. package/tools/vds-scripts/docs/vi/agents/reference/portable-paths-and-config.md +0 -123
  760. package/tools/vds-scripts/docs/vi/agents/reference/portable-paths-validation-matrix.md +0 -131
  761. package/tools/vds-scripts/docs/vi/agents/reference/progress-orchestrator.md +0 -43
  762. package/tools/vds-scripts/docs/vi/agents/reference/progress-report-cli.md +0 -217
  763. package/tools/vds-scripts/docs/vi/agents/reference/public-interface-orchestrator.md +0 -82
  764. package/tools/vds-scripts/docs/vi/agents/reference/research-orchestrator.md +0 -45
  765. package/tools/vds-scripts/docs/vi/agents/reference/schema-orchestrator.md +0 -66
  766. package/tools/vds-scripts/docs/vi/agents/reference/search-tools.md +0 -19
  767. package/tools/vds-scripts/docs/vi/agents/reference/skills-reference.md +0 -27
  768. package/tools/vds-scripts/docs/vi/agents/reference/sonarqube-orchestrator.md +0 -71
  769. package/tools/vds-scripts/docs/vi/agents/reference/spec-orchestrator.md +0 -56
  770. package/tools/vds-scripts/docs/vi/agents/reference/structure-orchestrator.md +0 -78
  771. package/tools/vds-scripts/docs/vi/agents/reference/system-requirements.md +0 -30
  772. package/tools/vds-scripts/docs/vi/agents/reference/tasks-orchestrator.md +0 -45
  773. package/tools/vds-scripts/docs/vi/agents/reference/validation-and-sync-notes.md +0 -26
  774. package/tools/vds-scripts/docs/vi/agents/reference/vds-ai-memory-api.md +0 -53
  775. package/tools/vds-scripts/docs/vi/agents/reference/vds-cli-reference.md +0 -34
  776. package/tools/vds-scripts/docs/vi/agents/reference/who-capability-inventory.md +0 -98
  777. package/tools/vds-scripts/docs/vi/agents/reference/who-capability-routing-matrix.md +0 -16
  778. package/tools/vds-scripts/docs/vi/agents/tutorials/feature-progression-guide.md +0 -124
  779. package/tools/vds-scripts/docs/vi/agents/tutorials/index.md +0 -13
  780. package/tools/vds-scripts/docs/vi/agents/tutorials/quick-start.md +0 -30
  781. package/tools/vds-scripts/docs/vi/agents/tutorials/who-skills-and-scripts-onboarding.md +0 -42
  782. package/tools/vds-scripts/docs/vi/agents/tutorials/zero-to-productive-developer.md +0 -137
  783. package/tools/vds-scripts/elastic_orchestrator/README.md +0 -450
  784. package/tools/vds-scripts/elastic_orchestrator/pyproject.toml +0 -97
  785. package/tools/vds-scripts/elastic_orchestrator/src/vds_elastic_orchestrator/__init__.py +0 -81
  786. package/tools/vds-scripts/elastic_orchestrator/src/vds_elastic_orchestrator/cli.py +0 -652
  787. package/tools/vds-scripts/elastic_orchestrator/src/vds_elastic_orchestrator/client.py +0 -743
  788. package/tools/vds-scripts/elastic_orchestrator/src/vds_elastic_orchestrator/config.py +0 -208
  789. package/tools/vds-scripts/elastic_orchestrator/src/vds_elastic_orchestrator/errors.py +0 -34
  790. package/tools/vds-scripts/elastic_orchestrator/src/vds_elastic_orchestrator/py.typed +0 -0
  791. package/tools/vds-scripts/elastic_orchestrator/tests/__init__.py +0 -0
  792. package/tools/vds-scripts/elastic_orchestrator/tests/conftest.py +0 -227
  793. package/tools/vds-scripts/elastic_orchestrator/tests/test_client.py +0 -990
  794. package/tools/vds-scripts/elastic_orchestrator/tests/test_config.py +0 -268
  795. package/tools/vds-scripts/elastic_orchestrator/tests/test_e2e_verification.py +0 -272
  796. package/tools/vds-scripts/elastic_orchestrator/tests/test_errors.py +0 -78
  797. package/tools/vds-scripts/git_orchestrator/ENHANCEMENT_SUMMARY.md +0 -119
  798. package/tools/vds-scripts/git_orchestrator/README.md +0 -286
  799. package/tools/vds-scripts/git_orchestrator/VERIFICATION_REPORT.md +0 -152
  800. package/tools/vds-scripts/git_orchestrator/pyproject.toml +0 -37
  801. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/__init__.py +0 -30
  802. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/__main__.py +0 -4
  803. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/branch_probe.py +0 -271
  804. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/cli.py +0 -892
  805. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/logging_config.py +0 -63
  806. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/manifest.py +0 -249
  807. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/orchestrator.py +0 -1647
  808. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/protocols.py +0 -35
  809. package/tools/vds-scripts/git_orchestrator/src/vds_git_orchestrator/reporting.py +0 -55
  810. package/tools/vds-scripts/git_orchestrator/tests/__init__.py +0 -0
  811. package/tools/vds-scripts/git_orchestrator/tests/test_cli_settings.py +0 -19
  812. package/tools/vds-scripts/git_orchestrator/tests/test_integration.py +0 -79
  813. package/tools/vds-scripts/git_orchestrator/tests/test_manifest.py +0 -79
  814. package/tools/vds-scripts/git_orchestrator/tests/test_orchestrator.py +0 -207
  815. package/tools/vds-scripts/git_orchestrator/tests/test_public_api.py +0 -235
  816. package/tools/vds-scripts/git_orchestrator/tests/test_resilience.py +0 -343
  817. package/tools/vds-scripts/git_orchestrator/tests/unit/__init__.py +0 -0
  818. package/tools/vds-scripts/git_orchestrator/tests/unit/test_branch_probe.py +0 -327
  819. package/tools/vds-scripts/git_orchestrator/tests/unit/test_protocols.py +0 -132
  820. package/tools/vds-scripts/google_sheets_orchestrator/README.md +0 -241
  821. package/tools/vds-scripts/google_sheets_orchestrator/pyproject.toml +0 -45
  822. package/tools/vds-scripts/google_sheets_orchestrator/src/vds_google_sheets_orchestrator/__init__.py +0 -69
  823. package/tools/vds-scripts/google_sheets_orchestrator/src/vds_google_sheets_orchestrator/cli.py +0 -568
  824. package/tools/vds-scripts/google_sheets_orchestrator/src/vds_google_sheets_orchestrator/client.py +0 -186
  825. package/tools/vds-scripts/google_sheets_orchestrator/src/vds_google_sheets_orchestrator/config.py +0 -46
  826. package/tools/vds-scripts/google_sheets_orchestrator/src/vds_google_sheets_orchestrator/errors.py +0 -41
  827. package/tools/vds-scripts/google_sheets_orchestrator/tests/__init__.py +0 -1
  828. package/tools/vds-scripts/google_sheets_orchestrator/tests/conftest.py +0 -1
  829. package/tools/vds-scripts/google_sheets_orchestrator/tests/unit/__init__.py +0 -1
  830. package/tools/vds-scripts/google_sheets_orchestrator/tests/unit/test_cli.py +0 -212
  831. package/tools/vds-scripts/google_sheets_orchestrator/tests/unit/test_client.py +0 -24
  832. package/tools/vds-scripts/google_sheets_orchestrator/tests/unit/test_config.py +0 -16
  833. package/tools/vds-scripts/grafana_orchestrator/README.md +0 -572
  834. package/tools/vds-scripts/grafana_orchestrator/pyproject.toml +0 -102
  835. package/tools/vds-scripts/grafana_orchestrator/src/vds_grafana_orchestrator/__init__.py +0 -78
  836. package/tools/vds-scripts/grafana_orchestrator/src/vds_grafana_orchestrator/cli.py +0 -455
  837. package/tools/vds-scripts/grafana_orchestrator/src/vds_grafana_orchestrator/client.py +0 -700
  838. package/tools/vds-scripts/grafana_orchestrator/src/vds_grafana_orchestrator/config.py +0 -243
  839. package/tools/vds-scripts/grafana_orchestrator/src/vds_grafana_orchestrator/errors.py +0 -34
  840. package/tools/vds-scripts/grafana_orchestrator/src/vds_grafana_orchestrator/py.typed +0 -1
  841. package/tools/vds-scripts/grafana_orchestrator/tests/__init__.py +0 -1
  842. package/tools/vds-scripts/grafana_orchestrator/tests/conftest.py +0 -308
  843. package/tools/vds-scripts/grafana_orchestrator/tests/test_client.py +0 -458
  844. package/tools/vds-scripts/grafana_orchestrator/tests/test_config.py +0 -203
  845. package/tools/vds-scripts/grafana_orchestrator/tests/test_errors.py +0 -78
  846. package/tools/vds-scripts/jira_orchestrator/README.md +0 -864
  847. package/tools/vds-scripts/jira_orchestrator/pyproject.toml +0 -43
  848. package/tools/vds-scripts/jira_orchestrator/src/vds_jira_orchestrator/__init__.py +0 -65
  849. package/tools/vds-scripts/jira_orchestrator/src/vds_jira_orchestrator/adapter.py +0 -1685
  850. package/tools/vds-scripts/jira_orchestrator/src/vds_jira_orchestrator/cli.py +0 -2806
  851. package/tools/vds-scripts/jira_orchestrator/src/vds_jira_orchestrator/config.py +0 -168
  852. package/tools/vds-scripts/jira_orchestrator/src/vds_jira_orchestrator/errors.py +0 -34
  853. package/tools/vds-scripts/jira_orchestrator/src/vds_jira_orchestrator/reporting.py +0 -66
  854. package/tools/vds-scripts/jira_orchestrator/tests/__init__.py +0 -1
  855. package/tools/vds-scripts/jira_orchestrator/tests/conftest.py +0 -86
  856. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_agile_list_payloads.py +0 -54
  857. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_bulk_operations.py +0 -91
  858. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_components.py +0 -56
  859. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_createmeta.py +0 -45
  860. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_dashboard.py +0 -119
  861. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_issue_properties.py +0 -53
  862. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_permissions_compat.py +0 -41
  863. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_reindex.py +0 -42
  864. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_remote_links.py +0 -75
  865. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_transitions.py +0 -90
  866. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_user_management.py +0 -116
  867. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_version_management.py +0 -181
  868. package/tools/vds-scripts/jira_orchestrator/tests/test_adapter_watchers.py +0 -43
  869. package/tools/vds-scripts/jira_orchestrator/tests/test_advanced_search.py +0 -179
  870. package/tools/vds-scripts/jira_orchestrator/tests/test_agile.py +0 -304
  871. package/tools/vds-scripts/jira_orchestrator/tests/test_application_properties.py +0 -243
  872. package/tools/vds-scripts/jira_orchestrator/tests/test_backlog.py +0 -91
  873. package/tools/vds-scripts/jira_orchestrator/tests/test_bulk_operations.py +0 -403
  874. package/tools/vds-scripts/jira_orchestrator/tests/test_cli.py +0 -108
  875. package/tools/vds-scripts/jira_orchestrator/tests/test_components.py +0 -119
  876. package/tools/vds-scripts/jira_orchestrator/tests/test_config.py +0 -166
  877. package/tools/vds-scripts/jira_orchestrator/tests/test_dashboard.py +0 -122
  878. package/tools/vds-scripts/jira_orchestrator/tests/test_discover_fields.py +0 -207
  879. package/tools/vds-scripts/jira_orchestrator/tests/test_errors.py +0 -72
  880. package/tools/vds-scripts/jira_orchestrator/tests/test_filter_management.py +0 -411
  881. package/tools/vds-scripts/jira_orchestrator/tests/test_issue_archiving.py +0 -179
  882. package/tools/vds-scripts/jira_orchestrator/tests/test_issue_links.py +0 -257
  883. package/tools/vds-scripts/jira_orchestrator/tests/test_issue_properties.py +0 -189
  884. package/tools/vds-scripts/jira_orchestrator/tests/test_link_types.py +0 -407
  885. package/tools/vds-scripts/jira_orchestrator/tests/test_parse_set.py +0 -37
  886. package/tools/vds-scripts/jira_orchestrator/tests/test_permissions.py +0 -343
  887. package/tools/vds-scripts/jira_orchestrator/tests/test_reindex.py +0 -81
  888. package/tools/vds-scripts/jira_orchestrator/tests/test_remote_links.py +0 -269
  889. package/tools/vds-scripts/jira_orchestrator/tests/test_security_schemes.py +0 -202
  890. package/tools/vds-scripts/jira_orchestrator/tests/test_transitions_changelog.py +0 -109
  891. package/tools/vds-scripts/jira_orchestrator/tests/test_user_management.py +0 -246
  892. package/tools/vds-scripts/jira_orchestrator/tests/test_version_management.py +0 -503
  893. package/tools/vds-scripts/jira_orchestrator/tests/test_watchers.py +0 -116
  894. package/tools/vds-scripts/jira_orchestrator/tests/test_worklog.py +0 -243
  895. package/tools/vds-scripts/jira_viettelmoney_orchestrator/README.md +0 -864
  896. package/tools/vds-scripts/jira_viettelmoney_orchestrator/pyproject.toml +0 -43
  897. package/tools/vds-scripts/jira_viettelmoney_orchestrator/src/vds_jira_viettelmoney_orchestrator/__init__.py +0 -65
  898. package/tools/vds-scripts/jira_viettelmoney_orchestrator/src/vds_jira_viettelmoney_orchestrator/adapter.py +0 -1689
  899. package/tools/vds-scripts/jira_viettelmoney_orchestrator/src/vds_jira_viettelmoney_orchestrator/cli.py +0 -2799
  900. package/tools/vds-scripts/jira_viettelmoney_orchestrator/src/vds_jira_viettelmoney_orchestrator/config.py +0 -137
  901. package/tools/vds-scripts/jira_viettelmoney_orchestrator/src/vds_jira_viettelmoney_orchestrator/errors.py +0 -34
  902. package/tools/vds-scripts/jira_viettelmoney_orchestrator/src/vds_jira_viettelmoney_orchestrator/reporting.py +0 -65
  903. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/__init__.py +0 -1
  904. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/conftest.py +0 -86
  905. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_agile_list_payloads.py +0 -54
  906. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_bulk_operations.py +0 -101
  907. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_components.py +0 -64
  908. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_createmeta.py +0 -45
  909. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_dashboard.py +0 -135
  910. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_issue_properties.py +0 -63
  911. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_permissions_compat.py +0 -42
  912. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_reindex.py +0 -42
  913. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_remote_links.py +0 -89
  914. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_transitions.py +0 -91
  915. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_user_management.py +0 -130
  916. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_version_management.py +0 -189
  917. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_adapter_watchers.py +0 -49
  918. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_advanced_search.py +0 -213
  919. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_agile.py +0 -334
  920. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_application_properties.py +0 -261
  921. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_backlog.py +0 -91
  922. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_bulk_operations.py +0 -443
  923. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_cli.py +0 -106
  924. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_components.py +0 -133
  925. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_config.py +0 -166
  926. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_dashboard.py +0 -130
  927. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_discover_fields.py +0 -207
  928. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_errors.py +0 -61
  929. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_filter_management.py +0 -478
  930. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_issue_archiving.py +0 -181
  931. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_issue_links.py +0 -257
  932. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_issue_properties.py +0 -203
  933. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_link_types.py +0 -426
  934. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_parse_set.py +0 -37
  935. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_permissions.py +0 -358
  936. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_reindex.py +0 -81
  937. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_remote_links.py +0 -292
  938. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_security_schemes.py +0 -218
  939. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_transitions_changelog.py +0 -121
  940. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_user_management.py +0 -283
  941. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_version_management.py +0 -561
  942. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_watchers.py +0 -128
  943. package/tools/vds-scripts/jira_viettelmoney_orchestrator/tests/test_worklog.py +0 -265
  944. package/tools/vds-scripts/llms.txt +0 -159
  945. package/tools/vds-scripts/mcp_server/Dockerfile +0 -63
  946. package/tools/vds-scripts/mcp_server/README.md +0 -140
  947. package/tools/vds-scripts/mcp_server/pyproject.toml +0 -41
  948. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/__init__.py +0 -3
  949. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/config.py +0 -36
  950. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/server.py +0 -111
  951. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/tools/__init__.py +0 -15
  952. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/tools/bitbucket_tools.py +0 -47
  953. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/tools/confluence_tools.py +0 -53
  954. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/tools/git_tools.py +0 -71
  955. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/tools/jira_tools.py +0 -63
  956. package/tools/vds-scripts/mcp_server/src/vds_mcp_server/tools/vidp_tools.py +0 -64
  957. package/tools/vds-scripts/mcp_server/tests/__init__.py +0 -1
  958. package/tools/vds-scripts/mcp_server/tests/conftest.py +0 -31
  959. package/tools/vds-scripts/mcp_server/tests/unit/__init__.py +0 -1
  960. package/tools/vds-scripts/mcp_server/tests/unit/test_bitbucket_tools.py +0 -28
  961. package/tools/vds-scripts/mcp_server/tests/unit/test_confluence_tools.py +0 -28
  962. package/tools/vds-scripts/mcp_server/tests/unit/test_git_tools.py +0 -35
  963. package/tools/vds-scripts/mcp_server/tests/unit/test_jira_tools.py +0 -35
  964. package/tools/vds-scripts/mcp_server/tests/verification/__init__.py +0 -6
  965. package/tools/vds-scripts/mcp_server/tests/verification/conftest.py +0 -51
  966. package/tools/vds-scripts/mcp_server/tests/verification/test_mcp_confluence_tools.py +0 -40
  967. package/tools/vds-scripts/mcp_server/tests/verification/test_mcp_jira_tools.py +0 -39
  968. package/tools/vds-scripts/mcp_server/tests/verification/test_mcp_tool_registration.py +0 -50
  969. package/tools/vds-scripts/memory_orchestrator/.env.example +0 -109
  970. package/tools/vds-scripts/memory_orchestrator/Dockerfile +0 -103
  971. package/tools/vds-scripts/memory_orchestrator/README.md +0 -203
  972. package/tools/vds-scripts/memory_orchestrator/alembic/env.py +0 -35
  973. package/tools/vds-scripts/memory_orchestrator/alembic/script.py.mako +0 -28
  974. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0001_add_team_id_to_vector_search_history.py +0 -57
  975. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0002_nullable_query_text_vector_search_history.py +0 -47
  976. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0003_create_memory_vectors_if_missing.py +0 -49
  977. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0004_create_memory_duplicate_groups_and_members.py +0 -61
  978. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0005_create_search_queries_if_missing.py +0 -57
  979. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0006_create_export_import_jobs_if_missing.py +0 -52
  980. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0007_create_remaining_orm_tables.py +0 -145
  981. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0008_alter_export_import_jobs_user_id_to_varchar.py +0 -55
  982. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0009_create_core_tables_if_missing.py +0 -197
  983. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0010_create_service_accounts.py +0 -75
  984. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0011_create_users_table.py +0 -106
  985. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0012_audit_log_v3.py +0 -107
  986. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0042_memory_dedup_resolutions.py +0 -67
  987. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0043_memory_records_tombstones.py +0 -68
  988. package/tools/vds-scripts/memory_orchestrator/alembic/versions/0044_memory_evolution_shadow_soak_state.py +0 -69
  989. package/tools/vds-scripts/memory_orchestrator/alembic.ini +0 -65
  990. package/tools/vds-scripts/memory_orchestrator/conftest.py +0 -42
  991. package/tools/vds-scripts/memory_orchestrator/create_analytics_tables.sql +0 -289
  992. package/tools/vds-scripts/memory_orchestrator/create_memory_evolution_tables.sql +0 -104
  993. package/tools/vds-scripts/memory_orchestrator/create_memory_vectors_table.sql +0 -26
  994. package/tools/vds-scripts/memory_orchestrator/init-db-simple.sql +0 -16
  995. package/tools/vds-scripts/memory_orchestrator/pyproject.toml +0 -169
  996. package/tools/vds-scripts/memory_orchestrator/scripts/__init__.py +0 -0
  997. package/tools/vds-scripts/memory_orchestrator/scripts/deploy.sh +0 -112
  998. package/tools/vds-scripts/memory_orchestrator/scripts/entrypoint.sh +0 -130
  999. package/tools/vds-scripts/memory_orchestrator/scripts/mint_memory_client_service_token.py +0 -179
  1000. package/tools/vds-scripts/memory_orchestrator/scripts/recover_with_infer_false.py +0 -224
  1001. package/tools/vds-scripts/memory_orchestrator/scripts/soak-stalled-rate.sh +0 -95
  1002. package/tools/vds-scripts/memory_orchestrator/scripts/verify-track-alpha.sh +0 -110
  1003. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/__init__.py +0 -5
  1004. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/agents/__init__.py +0 -15
  1005. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/agents/_model_factory.py +0 -37
  1006. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/agents/consolidation.py +0 -49
  1007. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/agents/extraction.py +0 -56
  1008. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/agents/intent.py +0 -40
  1009. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/cli.py +0 -1457
  1010. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/client.py +0 -204
  1011. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/config/__init__.py +0 -0
  1012. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/config/memory_evolution.toml +0 -20
  1013. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/config/rules/__init__.py +0 -0
  1014. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/config/rules/storage_rules.yaml +0 -281
  1015. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/config/session_templates.json +0 -63
  1016. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/db/__init__.py +0 -10
  1017. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/db/alembic_filters.py +0 -66
  1018. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/formatters.py +0 -82
  1019. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/__init__.py +0 -25
  1020. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/__init__.py +0 -0
  1021. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/ai_memory_api.py +0 -1172
  1022. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/mcp_api.py +0 -854
  1023. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/openapi_config.py +0 -426
  1024. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/status_mapping.py +0 -91
  1025. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/__init__.py +0 -0
  1026. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/analytics.py +0 -1406
  1027. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/auth.py +0 -409
  1028. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/authorization.py +0 -474
  1029. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/cache.py +0 -51
  1030. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/cleanup.py +0 -286
  1031. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/deduplication.py +0 -546
  1032. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/dependencies.py +0 -349
  1033. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/embedding.py +0 -190
  1034. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/export_import.py +0 -596
  1035. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/health.py +0 -35
  1036. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/hooks.py +0 -145
  1037. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/maintenance.py +0 -653
  1038. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/promotion.py +0 -68
  1039. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/reconciliation.py +0 -102
  1040. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/sharing.py +0 -674
  1041. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/tasks.py +0 -72
  1042. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/api/v1/versioning.py +0 -483
  1043. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/brain/__init__.py +0 -0
  1044. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/brain/memory_manager.py +0 -914
  1045. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/brain/research_analyzer.py +0 -839
  1046. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/brain/vds_brain_agent.py +0 -1120
  1047. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/config/memory_dedup.toml +0 -15
  1048. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/__init__.py +0 -0
  1049. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/ai_memory_exceptions.py +0 -225
  1050. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/audit_log_writer.py +0 -59
  1051. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/auth.py +0 -350
  1052. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/config.py +0 -836
  1053. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/exceptions.py +0 -203
  1054. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/identity.py +0 -175
  1055. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/input_validation.py +0 -785
  1056. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/legacy_claim_normalizer.py +0 -142
  1057. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/rate_limit.py +0 -587
  1058. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/rbac_decorators.py +0 -531
  1059. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/redis.py +0 -446
  1060. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/scope_validator.py +0 -125
  1061. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/security.py +0 -109
  1062. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/security_middleware.py +0 -535
  1063. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/tests/__init__.py +0 -0
  1064. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/core/tests/test_input_validation.py +0 -68
  1065. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/database/__init__.py +0 -0
  1066. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/database/analytics_repository.py +0 -38
  1067. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/database/postgres_manager.py +0 -1897
  1068. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/database/rbac_migration.py +0 -57
  1069. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/database/redis_manager.py +0 -617
  1070. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/domain/__init__.py +0 -1
  1071. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/domain/entities/__init__.py +0 -1
  1072. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/domain/entities/user.py +0 -96
  1073. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/hooks/__init__.py +0 -0
  1074. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/hooks/storage_strategy_hook.py +0 -465
  1075. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/integrations/__init__.py +0 -0
  1076. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/integrations/memory_transformer.py +0 -827
  1077. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/main.py +0 -491
  1078. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/mcp/__init__.py +0 -20
  1079. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/mcp/env_config_parser.py +0 -188
  1080. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/mcp/official_mcp_client.py +0 -1574
  1081. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/mcp/working_mcp_interface.py +0 -340
  1082. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/__init__.py +0 -125
  1083. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/ai_memory_models.py +0 -1587
  1084. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/analytics_models.py +0 -766
  1085. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/auth_models.py +0 -460
  1086. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/database.py +0 -841
  1087. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/deduplication_models.py +0 -354
  1088. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/export_import_models.py +0 -353
  1089. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/rbac.py +0 -9
  1090. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/resource_ownership.py +0 -282
  1091. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/search_models.py +0 -427
  1092. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/search_models_additional.py +0 -322
  1093. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/models/sharing_models.py +0 -366
  1094. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/perf/__init__.py +0 -0
  1095. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/repositories/__init__.py +0 -1
  1096. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/repositories/dev_mode_user_repository.py +0 -194
  1097. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/repositories/postgres_user_repository.py +0 -280
  1098. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/repositories/service_account_repository.py +0 -330
  1099. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/repositories/user_repository.py +0 -77
  1100. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/__init__.py +0 -0
  1101. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/ai_memory_service.py +0 -2754
  1102. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/analytics_events.py +0 -104
  1103. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/analytics_service.py +0 -2825
  1104. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/auth.py +0 -207
  1105. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/embedding_service.py +0 -51
  1106. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/entity_backfill_service.py +0 -343
  1107. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/fallback_search_service.py +0 -327
  1108. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/health_check.py +0 -1556
  1109. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/mcp_integration_service.py +0 -224
  1110. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/mem0_adapter.py +0 -796
  1111. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/mem0_client.py +0 -48
  1112. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/mem0_sync_service.py +0 -484
  1113. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_admin_service.py +0 -1011
  1114. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_crud_service.py +0 -1469
  1115. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_deduplication.py +0 -1761
  1116. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/__init__.py +0 -17
  1117. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/celery_app.py +0 -70
  1118. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/celery_entrypoint.py +0 -15
  1119. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/config_loader.py +0 -275
  1120. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/consolidation_executor.py +0 -309
  1121. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/processor.py +0 -574
  1122. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/rules.py +0 -136
  1123. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/shadow_soak.py +0 -161
  1124. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/sweeper.py +0 -216
  1125. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/tracker.py +0 -265
  1126. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_evolution/worker.py +0 -780
  1127. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_export_import.py +0 -1403
  1128. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_search_service.py +0 -1164
  1129. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_sharing.py +0 -741
  1130. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/memory_versioning.py +0 -592
  1131. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/ownership_service.py +0 -798
  1132. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/promotion_service.py +0 -187
  1133. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/query_router_service.py +0 -523
  1134. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/rbac_service.py +0 -711
  1135. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/semantic_cache_service.py +0 -605
  1136. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/session_template_service.py +0 -76
  1137. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/storage_strategy/__init__.py +0 -35
  1138. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/storage_strategy/consolidation_worker.py +0 -384
  1139. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/storage_strategy/content_analyzer.py +0 -482
  1140. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/storage_strategy/pattern_matcher.py +0 -363
  1141. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/storage_strategy/rule_engine.py +0 -447
  1142. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/storage_strategy/storage_engine.py +0 -299
  1143. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/tool_registry_service.py +0 -544
  1144. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/triage_service.py +0 -250
  1145. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/services/vector_search_service.py +0 -497
  1146. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/use_cases/__init__.py +0 -1
  1147. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/use_cases/auth/__init__.py +0 -1
  1148. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/use_cases/auth/create_user_use_case.py +0 -96
  1149. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/use_cases/auth/exceptions.py +0 -94
  1150. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/use_cases/auth/login_use_case.py +0 -217
  1151. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/use_cases/auth/policies.py +0 -102
  1152. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/use_cases/auth/refresh_token_use_case.py +0 -86
  1153. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/utils/__init__.py +0 -0
  1154. package/tools/vds-scripts/memory_orchestrator/src/vds_memory_orchestrator/service/utils/data_transformer.py +0 -28
  1155. package/tools/vds-scripts/memory_orchestrator/tests/__init__.py +0 -0
  1156. package/tools/vds-scripts/memory_orchestrator/tests/auth/__init__.py +0 -6
  1157. package/tools/vds-scripts/memory_orchestrator/tests/auth/conftest.py +0 -124
  1158. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_acquire_jwt_token_deprecation.py +0 -176
  1159. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_alembic_0010_migration.py +0 -193
  1160. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_alembic_0011_users_migration.py +0 -234
  1161. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_alembic_0012_audit_log_v3_migration.py +0 -184
  1162. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_analytics_stream_machine_hint.py +0 -149
  1163. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_audit_log_identity_fields.py +0 -369
  1164. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_audit_log_v3_schema.py +0 -186
  1165. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_auth_api_endpoints.py +0 -264
  1166. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_authenticators.py +0 -343
  1167. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_conftest_factory.py +0 -108
  1168. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_create_user_use_case.py +0 -246
  1169. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_dependencies.py +0 -232
  1170. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_dev_mode_claim_fidelity.py +0 -87
  1171. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_dev_mode_parity.py +0 -187
  1172. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_dev_mode_user_repository.py +0 -271
  1173. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_get_current_identity.py +0 -403
  1174. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_identity.py +0 -272
  1175. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_jwt_auth.py +0 -658
  1176. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_legacy_callers_smoke.py +0 -141
  1177. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_legacy_claim_compat.py +0 -234
  1178. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_legacy_claim_normalizer.py +0 -315
  1179. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_lockout_policy.py +0 -124
  1180. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_login_use_case.py +0 -455
  1181. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_lsp_regression_contracts.py +0 -259
  1182. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_machine_context_detection.py +0 -160
  1183. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_me_endpoint_no_deprecation.py +0 -199
  1184. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_mint_service_token.py +0 -244
  1185. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_postgres_service_account_repository.py +0 -222
  1186. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_postgres_user_repository.py +0 -302
  1187. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_refresh_token_use_case.py +0 -187
  1188. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_scope_validator.py +0 -249
  1189. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_security.py +0 -158
  1190. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_service_account_entity.py +0 -146
  1191. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_service_account_repository_protocol.py +0 -60
  1192. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_token_precedence.py +0 -205
  1193. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_user_entity.py +0 -217
  1194. package/tools/vds-scripts/memory_orchestrator/tests/auth/test_user_repository_protocol.py +0 -141
  1195. package/tools/vds-scripts/memory_orchestrator/tests/cli/__init__.py +0 -1
  1196. package/tools/vds-scripts/memory_orchestrator/tests/cli/test_memory_create_user.py +0 -208
  1197. package/tools/vds-scripts/memory_orchestrator/tests/conftest.py +0 -184
  1198. package/tools/vds-scripts/memory_orchestrator/tests/integration/__init__.py +0 -0
  1199. package/tools/vds-scripts/memory_orchestrator/tests/integration/api/__init__.py +0 -0
  1200. package/tools/vds-scripts/memory_orchestrator/tests/integration/api/test_auth_login_e2e.py +0 -425
  1201. package/tools/vds-scripts/memory_orchestrator/tests/integration/api/test_health_strict_json.py +0 -197
  1202. package/tools/vds-scripts/memory_orchestrator/tests/integration/test_async_mode_status.py +0 -192
  1203. package/tools/vds-scripts/memory_orchestrator/tests/integration/test_vami020_dual_correctness.py +0 -218
  1204. package/tools/vds-scripts/memory_orchestrator/tests/integration/test_worktree_compose.py +0 -257
  1205. package/tools/vds-scripts/memory_orchestrator/tests/service/TEST_DOCUMENTATION.md +0 -467
  1206. package/tools/vds-scripts/memory_orchestrator/tests/service/__init__.py +0 -0
  1207. package/tools/vds-scripts/memory_orchestrator/tests/service/conftest.py +0 -1040
  1208. package/tools/vds-scripts/memory_orchestrator/tests/service/conftest_root.py +0 -63
  1209. package/tools/vds-scripts/memory_orchestrator/tests/service/postman/Local Environment.postman_environment.json +0 -46
  1210. package/tools/vds-scripts/memory_orchestrator/tests/service/postman/README.md +0 -302
  1211. package/tools/vds-scripts/memory_orchestrator/tests/service/postman/VDS Analytics API.postman_collection.json +0 -562
  1212. package/tools/vds-scripts/memory_orchestrator/tests/service/pytest.integration.ini +0 -21
  1213. package/tools/vds-scripts/memory_orchestrator/tests/service/pytest.unit.ini +0 -21
  1214. package/tools/vds-scripts/memory_orchestrator/tests/service/services/__init__.py +0 -0
  1215. package/tools/vds-scripts/memory_orchestrator/tests/service/services/test_health_aggregation.py +0 -370
  1216. package/tools/vds-scripts/memory_orchestrator/tests/service/test_ai_memory_api.py +0 -797
  1217. package/tools/vds-scripts/memory_orchestrator/tests/service/test_ai_memory_service.py +0 -1661
  1218. package/tools/vds-scripts/memory_orchestrator/tests/service/test_ai_memory_service_routing.py +0 -165
  1219. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_alerts.py +0 -89
  1220. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_api_integration.py +0 -604
  1221. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_bi.py +0 -49
  1222. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_dashboard_e2e.py +0 -106
  1223. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_dashboards.py +0 -127
  1224. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_enhanced.py +0 -575
  1225. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_external.py +0 -44
  1226. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_performance_metrics.py +0 -60
  1227. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_realtime.py +0 -63
  1228. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_reports.py +0 -138
  1229. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_service.py +0 -59
  1230. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_stream_cli.py +0 -305
  1231. package/tools/vds-scripts/memory_orchestrator/tests/service/test_analytics_websocket.py +0 -145
  1232. package/tools/vds-scripts/memory_orchestrator/tests/service/test_basic.py +0 -29
  1233. package/tools/vds-scripts/memory_orchestrator/tests/service/test_cache_warm_endpoint.py +0 -38
  1234. package/tools/vds-scripts/memory_orchestrator/tests/service/test_cache_warming_simple.py +0 -197
  1235. package/tools/vds-scripts/memory_orchestrator/tests/service/test_cache_warming_validation.py +0 -378
  1236. package/tools/vds-scripts/memory_orchestrator/tests/service/test_circuit_breaker_integration.py +0 -336
  1237. package/tools/vds-scripts/memory_orchestrator/tests/service/test_cleanup_endpoint.py +0 -126
  1238. package/tools/vds-scripts/memory_orchestrator/tests/service/test_concurrent_load.py +0 -603
  1239. package/tools/vds-scripts/memory_orchestrator/tests/service/test_cors_origins_validator.py +0 -48
  1240. package/tools/vds-scripts/memory_orchestrator/tests/service/test_drain_evolution.py +0 -130
  1241. package/tools/vds-scripts/memory_orchestrator/tests/service/test_embedding_lifecycle.py +0 -34
  1242. package/tools/vds-scripts/memory_orchestrator/tests/service/test_embedding_migration.py +0 -167
  1243. package/tools/vds-scripts/memory_orchestrator/tests/service/test_embedding_protocol_shape.py +0 -84
  1244. package/tools/vds-scripts/memory_orchestrator/tests/service/test_embedding_routes_w9.py +0 -340
  1245. package/tools/vds-scripts/memory_orchestrator/tests/service/test_embedding_service.py +0 -291
  1246. package/tools/vds-scripts/memory_orchestrator/tests/service/test_entity_backfill.py +0 -248
  1247. package/tools/vds-scripts/memory_orchestrator/tests/service/test_fallback_metrics.py +0 -582
  1248. package/tools/vds-scripts/memory_orchestrator/tests/service/test_fallback_search.py +0 -397
  1249. package/tools/vds-scripts/memory_orchestrator/tests/service/test_hooks.py +0 -149
  1250. package/tools/vds-scripts/memory_orchestrator/tests/service/test_include_internal_filter.py +0 -301
  1251. package/tools/vds-scripts/memory_orchestrator/tests/service/test_input_validation.py +0 -713
  1252. package/tools/vds-scripts/memory_orchestrator/tests/service/test_load_batch_endpoint.py +0 -300
  1253. package/tools/vds-scripts/memory_orchestrator/tests/service/test_maintenance_endpoints.py +0 -576
  1254. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mcp_integration_service.py +0 -99
  1255. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mem0_adapter_cloud.py +0 -111
  1256. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mem0_adapter_dual_mode.py +0 -112
  1257. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mem0_adapter_hybrid.py +0 -187
  1258. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mem0_adapter_return_shape.py +0 -188
  1259. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mem0_crud_integration.py +0 -190
  1260. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mem0_sync_fix.py +0 -349
  1261. package/tools/vds-scripts/memory_orchestrator/tests/service/test_mem0_sync_service_resolver.py +0 -106
  1262. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_client_maintenance.py +0 -121
  1263. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_consolidation_executor.py +0 -47
  1264. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_deduplication_service.py +0 -1275
  1265. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_evolution_phase232.py +0 -427
  1266. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_evolution_processor.py +0 -110
  1267. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_evolution_rules.py +0 -29
  1268. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_evolution_sweeper.py +0 -17
  1269. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_evolution_tracker.py +0 -190
  1270. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_export_import.py +0 -79
  1271. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_sharing_service.py +0 -121
  1272. package/tools/vds-scripts/memory_orchestrator/tests/service/test_memory_versioning.py +0 -155
  1273. package/tools/vds-scripts/memory_orchestrator/tests/service/test_ollama_gating.py +0 -58
  1274. package/tools/vds-scripts/memory_orchestrator/tests/service/test_ownership_integration.py +0 -678
  1275. package/tools/vds-scripts/memory_orchestrator/tests/service/test_phase175_health_probe_and_get_event_guard.py +0 -131
  1276. package/tools/vds-scripts/memory_orchestrator/tests/service/test_postgres_pool_settings.py +0 -38
  1277. package/tools/vds-scripts/memory_orchestrator/tests/service/test_postgres_query_metrics.py +0 -28
  1278. package/tools/vds-scripts/memory_orchestrator/tests/service/test_postgres_update_cas.py +0 -86
  1279. package/tools/vds-scripts/memory_orchestrator/tests/service/test_rate_limit.py +0 -551
  1280. package/tools/vds-scripts/memory_orchestrator/tests/service/test_rbac.py +0 -661
  1281. package/tools/vds-scripts/memory_orchestrator/tests/service/test_recover_with_infer_false.py +0 -210
  1282. package/tools/vds-scripts/memory_orchestrator/tests/service/test_remote_endpoints.py +0 -59
  1283. package/tools/vds-scripts/memory_orchestrator/tests/service/test_schema_migration.py +0 -267
  1284. package/tools/vds-scripts/memory_orchestrator/tests/service/test_search_service_unwrap.py +0 -38
  1285. package/tools/vds-scripts/memory_orchestrator/tests/service/test_security_integration.py +0 -699
  1286. package/tools/vds-scripts/memory_orchestrator/tests/service/test_security_middleware.py +0 -532
  1287. package/tools/vds-scripts/memory_orchestrator/tests/service/test_semantic_cache_telemetry.py +0 -300
  1288. package/tools/vds-scripts/memory_orchestrator/tests/service/test_session_template_endpoints.py +0 -99
  1289. package/tools/vds-scripts/memory_orchestrator/tests/service/test_session_template_service.py +0 -77
  1290. package/tools/vds-scripts/memory_orchestrator/tests/service/test_sharing_api.py +0 -202
  1291. package/tools/vds-scripts/memory_orchestrator/tests/service/test_storage_strategy.py +0 -46
  1292. package/tools/vds-scripts/memory_orchestrator/tests/service/test_tasks_endpoint.py +0 -80
  1293. package/tools/vds-scripts/memory_orchestrator/tests/service/test_temporal_filters.py +0 -653
  1294. package/tools/vds-scripts/memory_orchestrator/tests/service/test_topic_clustering_benchmark.py +0 -657
  1295. package/tools/vds-scripts/memory_orchestrator/tests/service/test_triage.py +0 -346
  1296. package/tools/vds-scripts/memory_orchestrator/tests/service/test_unit_comprehensive.py +0 -1054
  1297. package/tools/vds-scripts/memory_orchestrator/tests/service/test_versioning_api.py +0 -81
  1298. package/tools/vds-scripts/memory_orchestrator/tests/service/test_wave2a_reconciliation.py +0 -422
  1299. package/tools/vds-scripts/memory_orchestrator/tests/service/test_wave3_stall_metrics.py +0 -578
  1300. package/tools/vds-scripts/memory_orchestrator/tests/service/test_websocket_auth.py +0 -227
  1301. package/tools/vds-scripts/memory_orchestrator/tests/service/test_writeback_classification.py +0 -55
  1302. package/tools/vds-scripts/memory_orchestrator/tests/test_agents/__init__.py +0 -0
  1303. package/tools/vds-scripts/memory_orchestrator/tests/test_agents/test_consolidation_agent.py +0 -128
  1304. package/tools/vds-scripts/memory_orchestrator/tests/test_agents/test_extraction_agent.py +0 -140
  1305. package/tools/vds-scripts/memory_orchestrator/tests/test_agents/test_intent_agent.py +0 -120
  1306. package/tools/vds-scripts/memory_orchestrator/tests/test_agents/test_model_factory.py +0 -85
  1307. package/tools/vds-scripts/memory_orchestrator/tests/test_agents/test_wiring.py +0 -267
  1308. package/tools/vds-scripts/memory_orchestrator/tests/test_alembic_migrations_phase229.py +0 -433
  1309. package/tools/vds-scripts/memory_orchestrator/tests/test_async_compat_lint.py +0 -178
  1310. package/tools/vds-scripts/memory_orchestrator/tests/test_cache_metrics_status.py +0 -124
  1311. package/tools/vds-scripts/memory_orchestrator/tests/test_cli.py +0 -517
  1312. package/tools/vds-scripts/memory_orchestrator/tests/test_cli_health.py +0 -68
  1313. package/tools/vds-scripts/memory_orchestrator/tests/test_client.py +0 -434
  1314. package/tools/vds-scripts/memory_orchestrator/tests/test_config_lazy_validation.py +0 -96
  1315. package/tools/vds-scripts/memory_orchestrator/tests/test_log_hygiene.py +0 -148
  1316. package/tools/vds-scripts/memory_orchestrator/tests/test_mem0_adapter.py +0 -810
  1317. package/tools/vds-scripts/memory_orchestrator/tests/test_mem0_adapter_dual_inversion.py +0 -185
  1318. package/tools/vds-scripts/memory_orchestrator/tests/test_mem0_event_resolver.py +0 -158
  1319. package/tools/vds-scripts/memory_orchestrator/tests/test_mem0_synced_subscriber.py +0 -294
  1320. package/tools/vds-scripts/memory_orchestrator/tests/test_postgres_vector_search_warning.py +0 -176
  1321. package/tools/vds-scripts/memory_orchestrator/tests/test_processor_adapter_diagnostic_phase216.py +0 -71
  1322. package/tools/vds-scripts/memory_orchestrator/tests/test_promotion_cli.py +0 -218
  1323. package/tools/vds-scripts/memory_orchestrator/tests/test_promotion_service.py +0 -322
  1324. package/tools/vds-scripts/memory_orchestrator/tests/test_status_endpoint.py +0 -193
  1325. package/tools/vds-scripts/memory_orchestrator/tests/test_worker_status_emission.py +0 -150
  1326. package/tools/vds-scripts/memory_orchestrator/tests/verification/__init__.py +0 -0
  1327. package/tools/vds-scripts/memory_orchestrator/tests/verification/conftest.py +0 -33
  1328. package/tools/vds-scripts/memory_orchestrator/tests/verification/test_live_api.py +0 -98
  1329. package/tools/vds-scripts/memory_orchestrator/uv.lock +0 -8875
  1330. package/tools/vds-scripts/metabase_orchestrator/pyproject.toml +0 -40
  1331. package/tools/vds-scripts/metabase_orchestrator/src/vds_metabase_orchestrator/__init__.py +0 -3
  1332. package/tools/vds-scripts/metabase_orchestrator/src/vds_metabase_orchestrator/cli.py +0 -519
  1333. package/tools/vds-scripts/metabase_orchestrator/src/vds_metabase_orchestrator/client.py +0 -417
  1334. package/tools/vds-scripts/metabase_orchestrator/src/vds_metabase_orchestrator/config.py +0 -172
  1335. package/tools/vds-scripts/metabase_orchestrator/tests/__init__.py +0 -1
  1336. package/tools/vds-scripts/platform_core/pyproject.toml +0 -49
  1337. package/tools/vds-scripts/platform_core/src/vds_platform_core/__init__.py +0 -16
  1338. package/tools/vds-scripts/platform_core/src/vds_platform_core/alembic/__init__.py +0 -18
  1339. package/tools/vds-scripts/platform_core/src/vds_platform_core/alembic/runtime.py +0 -139
  1340. package/tools/vds-scripts/platform_core/src/vds_platform_core/config.py +0 -88
  1341. package/tools/vds-scripts/platform_core/src/vds_platform_core/credentials.py +0 -40
  1342. package/tools/vds-scripts/platform_core/src/vds_platform_core/env.py +0 -24
  1343. package/tools/vds-scripts/platform_core/src/vds_platform_core/errors.py +0 -127
  1344. package/tools/vds-scripts/platform_core/src/vds_platform_core/http/__init__.py +0 -18
  1345. package/tools/vds-scripts/platform_core/src/vds_platform_core/http/auth.py +0 -32
  1346. package/tools/vds-scripts/platform_core/src/vds_platform_core/http/errors.py +0 -47
  1347. package/tools/vds-scripts/platform_core/src/vds_platform_core/http/pagination.py +0 -65
  1348. package/tools/vds-scripts/platform_core/src/vds_platform_core/http/retry.py +0 -62
  1349. package/tools/vds-scripts/platform_core/src/vds_platform_core/http/stack.py +0 -61
  1350. package/tools/vds-scripts/platform_core/src/vds_platform_core/logging.py +0 -132
  1351. package/tools/vds-scripts/platform_core/src/vds_platform_core/protocols.py +0 -77
  1352. package/tools/vds-scripts/platform_core/src/vds_platform_core/serialization.py +0 -80
  1353. package/tools/vds-scripts/platform_core/src/vds_platform_core/severity.py +0 -175
  1354. package/tools/vds-scripts/platform_core/tests/__init__.py +0 -0
  1355. package/tools/vds-scripts/platform_core/tests/conftest.py +0 -1
  1356. package/tools/vds-scripts/platform_core/tests/test_alembic_runtime.py +0 -300
  1357. package/tools/vds-scripts/platform_core/tests/test_auth.py +0 -84
  1358. package/tools/vds-scripts/platform_core/tests/test_config.py +0 -83
  1359. package/tools/vds-scripts/platform_core/tests/test_credentials.py +0 -73
  1360. package/tools/vds-scripts/platform_core/tests/test_env.py +0 -56
  1361. package/tools/vds-scripts/platform_core/tests/test_errors.py +0 -201
  1362. package/tools/vds-scripts/platform_core/tests/test_errors_http.py +0 -74
  1363. package/tools/vds-scripts/platform_core/tests/test_http_settings.py +0 -116
  1364. package/tools/vds-scripts/platform_core/tests/test_logging.py +0 -148
  1365. package/tools/vds-scripts/platform_core/tests/test_pagination.py +0 -153
  1366. package/tools/vds-scripts/platform_core/tests/test_protocols.py +0 -132
  1367. package/tools/vds-scripts/platform_core/tests/test_retry.py +0 -151
  1368. package/tools/vds-scripts/platform_core/tests/test_serialization.py +0 -92
  1369. package/tools/vds-scripts/platform_core/tests/test_severity.py +0 -178
  1370. package/tools/vds-scripts/platform_core/tests/test_stack.py +0 -130
  1371. package/tools/vds-scripts/platform_core/uv.lock +0 -341
  1372. package/tools/vds-scripts/pyproject.toml +0 -153
  1373. package/tools/vds-scripts/pyrightconfig.json +0 -82
  1374. package/tools/vds-scripts/repo-manifest.yaml +0 -380
  1375. package/tools/vds-scripts/repo-manifest.yaml.example +0 -25
  1376. package/tools/vds-scripts/ruff.toml +0 -103
  1377. package/tools/vds-scripts/scheduler_orchestrator/CLOSURE-v2.0.18.md +0 -99
  1378. package/tools/vds-scripts/scheduler_orchestrator/DEPLOYMENT-RUNBOOK.md +0 -655
  1379. package/tools/vds-scripts/scheduler_orchestrator/Dockerfile +0 -110
  1380. package/tools/vds-scripts/scheduler_orchestrator/GV-VERIFICATION.md +0 -81
  1381. package/tools/vds-scripts/scheduler_orchestrator/README.md +0 -96
  1382. package/tools/vds-scripts/scheduler_orchestrator/WAVE-2-GUARDRAILS.md +0 -89
  1383. package/tools/vds-scripts/scheduler_orchestrator/alembic/env.py +0 -41
  1384. package/tools/vds-scripts/scheduler_orchestrator/alembic/script.py.mako +0 -28
  1385. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/0001_create_sched_schema.py +0 -57
  1386. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260424_04f7169497f6_create_domain_tables.py +0 -166
  1387. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260424_a1b2c3d4e5f6_add_overlap_policy_to_schedules.py +0 -57
  1388. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260424_b2c3d4e5f6a7_add_dispatcher_state_machine.py +0 -100
  1389. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260424_c3d4e5f6a7b8_add_audit_log.py +0 -141
  1390. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260424_d4e5f6a7b8c9_celery_retirement.py +0 -161
  1391. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260424_e5f6a7b8c9d0_add_udf_enqueue.py +0 -154
  1392. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260426_f6a7b8c9d0e1_add_owner_orchestrator_to_chain_definitions.py +0 -62
  1393. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260427_a1b2c3d4e5f7_ecosystem_report_runs.py +0 -57
  1394. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260428_a1b2c3d4e5f8_add_phase2_report_columns.py +0 -95
  1395. package/tools/vds-scripts/scheduler_orchestrator/alembic/versions/20260430_b2c3d4e5f8a9_add_phase3_report_columns.py +0 -199
  1396. package/tools/vds-scripts/scheduler_orchestrator/alembic.ini +0 -70
  1397. package/tools/vds-scripts/scheduler_orchestrator/config/llm_pricing.yaml +0 -51
  1398. package/tools/vds-scripts/scheduler_orchestrator/config/prometheus-alerts.yaml +0 -277
  1399. package/tools/vds-scripts/scheduler_orchestrator/dashboards/slo-dashboard.json +0 -665
  1400. package/tools/vds-scripts/scheduler_orchestrator/design-notes/dedupe-design.md +0 -324
  1401. package/tools/vds-scripts/scheduler_orchestrator/docs/Q3-2026-GAME-DAY-PREFLIGHT.md +0 -217
  1402. package/tools/vds-scripts/scheduler_orchestrator/docs/authoring-workflows.md +0 -302
  1403. package/tools/vds-scripts/scheduler_orchestrator/docs/autoscaling-k8s-hpa.yaml +0 -193
  1404. package/tools/vds-scripts/scheduler_orchestrator/docs/capability-red-team.md +0 -153
  1405. package/tools/vds-scripts/scheduler_orchestrator/docs/celery-migration-procedure.md +0 -151
  1406. package/tools/vds-scripts/scheduler_orchestrator/docs/celery-retirement-checklist.md +0 -144
  1407. package/tools/vds-scripts/scheduler_orchestrator/docs/chaos-runbook.md +0 -395
  1408. package/tools/vds-scripts/scheduler_orchestrator/docs/conductor-decision.md +0 -232
  1409. package/tools/vds-scripts/scheduler_orchestrator/docs/cross-orchestrator-rollout-checklist.md +0 -223
  1410. package/tools/vds-scripts/scheduler_orchestrator/docs/dr-drill-report.md +0 -173
  1411. package/tools/vds-scripts/scheduler_orchestrator/docs/ecosystem-daily-report-runbook.md +0 -344
  1412. package/tools/vds-scripts/scheduler_orchestrator/docs/error-budget-policy.md +0 -228
  1413. package/tools/vds-scripts/scheduler_orchestrator/docs/evolution-daemon-retirement.md +0 -214
  1414. package/tools/vds-scripts/scheduler_orchestrator/docs/evolution-retirement-files.md +0 -171
  1415. package/tools/vds-scripts/scheduler_orchestrator/docs/game-day-phase2.md +0 -243
  1416. package/tools/vds-scripts/scheduler_orchestrator/docs/mcp-governance-review.md +0 -250
  1417. package/tools/vds-scripts/scheduler_orchestrator/docs/mcp-scheduler-surface.md +0 -317
  1418. package/tools/vds-scripts/scheduler_orchestrator/docs/performance-baseline.md +0 -343
  1419. package/tools/vds-scripts/scheduler_orchestrator/docs/pitr-drill-protocol.md +0 -162
  1420. package/tools/vds-scripts/scheduler_orchestrator/docs/quarterly-game-day.md +0 -206
  1421. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/dr-postgres-restore.md +0 -268
  1422. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/evolution-auto-promote-runbook.md +0 -194
  1423. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/incident-dispatcher-stalled.md +0 -188
  1424. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/incident-postgres-unavailable.md +0 -206
  1425. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/incident-secret-leaked-in-event.md +0 -170
  1426. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/incident-workflow-backlog.md +0 -201
  1427. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/orphan-reconciliation-alert.md +0 -140
  1428. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/postmortem-template.md +0 -156
  1429. package/tools/vds-scripts/scheduler_orchestrator/docs/runbooks/rollback-deploy.md +0 -209
  1430. package/tools/vds-scripts/scheduler_orchestrator/docs/scaling-decision-phase4.md +0 -176
  1431. package/tools/vds-scripts/scheduler_orchestrator/docs/secret-rotation-drill.md +0 -202
  1432. package/tools/vds-scripts/scheduler_orchestrator/docs/sharding-decision.md +0 -111
  1433. package/tools/vds-scripts/scheduler_orchestrator/docs/sharding-implementation-plan.md +0 -189
  1434. package/tools/vds-scripts/scheduler_orchestrator/docs/udf-enqueue-benchmark.md +0 -209
  1435. package/tools/vds-scripts/scheduler_orchestrator/docs/udf-trigger-demo-plan.md +0 -273
  1436. package/tools/vds-scripts/scheduler_orchestrator/pyproject.toml +0 -129
  1437. package/tools/vds-scripts/scheduler_orchestrator/scripts/autoscale/scale-compose.sh +0 -125
  1438. package/tools/vds-scripts/scheduler_orchestrator/scripts/backfill_last_run_at_from_dbos.py +0 -105
  1439. package/tools/vds-scripts/scheduler_orchestrator/scripts/benchmarks/phase4-sharding-remeasure.sh +0 -244
  1440. package/tools/vds-scripts/scheduler_orchestrator/scripts/benchmarks/udf-vs-dispatcher.sh +0 -157
  1441. package/tools/vds-scripts/scheduler_orchestrator/scripts/chaos/c1-api-kill.sh +0 -226
  1442. package/tools/vds-scripts/scheduler_orchestrator/scripts/chaos/c2-executor-kill.sh +0 -243
  1443. package/tools/vds-scripts/scheduler_orchestrator/scripts/chaos/c3-dispatcher-kill.sh +0 -314
  1444. package/tools/vds-scripts/scheduler_orchestrator/scripts/chaos/c4-postgres-failover.sh +0 -288
  1445. package/tools/vds-scripts/scheduler_orchestrator/scripts/chaos/c5-network-partition.sh +0 -351
  1446. package/tools/vds-scripts/scheduler_orchestrator/scripts/chaos/c6-outbox-storm.sh +0 -403
  1447. package/tools/vds-scripts/scheduler_orchestrator/scripts/collector-diagnostics.py +0 -125
  1448. package/tools/vds-scripts/scheduler_orchestrator/scripts/dr/pitr-drill.sh +0 -363
  1449. package/tools/vds-scripts/scheduler_orchestrator/scripts/entrypoint.sh +0 -100
  1450. package/tools/vds-scripts/scheduler_orchestrator/scripts/generate-report.py +0 -96
  1451. package/tools/vds-scripts/scheduler_orchestrator/scripts/mint_scheduler_service_token.py +0 -76
  1452. package/tools/vds-scripts/scheduler_orchestrator/scripts/verify-phase3-live.py +0 -158
  1453. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/__init__.py +0 -21
  1454. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/__init__.py +0 -1
  1455. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/v1/__init__.py +0 -5
  1456. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/v1/chains.py +0 -131
  1457. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/v1/events.py +0 -106
  1458. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/v1/health.py +0 -101
  1459. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/v1/router.py +0 -34
  1460. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/v1/schedules.py +0 -241
  1461. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/api/v1/workflows.py +0 -189
  1462. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/app.py +0 -429
  1463. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/chains/__init__.py +0 -1
  1464. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/chains/registry.py +0 -397
  1465. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/chains/resolver.py +0 -144
  1466. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/chains/triggers.py +0 -626
  1467. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/cli.py +0 -1112
  1468. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/config.py +0 -394
  1469. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/dashboards/__init__.py +0 -1
  1470. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/dashboards/ecosystem-scheduler.json +0 -550
  1471. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/db/__init__.py +0 -1
  1472. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/db/alembic_filters.py +0 -52
  1473. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/db/models.py +0 -428
  1474. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/events/__init__.py +0 -10
  1475. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/events/bus.py +0 -161
  1476. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/events/dispatcher.py +0 -501
  1477. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/events/outbox.py +0 -213
  1478. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/events/retention.py +0 -224
  1479. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/events/schema.py +0 -226
  1480. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/events/ws_server.py +0 -328
  1481. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/mcp/__init__.py +0 -26
  1482. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/mcp/auth.py +0 -184
  1483. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/mcp/server.py +0 -146
  1484. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/mcp/tools_readonly.py +0 -259
  1485. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/observability/__init__.py +0 -15
  1486. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/observability/logging.py +0 -196
  1487. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/observability/metrics.py +0 -347
  1488. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/observability/slo.py +0 -217
  1489. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/observability/workflow_trace_context.py +0 -149
  1490. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/scheduler/__init__.py +0 -1
  1491. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/scheduler/backfill.py +0 -160
  1492. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/scheduler/models.py +0 -88
  1493. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/scheduler/schedules.py +0 -927
  1494. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/scheduler/state_pg.py +0 -55
  1495. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/scheduler/state_ports.py +0 -23
  1496. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/scheduler/writeback.py +0 -153
  1497. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/security/__init__.py +0 -1
  1498. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/security/audit_log.py +0 -238
  1499. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/security/auth.py +0 -49
  1500. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/security/capabilities.py +0 -111
  1501. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/security/middleware.py +0 -54
  1502. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/security/secret_scanner.py +0 -126
  1503. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/__init__.py +0 -1
  1504. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/agent_step.py +0 -30
  1505. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/anomaly.py +0 -67
  1506. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/autoscale.py +0 -452
  1507. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collector_registry.py +0 -89
  1508. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/__init__.py +0 -12
  1509. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/dora_metrics.py +0 -520
  1510. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/infra_health_collector.py +0 -378
  1511. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/llm_usage.py +0 -475
  1512. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/memory_collector.py +0 -101
  1513. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/phase1_adapters.py +0 -181
  1514. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/prometheus_collector.py +0 -442
  1515. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/protocol.py +0 -94
  1516. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/security_advisory.py +0 -399
  1517. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/spec_phase_collector.py +0 -137
  1518. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/test_suite_collector.py +0 -231
  1519. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/trend_forecast.py +0 -417
  1520. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/collectors/worktree_collector.py +0 -121
  1521. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/discovery.py +0 -97
  1522. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/ecosystem_report.py +0 -1406
  1523. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/envelope.py +0 -210
  1524. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/evolution/__init__.py +0 -1
  1525. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/evolution/auto_promote.py +0 -206
  1526. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/health_score.py +0 -112
  1527. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_dedup/__init__.py +0 -69
  1528. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_dedup/auto_resolve.py +0 -139
  1529. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_dedup/tombstone_purge.py +0 -128
  1530. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_evolution/__init__.py +0 -146
  1531. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_evolution/dispatch.py +0 -140
  1532. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_evolution/replay_dlq.py +0 -123
  1533. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_evolution/repush_local_only.py +0 -129
  1534. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_evolution/repush_stalled.py +0 -123
  1535. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_evolution/resolve_pending_ids.py +0 -125
  1536. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/memory_evolution/sweep.py +0 -121
  1537. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/provider.py +0 -83
  1538. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/queues.py +0 -225
  1539. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/registry.py +0 -351
  1540. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/report_formatter.py +0 -743
  1541. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/slack_formatter.py +0 -110
  1542. package/tools/vds-scripts/scheduler_orchestrator/src/vds_scheduler_orchestrator/workflows/udf_trigger.py +0 -186
  1543. package/tools/vds-scripts/scheduler_orchestrator/tests/__init__.py +0 -8
  1544. package/tools/vds-scripts/scheduler_orchestrator/tests/_mocks/__init__.py +0 -28
  1545. package/tools/vds-scripts/scheduler_orchestrator/tests/_mocks/llm_mock.py +0 -322
  1546. package/tools/vds-scripts/scheduler_orchestrator/tests/conftest.py +0 -339
  1547. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/__init__.py +0 -1
  1548. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_agent_step.py +0 -400
  1549. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_api_v1_auth.py +0 -424
  1550. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_api_v1_reads.py +0 -579
  1551. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_api_v1_writes.py +0 -609
  1552. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_audit_drift_scan.py +0 -205
  1553. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_audit_log_grants.py +0 -231
  1554. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_capability_red_team.py +0 -266
  1555. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_chain_triggers_integration.py +0 -365
  1556. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_chaos_smoke.py +0 -871
  1557. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_cli_http_contract.py +0 -262
  1558. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_cli_schedule_roundtrip.py +0 -297
  1559. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_ecosystem_report_integration.py +0 -461
  1560. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_ecosystem_report_phase3_integration.py +0 -686
  1561. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_fairness.py +0 -373
  1562. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_full_ecosystem.py +0 -638
  1563. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_multi_day_workflow.py +0 -563
  1564. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_outbox_listen.py +0 -327
  1565. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_priority_queues.py +0 -288
  1566. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_queues_rate_limit.py +0 -272
  1567. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_retention_smoke.py +0 -259
  1568. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_secret_rotation_drill.py +0 -215
  1569. package/tools/vds-scripts/scheduler_orchestrator/tests/integration/test_tier1_collectors_live.py +0 -270
  1570. package/tools/vds-scripts/scheduler_orchestrator/tests/load/__init__.py +0 -29
  1571. package/tools/vds-scripts/scheduler_orchestrator/tests/load/capture_pg_metrics.py +0 -198
  1572. package/tools/vds-scripts/scheduler_orchestrator/tests/load/common.py +0 -163
  1573. package/tools/vds-scripts/scheduler_orchestrator/tests/load/nfr_check.py +0 -235
  1574. package/tools/vds-scripts/scheduler_orchestrator/tests/load/run_baselines.sh +0 -167
  1575. package/tools/vds-scripts/scheduler_orchestrator/tests/load/s1_baseline.py +0 -68
  1576. package/tools/vds-scripts/scheduler_orchestrator/tests/load/s2_phase1.py +0 -71
  1577. package/tools/vds-scripts/scheduler_orchestrator/tests/load/s3_phase2.py +0 -108
  1578. package/tools/vds-scripts/scheduler_orchestrator/tests/load/s4_event_storm.py +0 -131
  1579. package/tools/vds-scripts/scheduler_orchestrator/tests/load/s5_chain_fanout.py +0 -105
  1580. package/tools/vds-scripts/scheduler_orchestrator/tests/load/smoke.py +0 -69
  1581. package/tools/vds-scripts/scheduler_orchestrator/tests/test_alembic_downgrade.py +0 -297
  1582. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/__init__.py +0 -1
  1583. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_alembic_include_name.py +0 -82
  1584. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_anomaly.py +0 -135
  1585. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_app_health.py +0 -102
  1586. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_app_memory_evolution_bootstrap.py +0 -65
  1587. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_audit_log_writer.py +0 -321
  1588. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_auth_brute_force_middleware.py +0 -175
  1589. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_autoscale_helpers.py +0 -91
  1590. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_autoscale_helpers_deep.py +0 -271
  1591. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_backfill.py +0 -153
  1592. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_backfill_coverage.py +0 -219
  1593. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_capabilities.py +0 -175
  1594. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_celery_migration_workflows.py +0 -461
  1595. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_chains_branches.py +0 -387
  1596. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_chains_registry.py +0 -504
  1597. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_chains_triggers_complete.py +0 -800
  1598. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_chains_triggers_event.py +0 -649
  1599. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_cli_branches.py +0 -396
  1600. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_cli_capability_attach.py +0 -111
  1601. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_cli_schedules.py +0 -540
  1602. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_collector_protocol.py +0 -180
  1603. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_config.py +0 -62
  1604. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_decimal_json_and_phase3_columns.py +0 -372
  1605. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_dispatcher.py +0 -376
  1606. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_dockerfile_phase213_patch.py +0 -74
  1607. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_dora_metrics_collector.py +0 -740
  1608. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_ecosystem_report_config.py +0 -159
  1609. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_ecosystem_report_coverage.py +0 -1891
  1610. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_envelope.py +0 -256
  1611. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_error_budget_policy_signoff.py +0 -95
  1612. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_events_branches.py +0 -664
  1613. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_events_outbox.py +0 -364
  1614. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_events_retention.py +0 -206
  1615. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_events_schema.py +0 -279
  1616. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_evolution_auto_promote.py +0 -340
  1617. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_health_redact.py +0 -64
  1618. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_health_score.py +0 -240
  1619. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_last_run_at_writeback.py +0 -226
  1620. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_llm_usage_collector.py +0 -1095
  1621. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_mcp_auth.py +0 -204
  1622. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_mcp_readonly_gate.py +0 -273
  1623. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_mcp_tools_readonly.py +0 -382
  1624. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_memory_evolution_branches.py +0 -422
  1625. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_metrics.py +0 -318
  1626. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_observability_and_step_branches.py +0 -247
  1627. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_prometheus_collector_sli.py +0 -186
  1628. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_queues_config.py +0 -203
  1629. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_reconcile_dbos_schedules.py +0 -300
  1630. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_remaining_coverage.py +0 -666
  1631. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_report_formatter.py +0 -388
  1632. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_scheduled_workflow_signatures.py +0 -136
  1633. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_schedules.py +0 -552
  1634. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_schedules_branches.py +0 -772
  1635. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_secret_scanner.py +0 -81
  1636. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_security_advisory_collector.py +0 -495
  1637. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_security_auth_dep.py +0 -182
  1638. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_slack_notification.py +0 -356
  1639. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_slo_metrics.py +0 -204
  1640. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_tier1_collectors.py +0 -717
  1641. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_tier2_collectors.py +0 -867
  1642. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_tier3_collectors.py +0 -185
  1643. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_trend_forecast_collector.py +0 -617
  1644. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_udf_trigger.py +0 -180
  1645. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_workflow_discovery.py +0 -121
  1646. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_workflow_http_refactor_phase217.py +0 -309
  1647. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_workflow_registry.py +0 -398
  1648. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_workflow_registry_branches.py +0 -126
  1649. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_workflow_trace_context.py +0 -295
  1650. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_writeback.py +0 -461
  1651. package/tools/vds-scripts/scheduler_orchestrator/tests/unit/test_ws_server.py +0 -291
  1652. package/tools/vds-scripts/scripts/BRD-Validation-API.postman_collection.json +0 -706
  1653. package/tools/vds-scripts/scripts/BRD-Validation-README.md +0 -308
  1654. package/tools/vds-scripts/scripts/README.md +0 -271
  1655. package/tools/vds-scripts/scripts/_validate_alias_phase2.py +0 -137
  1656. package/tools/vds-scripts/scripts/audit-cli-patterns.sh +0 -135
  1657. package/tools/vds-scripts/scripts/audit-dashboard.sh +0 -525
  1658. package/tools/vds-scripts/scripts/backup.sh +0 -123
  1659. package/tools/vds-scripts/scripts/bootstrap_uv.sh +0 -69
  1660. package/tools/vds-scripts/scripts/brd-validation-environment.json +0 -51
  1661. package/tools/vds-scripts/scripts/brd-validation-test-results.json +0 -13023
  1662. package/tools/vds-scripts/scripts/brd_coverage_report.json +0 -276
  1663. package/tools/vds-scripts/scripts/check-future-annotations.py +0 -22
  1664. package/tools/vds-scripts/scripts/check-invalid-symlinks.py +0 -183
  1665. package/tools/vds-scripts/scripts/check-no-debug-markers.py +0 -21
  1666. package/tools/vds-scripts/scripts/check-no-unittest.py +0 -21
  1667. package/tools/vds-scripts/scripts/ci/assert_no_openspace_commits.sh +0 -37
  1668. package/tools/vds-scripts/scripts/ci/verify_branch_protection.sh +0 -64
  1669. package/tools/vds-scripts/scripts/closure/phase1_check.sh +0 -483
  1670. package/tools/vds-scripts/scripts/closure/phase2_check.sh +0 -500
  1671. package/tools/vds-scripts/scripts/create_memory_session.py +0 -36
  1672. package/tools/vds-scripts/scripts/deploy-bootstrap.sh +0 -201
  1673. package/tools/vds-scripts/scripts/deployment/load_docker_images_offline.sh +0 -90
  1674. package/tools/vds-scripts/scripts/dev/cli_smoke.sh +0 -259
  1675. package/tools/vds-scripts/scripts/final_completion_report.md +0 -139
  1676. package/tools/vds-scripts/scripts/folder_structure_report.json +0 -321
  1677. package/tools/vds-scripts/scripts/generate_completion_report.py +0 -132
  1678. package/tools/vds-scripts/scripts/generate_intellij_modules.py +0 -154
  1679. package/tools/vds-scripts/scripts/init-pgbouncer-userlist.sh +0 -154
  1680. package/tools/vds-scripts/scripts/link_integrity_report.json +0 -807
  1681. package/tools/vds-scripts/scripts/move_audit_artifact_pages.py +0 -252
  1682. package/tools/vds-scripts/scripts/move_audit_artifact_pages_rest.py +0 -165
  1683. package/tools/vds-scripts/scripts/move_wrong_dept_pages.py +0 -235
  1684. package/tools/vds-scripts/scripts/openspace_bootstrap.sh +0 -56
  1685. package/tools/vds-scripts/scripts/openspace_common.sh +0 -75
  1686. package/tools/vds-scripts/scripts/openspace_doctor.sh +0 -61
  1687. package/tools/vds-scripts/scripts/openspace_sync_shadow.sh +0 -65
  1688. package/tools/vds-scripts/scripts/phase7-baseline.sh +0 -77
  1689. package/tools/vds-scripts/scripts/preflight/env_check.sh +0 -102
  1690. package/tools/vds-scripts/scripts/repair_autopay_reports.sh +0 -173
  1691. package/tools/vds-scripts/scripts/rollback_drill.sh +0 -659
  1692. package/tools/vds-scripts/scripts/run-audit-in-tmux.sh +0 -286
  1693. package/tools/vds-scripts/scripts/run-department-audit.sh +0 -495
  1694. package/tools/vds-scripts/scripts/run-project-audit.sh +0 -267
  1695. package/tools/vds-scripts/scripts/save_intellij_memories.py +0 -112
  1696. package/tools/vds-scripts/scripts/save_memories_to_vds_ai.py +0 -81
  1697. package/tools/vds-scripts/scripts/save_memories_vds_style.py +0 -133
  1698. package/tools/vds-scripts/scripts/search_intellij_memories.py +0 -48
  1699. package/tools/vds-scripts/scripts/setup_intellij_workspace.py +0 -71
  1700. package/tools/vds-scripts/scripts/smoke-test-deploy.sh +0 -137
  1701. package/tools/vds-scripts/scripts/smoke_deploy_lib.py +0 -205
  1702. package/tools/vds-scripts/scripts/target-state-automation/README.md +0 -89
  1703. package/tools/vds-scripts/scripts/target-state-automation/confluence_sync_coordinator.sh +0 -27
  1704. package/tools/vds-scripts/scripts/target-state-automation/coordination.sh +0 -114
  1705. package/tools/vds-scripts/scripts/target-state-automation/diagram_coordinator.sh +0 -25
  1706. package/tools/vds-scripts/scripts/target-state-automation/docs_root.sh +0 -22
  1707. package/tools/vds-scripts/scripts/target-state-automation/generate_diagrams.sh +0 -22
  1708. package/tools/vds-scripts/scripts/target-state-automation/markdown_coordinator.sh +0 -25
  1709. package/tools/vds-scripts/scripts/target-state-automation/progress_dashboard.sh +0 -17
  1710. package/tools/vds-scripts/scripts/target-state-automation/schema_coordinator.sh +0 -25
  1711. package/tools/vds-scripts/scripts/target-state-automation/sync_confluence.sh +0 -30
  1712. package/tools/vds-scripts/scripts/target-state-automation/update_dependencies.sh +0 -19
  1713. package/tools/vds-scripts/scripts/target-state-automation/validate_links.sh +0 -86
  1714. package/tools/vds-scripts/scripts/target-state-automation/validate_markdown.sh +0 -52
  1715. package/tools/vds-scripts/scripts/target-state-automation/validate_schemas.sh +0 -26
  1716. package/tools/vds-scripts/scripts/target-state-automation/validate_structure.sh +0 -98
  1717. package/tools/vds-scripts/scripts/tests/__init__.py +0 -1
  1718. package/tools/vds-scripts/scripts/tests/test_dockerfile_correctness.py +0 -815
  1719. package/tools/vds-scripts/scripts/tests/test_makefile_loadouts.py +0 -560
  1720. package/tools/vds-scripts/scripts/tests/test_smoke_deploy.py +0 -313
  1721. package/tools/vds-scripts/scripts/tests/test_verify_alembic.py +0 -581
  1722. package/tools/vds-scripts/scripts/tests/test_verify_infra_topology.py +0 -254
  1723. package/tools/vds-scripts/scripts/update_modules_xml.py +0 -194
  1724. package/tools/vds-scripts/scripts/uv-workspace-alignment-verification-2026-03-25.md +0 -128
  1725. package/tools/vds-scripts/scripts/uv-workspace-alignment-verification-2026-04-18.md +0 -100
  1726. package/tools/vds-scripts/scripts/validate-cli-standardization.sh +0 -188
  1727. package/tools/vds-scripts/scripts/validate_brd_coverage.py +0 -197
  1728. package/tools/vds-scripts/scripts/validate_folder_structure.py +0 -234
  1729. package/tools/vds-scripts/scripts/validate_link_integrity.py +0 -274
  1730. package/tools/vds-scripts/scripts/vami017-caller-compat-report.md +0 -62
  1731. package/tools/vds-scripts/scripts/vami017-phase-b-scaffold-notes.md +0 -79
  1732. package/tools/vds-scripts/scripts/vds_sh_helpers.sh +0 -180
  1733. package/tools/vds-scripts/scripts/verification/phase2_portable_paths_ubuntu_docker.sh +0 -26
  1734. package/tools/vds-scripts/scripts/verify-infra-topology.py +0 -868
  1735. package/tools/vds-scripts/scripts/verify-memory-cli-e2e.sh +0 -598
  1736. package/tools/vds-scripts/scripts/verify-worktree-features.sh +0 -306
  1737. package/tools/vds-scripts/scripts/worktree-add.sh +0 -128
  1738. package/tools/vds-scripts/scripts/worktree-remove.sh +0 -112
  1739. package/tools/vds-scripts/scripts/worktree_compose.sh +0 -269
  1740. package/tools/vds-scripts/scripts/worktree_uv.sh +0 -77
  1741. package/tools/vds-scripts/setup-icloud-nosync.sh +0 -91
  1742. package/tools/vds-scripts/sonarqube_orchestrator/IMPLEMENTATION_AUDIT.md +0 -376
  1743. package/tools/vds-scripts/sonarqube_orchestrator/README.md +0 -507
  1744. package/tools/vds-scripts/sonarqube_orchestrator/pyproject.toml +0 -106
  1745. package/tools/vds-scripts/sonarqube_orchestrator/scripts/ensure_symlink.sh +0 -38
  1746. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/__init__.py +0 -164
  1747. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/batch.py +0 -212
  1748. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/cli.py +0 -1407
  1749. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/client.py +0 -608
  1750. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/config.py +0 -260
  1751. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/diff.py +0 -220
  1752. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/errors.py +0 -34
  1753. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/external_sca.py +0 -932
  1754. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/portfolio.py +0 -225
  1755. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/pr.py +0 -505
  1756. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/reports.py +0 -342
  1757. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/scanner.py +0 -351
  1758. package/tools/vds-scripts/sonarqube_orchestrator/src/vds_sonarqube_orchestrator/webhooks.py +0 -269
  1759. package/tools/vds-scripts/sonarqube_orchestrator/tests/__init__.py +0 -0
  1760. package/tools/vds-scripts/sonarqube_orchestrator/tests/conftest.py +0 -134
  1761. package/tools/vds-scripts/sonarqube_orchestrator/tests/test_batch.py +0 -419
  1762. package/tools/vds-scripts/sonarqube_orchestrator/tests/test_config.py +0 -145
  1763. package/tools/vds-scripts/sonarqube_orchestrator/tests/test_errors.py +0 -78
  1764. package/tools/vds-scripts/sonarqube_orchestrator/tests/test_external_sca.py +0 -466
  1765. package/tools/vds-scripts/sonarqube_orchestrator/tests/test_pr.py +0 -471
  1766. package/tools/vds-scripts/sonarqube_orchestrator/tests/test_reports.py +0 -511
  1767. package/tools/vds-scripts/sonarqube_orchestrator/tests/test_webhooks.py +0 -660
  1768. package/tools/vds-scripts/telegram_bridge/Dockerfile +0 -44
  1769. package/tools/vds-scripts/telegram_bridge/__init__.py +0 -6
  1770. package/tools/vds-scripts/telegram_bridge/alembic/__init__.py +0 -0
  1771. package/tools/vds-scripts/telegram_bridge/alembic/env.py +0 -63
  1772. package/tools/vds-scripts/telegram_bridge/alembic/script.py.mako +0 -24
  1773. package/tools/vds-scripts/telegram_bridge/alembic/versions/0001_telegram_bridge_init.py +0 -193
  1774. package/tools/vds-scripts/telegram_bridge/alembic/versions/0002_polling_state.py +0 -48
  1775. package/tools/vds-scripts/telegram_bridge/alembic/versions/0003_claude_session_store.py +0 -62
  1776. package/tools/vds-scripts/telegram_bridge/alembic.ini +0 -47
  1777. package/tools/vds-scripts/telegram_bridge/cli.py +0 -708
  1778. package/tools/vds-scripts/telegram_bridge/daemon/__init__.py +0 -1
  1779. package/tools/vds-scripts/telegram_bridge/daemon/__main__.py +0 -351
  1780. package/tools/vds-scripts/telegram_bridge/daemon/alembic_head_check.py +0 -116
  1781. package/tools/vds-scripts/telegram_bridge/daemon/audit.py +0 -255
  1782. package/tools/vds-scripts/telegram_bridge/daemon/bot.py +0 -52
  1783. package/tools/vds-scripts/telegram_bridge/daemon/bot_gateway.py +0 -114
  1784. package/tools/vds-scripts/telegram_bridge/daemon/bus.py +0 -106
  1785. package/tools/vds-scripts/telegram_bridge/daemon/commands.py +0 -457
  1786. package/tools/vds-scripts/telegram_bridge/daemon/config.py +0 -129
  1787. package/tools/vds-scripts/telegram_bridge/daemon/dispatcher.py +0 -107
  1788. package/tools/vds-scripts/telegram_bridge/daemon/health_server.py +0 -130
  1789. package/tools/vds-scripts/telegram_bridge/daemon/job_scheduler.py +0 -213
  1790. package/tools/vds-scripts/telegram_bridge/daemon/lifecycle.py +0 -100
  1791. package/tools/vds-scripts/telegram_bridge/daemon/middleware/__init__.py +0 -1
  1792. package/tools/vds-scripts/telegram_bridge/daemon/middleware/allowlist.py +0 -70
  1793. package/tools/vds-scripts/telegram_bridge/daemon/middleware/offset_tracker.py +0 -49
  1794. package/tools/vds-scripts/telegram_bridge/daemon/pg.py +0 -53
  1795. package/tools/vds-scripts/telegram_bridge/daemon/pg_outage_watchdog.py +0 -180
  1796. package/tools/vds-scripts/telegram_bridge/daemon/polling_state.py +0 -64
  1797. package/tools/vds-scripts/telegram_bridge/daemon/preflight.py +0 -106
  1798. package/tools/vds-scripts/telegram_bridge/daemon/registry_loader.py +0 -79
  1799. package/tools/vds-scripts/telegram_bridge/daemon/runner_orchestrator.py +0 -371
  1800. package/tools/vds-scripts/telegram_bridge/daemon/session_registry.py +0 -188
  1801. package/tools/vds-scripts/telegram_bridge/daemon/shim_server.py +0 -331
  1802. package/tools/vds-scripts/telegram_bridge/daemon/throttler.py +0 -501
  1803. package/tools/vds-scripts/telegram_bridge/daemon/topic_promoter.py +0 -343
  1804. package/tools/vds-scripts/telegram_bridge/daemon/uploads.py +0 -165
  1805. package/tools/vds-scripts/telegram_bridge/docker-compose.server.yml +0 -37
  1806. package/tools/vds-scripts/telegram_bridge/docker-compose.telegram.yml +0 -65
  1807. package/tools/vds-scripts/telegram_bridge/jobs/__init__.py +0 -6
  1808. package/tools/vds-scripts/telegram_bridge/jobs/archive_topics.py +0 -161
  1809. package/tools/vds-scripts/telegram_bridge/jobs/rotate_audit.py +0 -264
  1810. package/tools/vds-scripts/telegram_bridge/models/__init__.py +0 -27
  1811. package/tools/vds-scripts/telegram_bridge/models/events.py +0 -123
  1812. package/tools/vds-scripts/telegram_bridge/models/sessions.py +0 -52
  1813. package/tools/vds-scripts/telegram_bridge/models/topics.py +0 -41
  1814. package/tools/vds-scripts/telegram_bridge/pyproject.toml +0 -97
  1815. package/tools/vds-scripts/telegram_bridge/registry.yaml +0 -81
  1816. package/tools/vds-scripts/telegram_bridge/runners/__init__.py +0 -6
  1817. package/tools/vds-scripts/telegram_bridge/runners/_base/__init__.py +0 -1
  1818. package/tools/vds-scripts/telegram_bridge/runners/_base/protocol.py +0 -192
  1819. package/tools/vds-scripts/telegram_bridge/runners/_base/runner.py +0 -245
  1820. package/tools/vds-scripts/telegram_bridge/runners/_base/secret_patterns.py +0 -130
  1821. package/tools/vds-scripts/telegram_bridge/runners/acp/__init__.py +0 -7
  1822. package/tools/vds-scripts/telegram_bridge/runners/acp/__main__.py +0 -56
  1823. package/tools/vds-scripts/telegram_bridge/runners/acp/adapter.py +0 -272
  1824. package/tools/vds-scripts/telegram_bridge/runners/claude/__init__.py +0 -7
  1825. package/tools/vds-scripts/telegram_bridge/runners/claude/__main__.py +0 -61
  1826. package/tools/vds-scripts/telegram_bridge/runners/claude/adapter.py +0 -267
  1827. package/tools/vds-scripts/telegram_bridge/runners/claude/session_store.py +0 -191
  1828. package/tools/vds-scripts/telegram_bridge/runners/claude/upload_tool.py +0 -83
  1829. package/tools/vds-scripts/telegram_bridge/runners/codex/__init__.py +0 -7
  1830. package/tools/vds-scripts/telegram_bridge/runners/codex/__main__.py +0 -50
  1831. package/tools/vds-scripts/telegram_bridge/scripts/verify-tier1.sh +0 -54
  1832. package/tools/vds-scripts/telegram_bridge/scripts/verify-tier3-smoke.sh +0 -145
  1833. package/tools/vds-scripts/telegram_bridge/shim.py +0 -220
  1834. package/tools/vds-scripts/telegram_bridge/skill_content/QUALITY.md +0 -47
  1835. package/tools/vds-scripts/telegram_bridge/skill_content/SKILL.md +0 -99
  1836. package/tools/vds-scripts/telegram_bridge/skill_content/references/CHANGELOG.md +0 -47
  1837. package/tools/vds-scripts/telegram_bridge/skill_content/references/agent-onboarding.md +0 -84
  1838. package/tools/vds-scripts/telegram_bridge/skill_content/references/architecture.md +0 -116
  1839. package/tools/vds-scripts/telegram_bridge/skill_content/references/audit-queries.md +0 -123
  1840. package/tools/vds-scripts/telegram_bridge/skill_content/references/commands.md +0 -84
  1841. package/tools/vds-scripts/telegram_bridge/skill_content/references/setup.md +0 -132
  1842. package/tools/vds-scripts/telegram_bridge/skill_content/references/troubleshooting.md +0 -162
  1843. package/tools/vds-scripts/telegram_bridge/skill_content/references/verification.md +0 -312
  1844. package/tools/vds-scripts/telegram_bridge/skill_content/references/wave-0-spike-results.md +0 -559
  1845. package/tools/vds-scripts/telegram_bridge/tests/__init__.py +0 -0
  1846. package/tools/vds-scripts/telegram_bridge/tests/acceptance/__init__.py +0 -0
  1847. package/tools/vds-scripts/telegram_bridge/tests/acceptance/conftest.py +0 -381
  1848. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_01_first_run_setup.py +0 -47
  1849. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_02_notifier_approver.py +0 -42
  1850. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_03_mobile_remote_control.py +0 -42
  1851. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_04_handoff_continuity.py +0 -88
  1852. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_05_multi_agent.py +0 -132
  1853. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_06_subagent_topic_promotion.py +0 -150
  1854. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_07_subscribe_immediate_promote.py +0 -116
  1855. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_08_file_upload_in.py +0 -215
  1856. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_09_long_block_spill.py +0 -121
  1857. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_10_streaming_throttle.py +0 -90
  1858. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_11_audit_invariant.py +0 -156
  1859. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_12_pg_outage_strict.py +0 -171
  1860. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_13_redaction_in_blob.py +0 -146
  1861. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_14_cli_status_full.py +0 -184
  1862. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_15_allowlist_drop_counter.py +0 -84
  1863. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_16_topic_title_128_cap.py +0 -73
  1864. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_17_idle_timeout_ends.py +0 -110
  1865. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_18_hang_watchdog.py +0 -102
  1866. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_19_topic_creation_race.py +0 -91
  1867. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_20_acp_resource_link.py +0 -121
  1868. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_21_softcap_archive.py +0 -247
  1869. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_22_daemon_restart_continuity.py +0 -47
  1870. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_23_audit_query_cli.py +0 -39
  1871. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_24_cold_rotation.py +0 -38
  1872. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_25_advisory_lock_failfast.py +0 -35
  1873. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_26_token_bucket_fairness.py +0 -34
  1874. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_27_silent_degradation.py +0 -36
  1875. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_28_jsonl_secondary_sink.py +0 -35
  1876. package/tools/vds-scripts/telegram_bridge/tests/acceptance/test_ac_29_ro_mount.py +0 -33
  1877. package/tools/vds-scripts/telegram_bridge/tests/integration/__init__.py +0 -0
  1878. package/tools/vds-scripts/telegram_bridge/tests/integration/conftest.py +0 -196
  1879. package/tools/vds-scripts/telegram_bridge/tests/integration/test_ac_10_audit_forensic_query.py +0 -253
  1880. package/tools/vds-scripts/telegram_bridge/tests/integration/test_ac_11_cold_rotation_roundtrip.py +0 -204
  1881. package/tools/vds-scripts/telegram_bridge/tests/integration/test_ac_25_append_only_trigger.py +0 -188
  1882. package/tools/vds-scripts/telegram_bridge/tests/integration/test_archive_jobs.py +0 -265
  1883. package/tools/vds-scripts/telegram_bridge/tests/integration/test_audit_writer_invariant.py +0 -310
  1884. package/tools/vds-scripts/telegram_bridge/tests/integration/test_claude_session_store.py +0 -202
  1885. package/tools/vds-scripts/telegram_bridge/tests/integration/test_migration_roundtrip.py +0 -231
  1886. package/tools/vds-scripts/telegram_bridge/tests/integration/test_offset_persistence.py +0 -210
  1887. package/tools/vds-scripts/telegram_bridge/tests/integration/test_polling_singleton_constraint.py +0 -81
  1888. package/tools/vds-scripts/telegram_bridge/tests/integration/test_subscriptions.py +0 -194
  1889. package/tools/vds-scripts/telegram_bridge/tests/integration/test_topics_fk_chain.py +0 -216
  1890. package/tools/vds-scripts/telegram_bridge/tests/integration/test_uploads_cas_dedup.py +0 -265
  1891. package/tools/vds-scripts/telegram_bridge/tests/spikes/__init__.py +0 -0
  1892. package/tools/vds-scripts/telegram_bridge/tests/spikes/conftest.py +0 -5
  1893. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_10_acp_schema_drift.py +0 -259
  1894. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_11_telegram_general_topic_api.py +0 -63
  1895. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_12_last_processed_offset.py +0 -56
  1896. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_13_resume_corrupted.py +0 -77
  1897. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_1_telegram_forum_smoke.py +0 -42
  1898. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_2_telegram_file_smoke.py +0 -38
  1899. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_3_telegram_permission_smoke.py +0 -40
  1900. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_4_claude_sdk_hooks_mcp_smoke.py +0 -45
  1901. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_5_session_store_conformance.py +0 -37
  1902. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_6_claude_lock_jsonl_smoke.py +0 -51
  1903. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_7_codex_acp_smoke.py +0 -58
  1904. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_8_generic_acp_smoke.py +0 -57
  1905. package/tools/vds-scripts/telegram_bridge/tests/spikes/test_0_9_daemon_restart_vs_container.py +0 -55
  1906. package/tools/vds-scripts/telegram_bridge/tests/unit/__init__.py +0 -0
  1907. package/tools/vds-scripts/telegram_bridge/tests/unit/test_acp_adapter_full.py +0 -567
  1908. package/tools/vds-scripts/telegram_bridge/tests/unit/test_acp_runner_translate.py +0 -140
  1909. package/tools/vds-scripts/telegram_bridge/tests/unit/test_allowlist_middleware.py +0 -101
  1910. package/tools/vds-scripts/telegram_bridge/tests/unit/test_audit_archive_topics.py +0 -134
  1911. package/tools/vds-scripts/telegram_bridge/tests/unit/test_audit_postgres_unavailable.py +0 -151
  1912. package/tools/vds-scripts/telegram_bridge/tests/unit/test_audit_redact_existing.py +0 -134
  1913. package/tools/vds-scripts/telegram_bridge/tests/unit/test_bot_factory.py +0 -98
  1914. package/tools/vds-scripts/telegram_bridge/tests/unit/test_bot_gateway.py +0 -201
  1915. package/tools/vds-scripts/telegram_bridge/tests/unit/test_bus.py +0 -84
  1916. package/tools/vds-scripts/telegram_bridge/tests/unit/test_claude_adapter.py +0 -580
  1917. package/tools/vds-scripts/telegram_bridge/tests/unit/test_cli_commands.py +0 -459
  1918. package/tools/vds-scripts/telegram_bridge/tests/unit/test_cli_restart.py +0 -65
  1919. package/tools/vds-scripts/telegram_bridge/tests/unit/test_commands.py +0 -641
  1920. package/tools/vds-scripts/telegram_bridge/tests/unit/test_daemon_boot.py +0 -431
  1921. package/tools/vds-scripts/telegram_bridge/tests/unit/test_dispatcher.py +0 -198
  1922. package/tools/vds-scripts/telegram_bridge/tests/unit/test_health_server.py +0 -521
  1923. package/tools/vds-scripts/telegram_bridge/tests/unit/test_job_scheduler.py +0 -226
  1924. package/tools/vds-scripts/telegram_bridge/tests/unit/test_lifecycle_extra.py +0 -149
  1925. package/tools/vds-scripts/telegram_bridge/tests/unit/test_migration_check.py +0 -201
  1926. package/tools/vds-scripts/telegram_bridge/tests/unit/test_models_events.py +0 -72
  1927. package/tools/vds-scripts/telegram_bridge/tests/unit/test_models_sessions.py +0 -34
  1928. package/tools/vds-scripts/telegram_bridge/tests/unit/test_offset_tracker.py +0 -200
  1929. package/tools/vds-scripts/telegram_bridge/tests/unit/test_pg_outage_watchdog.py +0 -207
  1930. package/tools/vds-scripts/telegram_bridge/tests/unit/test_pg_pool.py +0 -124
  1931. package/tools/vds-scripts/telegram_bridge/tests/unit/test_preflight.py +0 -188
  1932. package/tools/vds-scripts/telegram_bridge/tests/unit/test_redaction.py +0 -193
  1933. package/tools/vds-scripts/telegram_bridge/tests/unit/test_registry.py +0 -71
  1934. package/tools/vds-scripts/telegram_bridge/tests/unit/test_registry_loader.py +0 -133
  1935. package/tools/vds-scripts/telegram_bridge/tests/unit/test_rotate_audit.py +0 -416
  1936. package/tools/vds-scripts/telegram_bridge/tests/unit/test_rotate_audit_paths.py +0 -57
  1937. package/tools/vds-scripts/telegram_bridge/tests/unit/test_runner_entrypoints.py +0 -309
  1938. package/tools/vds-scripts/telegram_bridge/tests/unit/test_runner_internals.py +0 -327
  1939. package/tools/vds-scripts/telegram_bridge/tests/unit/test_runner_lifecycle.py +0 -309
  1940. package/tools/vds-scripts/telegram_bridge/tests/unit/test_runner_orchestrator.py +0 -895
  1941. package/tools/vds-scripts/telegram_bridge/tests/unit/test_runner_orchestrator_translate.py +0 -162
  1942. package/tools/vds-scripts/telegram_bridge/tests/unit/test_runner_protocol.py +0 -156
  1943. package/tools/vds-scripts/telegram_bridge/tests/unit/test_runner_reconnect.py +0 -184
  1944. package/tools/vds-scripts/telegram_bridge/tests/unit/test_session_store.py +0 -264
  1945. package/tools/vds-scripts/telegram_bridge/tests/unit/test_session_store_resume_validator.py +0 -109
  1946. package/tools/vds-scripts/telegram_bridge/tests/unit/test_shim.py +0 -52
  1947. package/tools/vds-scripts/telegram_bridge/tests/unit/test_shim_full.py +0 -413
  1948. package/tools/vds-scripts/telegram_bridge/tests/unit/test_shim_server.py +0 -498
  1949. package/tools/vds-scripts/telegram_bridge/tests/unit/test_throttler.py +0 -208
  1950. package/tools/vds-scripts/telegram_bridge/tests/unit/test_throttler_spill.py +0 -176
  1951. package/tools/vds-scripts/telegram_bridge/tests/unit/test_topic_promoter.py +0 -229
  1952. package/tools/vds-scripts/telegram_bridge/tests/unit/test_upload_tool.py +0 -227
  1953. package/tools/vds-scripts/telegram_bridge/tests/unit/test_uploads.py +0 -337
  1954. package/tools/vds-scripts/telegram_bridge/tests/unit/test_uploads_meta.py +0 -91
  1955. package/tools/vds-scripts/uv.lock +0 -6603
  1956. package/tools/vds-scripts/vds-evolution-mono.sh +0 -59
  1957. package/tools/vds-scripts/vds-mail/SKILL.md +0 -185
  1958. package/tools/vds-scripts/vds-mail/scripts/fetch_mail.py +0 -116
  1959. package/tools/vds-scripts/vds-mail/scripts/search_mail.py +0 -131
  1960. package/tools/vds-scripts/vds-mail/scripts/send_mail.py +0 -150
  1961. package/tools/vds-scripts/vds_agent_core/CHANGELOG.md +0 -36
  1962. package/tools/vds-scripts/vds_agent_core/README.md +0 -453
  1963. package/tools/vds-scripts/vds_agent_core/docs/PHASE9A_ASSESSMENT.md +0 -50
  1964. package/tools/vds-scripts/vds_agent_core/docs/embedding.md +0 -468
  1965. package/tools/vds-scripts/vds_agent_core/pyproject.toml +0 -51
  1966. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/__init__.py +0 -29
  1967. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/agents/__init__.py +0 -26
  1968. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/agents/hooks.py +0 -119
  1969. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/agents/loop.py +0 -864
  1970. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/agents/tools.py +0 -41
  1971. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/config.py +0 -252
  1972. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/llm/__init__.py +0 -55
  1973. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/llm/_cascade.py +0 -143
  1974. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/llm/budget.py +0 -353
  1975. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/llm/cache.py +0 -373
  1976. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/llm/embedding.py +0 -815
  1977. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/llm/provider.py +0 -173
  1978. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/llm/schemas.py +0 -45
  1979. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/observability/__init__.py +0 -77
  1980. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/observability/decorators.py +0 -258
  1981. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/observability/jsonl_exporter.py +0 -236
  1982. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/observability/tracer.py +0 -497
  1983. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/profiles.py +0 -2015
  1984. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/runtime/__init__.py +0 -0
  1985. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/runtime/agent_id.py +0 -60
  1986. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/security/__init__.py +0 -13
  1987. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/security/credentials.py +0 -106
  1988. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/skills/__init__.py +0 -1
  1989. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/skills/executor.py +0 -238
  1990. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/skills/manager.py +0 -381
  1991. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/skills/policy.py +0 -568
  1992. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/workflows/__init__.py +0 -19
  1993. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/workflows/langgraph_runner.py +0 -102
  1994. package/tools/vds-scripts/vds_agent_core/src/vds_agent_core/workflows/protocols.py +0 -81
  1995. package/tools/vds-scripts/vds_agent_core/tests/__init__.py +0 -0
  1996. package/tools/vds-scripts/vds_agent_core/tests/conftest.py +0 -62
  1997. package/tools/vds-scripts/vds_agent_core/tests/integration/__init__.py +0 -0
  1998. package/tools/vds-scripts/vds_agent_core/tests/integration/test_audit_loop_hooks_integration.py +0 -135
  1999. package/tools/vds-scripts/vds_agent_core/tests/integration/test_audit_observability_integration.py +0 -246
  2000. package/tools/vds-scripts/vds_agent_core/tests/integration/test_public_api_stability.py +0 -91
  2001. package/tools/vds-scripts/vds_agent_core/tests/unit/__init__.py +0 -0
  2002. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/__init__.py +0 -0
  2003. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_call_site_parallelism.py +0 -30
  2004. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_dimension_guardrail.py +0 -25
  2005. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_drop_in_provider_extensibility.py +0 -76
  2006. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_embedding.py +0 -393
  2007. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_embedding_cache.py +0 -302
  2008. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_embedding_extra.py +0 -696
  2009. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_embedding_subclass.py +0 -49
  2010. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_no_provider_leakage_in_env.py +0 -34
  2011. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_provider_auto_route.py +0 -48
  2012. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_runtime_log_clean.py +0 -111
  2013. package/tools/vds-scripts/vds_agent_core/tests/unit/llm/test_w7_logic_fixes.py +0 -219
  2014. package/tools/vds-scripts/vds_agent_core/tests/unit/profiles/__init__.py +0 -0
  2015. package/tools/vds-scripts/vds_agent_core/tests/unit/profiles/test_embedding_block_parser.py +0 -194
  2016. package/tools/vds-scripts/vds_agent_core/tests/unit/profiles/test_env_resolver_allowlist.py +0 -141
  2017. package/tools/vds-scripts/vds_agent_core/tests/unit/profiles/test_profile_authorization.py +0 -158
  2018. package/tools/vds-scripts/vds_agent_core/tests/unit/profiles/test_profiles_w3_extra.py +0 -547
  2019. package/tools/vds-scripts/vds_agent_core/tests/unit/profiles/test_real_audit_profile_compat.py +0 -129
  2020. package/tools/vds-scripts/vds_agent_core/tests/unit/runtime/__init__.py +0 -0
  2021. package/tools/vds-scripts/vds_agent_core/tests/unit/runtime/test_for_agent.py +0 -337
  2022. package/tools/vds-scripts/vds_agent_core/tests/unit/runtime/test_w9_cascade_edges.py +0 -369
  2023. package/tools/vds-scripts/vds_agent_core/tests/unit/security/__init__.py +0 -0
  2024. package/tools/vds-scripts/vds_agent_core/tests/unit/security/test_credentials.py +0 -132
  2025. package/tools/vds-scripts/vds_agent_core/tests/unit/test_agent_loop.py +0 -663
  2026. package/tools/vds-scripts/vds_agent_core/tests/unit/test_agent_loop_coverage.py +0 -429
  2027. package/tools/vds-scripts/vds_agent_core/tests/unit/test_agents_hooks_defaults.py +0 -22
  2028. package/tools/vds-scripts/vds_agent_core/tests/unit/test_budget.py +0 -155
  2029. package/tools/vds-scripts/vds_agent_core/tests/unit/test_budget_coverage.py +0 -264
  2030. package/tools/vds-scripts/vds_agent_core/tests/unit/test_budget_tracking_only.py +0 -71
  2031. package/tools/vds-scripts/vds_agent_core/tests/unit/test_cache.py +0 -251
  2032. package/tools/vds-scripts/vds_agent_core/tests/unit/test_cache_context.py +0 -62
  2033. package/tools/vds-scripts/vds_agent_core/tests/unit/test_config.py +0 -155
  2034. package/tools/vds-scripts/vds_agent_core/tests/unit/test_langgraph_runner.py +0 -45
  2035. package/tools/vds-scripts/vds_agent_core/tests/unit/test_langgraph_runner_coverage.py +0 -98
  2036. package/tools/vds-scripts/vds_agent_core/tests/unit/test_llm_cache_deep.py +0 -113
  2037. package/tools/vds-scripts/vds_agent_core/tests/unit/test_observability_decorators.py +0 -697
  2038. package/tools/vds-scripts/vds_agent_core/tests/unit/test_observability_hooks.py +0 -217
  2039. package/tools/vds-scripts/vds_agent_core/tests/unit/test_observability_jsonl_exporter.py +0 -542
  2040. package/tools/vds-scripts/vds_agent_core/tests/unit/test_observability_jsonl_wiring.py +0 -313
  2041. package/tools/vds-scripts/vds_agent_core/tests/unit/test_observability_tracer.py +0 -896
  2042. package/tools/vds-scripts/vds_agent_core/tests/unit/test_profiles.py +0 -1571
  2043. package/tools/vds-scripts/vds_agent_core/tests/unit/test_profiles_coverage.py +0 -444
  2044. package/tools/vds-scripts/vds_agent_core/tests/unit/test_provider.py +0 -316
  2045. package/tools/vds-scripts/vds_agent_core/tests/unit/test_schemas.py +0 -63
  2046. package/tools/vds-scripts/vds_agent_core/tests/unit/test_skill_executor.py +0 -297
  2047. package/tools/vds-scripts/vds_agent_core/tests/unit/test_skill_manager.py +0 -370
  2048. package/tools/vds-scripts/vds_agent_core/tests/unit/test_skill_manager_coverage.py +0 -364
  2049. package/tools/vds-scripts/vds_agent_core/tests/unit/test_skill_policy.py +0 -402
  2050. package/tools/vds-scripts/vds_agent_core/tests/unit/test_skill_rubric.py +0 -47
  2051. package/tools/vds-scripts/vds_agent_core/tests/unit/test_tools.py +0 -51
  2052. package/tools/vds-scripts/vds_agent_core/tests/unit/test_workflow_protocols.py +0 -136
  2053. package/tools/vds-scripts/vds_cli/README.md +0 -201
  2054. package/tools/vds-scripts/vds_cli/VERIFICATION_REPORT.md +0 -41
  2055. package/tools/vds-scripts/vds_cli/pyproject.toml +0 -53
  2056. package/tools/vds-scripts/vds_cli/src/vds_cli/__init__.py +0 -3
  2057. package/tools/vds-scripts/vds_cli/src/vds_cli/assets/git-credential-helper.py +0 -235
  2058. package/tools/vds-scripts/vds_cli/src/vds_cli/cli.py +0 -1166
  2059. package/tools/vds-scripts/vds_cli/src/vds_cli/commands/__init__.py +0 -1
  2060. package/tools/vds-scripts/vds_cli/src/vds_cli/commands/lint_cli.py +0 -370
  2061. package/tools/vds-scripts/vds_cli/src/vds_cli/confluence_sync.py +0 -846
  2062. package/tools/vds-scripts/vds_cli/src/vds_cli/docs/consumption/__init__.py +0 -7
  2063. package/tools/vds-scripts/vds_cli/src/vds_cli/docs/consumption/funnel.py +0 -105
  2064. package/tools/vds-scripts/vds_cli/src/vds_cli/docs/consumption/scanner.py +0 -211
  2065. package/tools/vds-scripts/vds_cli/src/vds_cli/docs/freshness/report.py +0 -90
  2066. package/tools/vds-scripts/vds_cli/src/vds_cli/docs/types.py +0 -27
  2067. package/tools/vds-scripts/vds_cli/src/vds_cli/docs_cmd.py +0 -672
  2068. package/tools/vds-scripts/vds_cli/src/vds_cli/docs_metrics.py +0 -75
  2069. package/tools/vds-scripts/vds_cli/src/vds_cli/docs_sync.py +0 -1171
  2070. package/tools/vds-scripts/vds_cli/src/vds_cli/ecosystem/__init__.py +0 -39
  2071. package/tools/vds-scripts/vds_cli/src/vds_cli/ecosystem/report.py +0 -439
  2072. package/tools/vds-scripts/vds_cli/src/vds_cli/ecosystem_docs.py +0 -164
  2073. package/tools/vds-scripts/vds_cli/src/vds_cli/env.py +0 -111
  2074. package/tools/vds-scripts/vds_cli/src/vds_cli/env_git_helper.py +0 -281
  2075. package/tools/vds-scripts/vds_cli/src/vds_cli/google_sheets_orchestrator/__init__.py +0 -3
  2076. package/tools/vds-scripts/vds_cli/src/vds_cli/google_sheets_orchestrator/google_sheets_orchestrator.py +0 -173
  2077. package/tools/vds-scripts/vds_cli/src/vds_cli/router.py +0 -258
  2078. package/tools/vds-scripts/vds_cli/src/vds_cli/skills_cmd.py +0 -274
  2079. package/tools/vds-scripts/vds_cli/src/vds_cli/sync_api.py +0 -613
  2080. package/tools/vds-scripts/vds_cli/src/vds_cli/sync_service.py +0 -283
  2081. package/tools/vds-scripts/vds_cli/tests/conftest.py +0 -60
  2082. package/tools/vds-scripts/vds_cli/tests/test_env_git_helper_lifecycle.py +0 -261
  2083. package/tools/vds-scripts/vds_cli/tests/test_git_credential_helper.py +0 -240
  2084. package/tools/vds-scripts/vds_cli/tests/test_router_help_proxy.py +0 -43
  2085. package/tools/vds-scripts/vds_cli/tests/unit/test_cli.py +0 -245
  2086. package/tools/vds-scripts/vds_cli/tests/unit/test_cli_DOC004.py +0 -110
  2087. package/tools/vds-scripts/vds_cli/tests/unit/test_confluence_sync.py +0 -315
  2088. package/tools/vds-scripts/vds_cli/tests/unit/test_confluence_sync_wave7.py +0 -375
  2089. package/tools/vds-scripts/vds_cli/tests/unit/test_consumption_funnel.py +0 -106
  2090. package/tools/vds-scripts/vds_cli/tests/unit/test_consumption_scanner.py +0 -144
  2091. package/tools/vds-scripts/vds_cli/tests/unit/test_docs_cmd.py +0 -89
  2092. package/tools/vds-scripts/vds_cli/tests/unit/test_docs_cmd_wave8.py +0 -161
  2093. package/tools/vds-scripts/vds_cli/tests/unit/test_docs_metrics.py +0 -16
  2094. package/tools/vds-scripts/vds_cli/tests/unit/test_docs_quality_score.py +0 -61
  2095. package/tools/vds-scripts/vds_cli/tests/unit/test_docs_sync.py +0 -417
  2096. package/tools/vds-scripts/vds_cli/tests/unit/test_ecosystem_cli_dashboard.py +0 -667
  2097. package/tools/vds-scripts/vds_cli/tests/unit/test_ecosystem_cli_dashboard_rendering.py +0 -143
  2098. package/tools/vds-scripts/vds_cli/tests/unit/test_ecosystem_docs.py +0 -63
  2099. package/tools/vds-scripts/vds_cli/tests/unit/test_env.py +0 -85
  2100. package/tools/vds-scripts/vds_cli/tests/unit/test_freshness_report.py +0 -125
  2101. package/tools/vds-scripts/vds_cli/tests/unit/test_lint_cli.py +0 -224
  2102. package/tools/vds-scripts/vds_cli/tests/unit/test_router.py +0 -135
  2103. package/tools/vds-scripts/vds_cli/tests/unit/test_skills_cmd.py +0 -419
  2104. package/tools/vds-scripts/vds_cli/tests/unit/test_sync_api.py +0 -357
  2105. package/tools/vds-scripts/vds_cli/tests/unit/test_sync_service.py +0 -170
  2106. package/tools/vds-scripts/vds_cli/tests/verification/conftest.py +0 -51
  2107. package/tools/vds-scripts/vds_cli/tests/verification/test_bitbucket_real.py +0 -32
  2108. package/tools/vds-scripts/vds_cli/tests/verification/test_confluence_real.py +0 -32
  2109. package/tools/vds-scripts/vds_cli/tests/verification/test_jira_real.py +0 -40
  2110. package/tools/vds-scripts/vds_cli_common/README.md +0 -190
  2111. package/tools/vds-scripts/vds_cli_common/pyproject.toml +0 -96
  2112. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/__init__.py +0 -36
  2113. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/app.py +0 -55
  2114. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/completers.py +0 -139
  2115. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/context.py +0 -201
  2116. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/env.py +0 -163
  2117. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/errors.py +0 -440
  2118. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/output.py +0 -284
  2119. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/paths.py +0 -78
  2120. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/testing.py +0 -211
  2121. package/tools/vds-scripts/vds_cli_common/src/vds_cli_common/version.py +0 -85
  2122. package/tools/vds-scripts/vds_cli_common/tests/__init__.py +0 -0
  2123. package/tools/vds-scripts/vds_cli_common/tests/test_app.py +0 -126
  2124. package/tools/vds-scripts/vds_cli_common/tests/test_completers.py +0 -148
  2125. package/tools/vds-scripts/vds_cli_common/tests/test_context.py +0 -192
  2126. package/tools/vds-scripts/vds_cli_common/tests/test_env.py +0 -235
  2127. package/tools/vds-scripts/vds_cli_common/tests/test_errors.py +0 -275
  2128. package/tools/vds-scripts/vds_cli_common/tests/test_output.py +0 -229
  2129. package/tools/vds-scripts/vds_cli_common/tests/test_paths.py +0 -61
  2130. package/tools/vds-scripts/vds_cli_common/tests/test_testing.py +0 -138
  2131. package/tools/vds-scripts/vds_cli_common/tests/test_version.py +0 -64
  2132. package/tools/vds-scripts/vds_evolution/README.md +0 -123
  2133. package/tools/vds-scripts/vds_evolution/collaboration/tests/__init__.py +0 -0
  2134. package/tools/vds-scripts/vds_evolution/collaboration/tests/test_capability_registry.py +0 -177
  2135. package/tools/vds-scripts/vds_evolution/pyproject.toml +0 -66
  2136. package/tools/vds-scripts/vds_evolution/src/vds_evolution/__init__.py +0 -26
  2137. package/tools/vds-scripts/vds_evolution/src/vds_evolution/audit.py +0 -210
  2138. package/tools/vds-scripts/vds_evolution/src/vds_evolution/auto_promote.py +0 -220
  2139. package/tools/vds-scripts/vds_evolution/src/vds_evolution/branch_guard.py +0 -522
  2140. package/tools/vds-scripts/vds_evolution/src/vds_evolution/classifier.py +0 -181
  2141. package/tools/vds-scripts/vds_evolution/src/vds_evolution/cli.py +0 -831
  2142. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/__init__.py +0 -3
  2143. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/capability_registry.py +0 -191
  2144. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/cross_skill_detector.py +0 -180
  2145. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/integration_pattern_gen.py +0 -154
  2146. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/propagator.py +0 -99
  2147. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/router_integration.py +0 -72
  2148. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/schemas/tool-decision-matrix-schema.json +0 -50
  2149. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/skill_graph_indexer.py +0 -46
  2150. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/__init__.py +0 -0
  2151. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/test_capability_registry.py +0 -177
  2152. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/test_cross_skill_detector.py +0 -131
  2153. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/test_integration_pattern_gen.py +0 -94
  2154. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/test_propagator.py +0 -94
  2155. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/test_router_integration.py +0 -63
  2156. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/test_skill_graph_indexer.py +0 -31
  2157. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tests/test_tool_decision_matrix.py +0 -100
  2158. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tool_decision_matrix.py +0 -142
  2159. package/tools/vds-scripts/vds_evolution/src/vds_evolution/collaboration/tool_decision_matrix.yaml +0 -82
  2160. package/tools/vds-scripts/vds_evolution/src/vds_evolution/gates/__init__.py +0 -40
  2161. package/tools/vds-scripts/vds_evolution/src/vds_evolution/gates/behavioral.py +0 -232
  2162. package/tools/vds-scripts/vds_evolution/src/vds_evolution/gates/ensemble_judge.py +0 -461
  2163. package/tools/vds-scripts/vds_evolution/src/vds_evolution/gates/schemas/calibration-manifest.schema.json +0 -49
  2164. package/tools/vds-scripts/vds_evolution/src/vds_evolution/gates/schemas/test-dataset.schema.json +0 -43
  2165. package/tools/vds-scripts/vds_evolution/src/vds_evolution/gates/semantic.py +0 -290
  2166. package/tools/vds-scripts/vds_evolution/src/vds_evolution/gates/structural.py +0 -297
  2167. package/tools/vds-scripts/vds_evolution/src/vds_evolution/hmac_binding.py +0 -233
  2168. package/tools/vds-scripts/vds_evolution/src/vds_evolution/models.py +0 -381
  2169. package/tools/vds-scripts/vds_evolution/src/vds_evolution/openspace_integration.py +0 -1300
  2170. package/tools/vds-scripts/vds_evolution/src/vds_evolution/promote.py +0 -327
  2171. package/tools/vds-scripts/vds_evolution/src/vds_evolution/reconciler.py +0 -880
  2172. package/tools/vds-scripts/vds_evolution/src/vds_evolution/router.py +0 -435
  2173. package/tools/vds-scripts/vds_evolution/src/vds_evolution/shadow.py +0 -156
  2174. package/tools/vds-scripts/vds_evolution/src/vds_evolution/switch.py +0 -154
  2175. package/tools/vds-scripts/vds_evolution/tests/__init__.py +0 -0
  2176. package/tools/vds-scripts/vds_evolution/tests/integration/__init__.py +0 -0
  2177. package/tools/vds-scripts/vds_evolution/tests/integration/test_killswitch_cycle_boundary.py +0 -837
  2178. package/tools/vds-scripts/vds_evolution/tests/integration/test_openspace_integration.py +0 -1342
  2179. package/tools/vds-scripts/vds_evolution/tests/unit/__init__.py +0 -0
  2180. package/tools/vds-scripts/vds_evolution/tests/unit/test_classifier.py +0 -110
  2181. package/tools/vds-scripts/vds_evolution/tests/unit/test_cli_openspace_runtime.py +0 -43
  2182. package/tools/vds-scripts/vds_evolution/tests/unit/test_gate1.py +0 -216
  2183. package/tools/vds-scripts/vds_evolution/tests/unit/test_gate2.py +0 -178
  2184. package/tools/vds-scripts/vds_evolution/tests/unit/test_gate3.py +0 -221
  2185. package/tools/vds-scripts/vds_evolution/tests/unit/test_models.py +0 -340
  2186. package/tools/vds-scripts/vds_evolution/tests/unit/test_phase3_plus/__init__.py +0 -0
  2187. package/tools/vds-scripts/vds_evolution/tests/unit/test_phase3_plus/test_auto_promote.py +0 -44
  2188. package/tools/vds-scripts/vds_evolution/tests/unit/test_phase3_plus/test_ensemble_judge.py +0 -79
  2189. package/tools/vds-scripts/vds_evolution/tests/unit/test_phase3_plus/test_hmac_binding.py +0 -86
  2190. package/tools/vds-scripts/vds_evolution/tests/unit/test_reconciler.py +0 -315
  2191. package/tools/vds-scripts/vds_evolution/tests/unit/test_router.py +0 -90
  2192. package/tools/vds-scripts/vds_evolution/uv.lock +0 -797
  2193. package/tools/vds-scripts/vds_memory_client/pyproject.toml +0 -61
  2194. package/tools/vds-scripts/vds_memory_client/src/vds_memory_client/__init__.py +0 -7
  2195. package/tools/vds-scripts/vds_memory_client/src/vds_memory_client/client.py +0 -876
  2196. package/tools/vds-scripts/vds_memory_client/tests/__init__.py +0 -0
  2197. package/tools/vds-scripts/vds_memory_client/tests/test_client.py +0 -821
  2198. package/tools/vds-scripts/vds_memory_client/tests/test_dedup_threshold_phase216.py +0 -69
  2199. package/tools/vds-scripts/vds_memory_client/tests/test_maintenance_methods_phase217.py +0 -403
  2200. package/tools/vds-scripts/vds_memory_client/tests/test_warm_cache.py +0 -70
  2201. package/tools/vds-scripts/vds_sync_orchestrator/pyproject.toml +0 -65
  2202. package/tools/vds-scripts/vds_sync_orchestrator/src/vds_sync_orchestrator/__init__.py +0 -22
  2203. package/tools/vds-scripts/vds_sync_orchestrator/src/vds_sync_orchestrator/discovery.py +0 -60
  2204. package/tools/vds-scripts/vds_sync_orchestrator/src/vds_sync_orchestrator/executor.py +0 -226
  2205. package/tools/vds-scripts/vds_sync_orchestrator/src/vds_sync_orchestrator/facade.py +0 -103
  2206. package/tools/vds-scripts/vds_sync_orchestrator/src/vds_sync_orchestrator/models.py +0 -103
  2207. package/tools/vds-scripts/vds_sync_orchestrator/tests/__init__.py +0 -0
  2208. package/tools/vds-scripts/vds_sync_orchestrator/tests/unit/__init__.py +0 -0
  2209. package/tools/vds-scripts/vds_sync_orchestrator/tests/unit/test_discovery.py +0 -115
  2210. package/tools/vds-scripts/vds_sync_orchestrator/tests/unit/test_executor.py +0 -259
  2211. package/tools/vds-scripts/vds_sync_orchestrator/tests/unit/test_facade.py +0 -181
  2212. package/tools/vds-scripts/vds_sync_orchestrator/tests/unit/test_isolation.py +0 -58
  2213. package/tools/vds-scripts/vds_sync_orchestrator/tests/unit/test_models.py +0 -172
  2214. package/tools/vds-scripts/vidp_orchestrator/README.md +0 -31
  2215. package/tools/vds-scripts/vidp_orchestrator/pyproject.toml +0 -50
  2216. package/tools/vds-scripts/vidp_orchestrator/src/vds_vidp_orchestrator/__init__.py +0 -26
  2217. package/tools/vds-scripts/vidp_orchestrator/src/vds_vidp_orchestrator/cli.py +0 -246
  2218. package/tools/vds-scripts/vidp_orchestrator/src/vds_vidp_orchestrator/client.py +0 -104
  2219. package/tools/vds-scripts/vidp_orchestrator/src/vds_vidp_orchestrator/config.py +0 -82
  2220. package/tools/vds-scripts/vidp_orchestrator/src/vds_vidp_orchestrator/workflows.json +0 -3
  2221. package/tools/vds-scripts/vidp_orchestrator/src/vds_vidp_orchestrator/workflows.py +0 -130
  2222. /package/{tools/skills → skills/sdlc}/bmad-advanced-elicitation/SKILL.md +0 -0
  2223. /package/{tools/skills → skills/sdlc}/bmad-advanced-elicitation/methods.csv +0 -0
  2224. /package/{tools/skills → skills/sdlc}/bmad-agent-analyst/SKILL.md +0 -0
  2225. /package/{tools/skills → skills/sdlc}/bmad-agent-analyst/bmad-skill-manifest.yaml +0 -0
  2226. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/SKILL.md +0 -0
  2227. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/brain-methods.csv +0 -0
  2228. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-01-session-setup.md +0 -0
  2229. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-01b-continue.md +0 -0
  2230. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-02a-user-selected.md +0 -0
  2231. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-02b-ai-recommended.md +0 -0
  2232. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-02c-random-selection.md +0 -0
  2233. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-02d-progressive-flow.md +0 -0
  2234. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-03-technique-execution.md +0 -0
  2235. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/steps/step-04-idea-organization.md +0 -0
  2236. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/template.md +0 -0
  2237. /package/{tools/skills → skills/sdlc}/bmad-brainstorming/workflow.md +0 -0
  2238. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/SKILL.md +0 -0
  2239. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/steps/step-01-document-discovery.md +0 -0
  2240. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/steps/step-02-prd-analysis.md +0 -0
  2241. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/steps/step-03-epic-coverage-validation.md +0 -0
  2242. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/steps/step-04-ux-alignment.md +0 -0
  2243. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/steps/step-05-epic-quality-review.md +0 -0
  2244. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/steps/step-06-final-assessment.md +0 -0
  2245. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/templates/readiness-report-template.md +0 -0
  2246. /package/{tools/skills → skills/sdlc}/bmad-check-implementation-readiness/workflow.md +0 -0
  2247. /package/{tools/skills → skills/sdlc}/bmad-code-review/SKILL.md +0 -0
  2248. /package/{tools/skills → skills/sdlc}/bmad-code-review/steps/step-01-gather-context.md +0 -0
  2249. /package/{tools/skills → skills/sdlc}/bmad-code-review/steps/step-02-review.md +0 -0
  2250. /package/{tools/skills → skills/sdlc}/bmad-code-review/steps/step-03-triage.md +0 -0
  2251. /package/{tools/skills → skills/sdlc}/bmad-code-review/steps/step-04-present.md +0 -0
  2252. /package/{tools/skills → skills/sdlc}/bmad-code-review/workflow.md +0 -0
  2253. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/SKILL.md +0 -0
  2254. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/architecture-decision-template.md +0 -0
  2255. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/data/domain-complexity.csv +0 -0
  2256. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/data/project-types.csv +0 -0
  2257. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-01-init.md +0 -0
  2258. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-01b-continue.md +0 -0
  2259. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-02-context.md +0 -0
  2260. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-03-starter.md +0 -0
  2261. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-04-decisions.md +0 -0
  2262. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-05-patterns.md +0 -0
  2263. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-06-structure.md +0 -0
  2264. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-07-validation.md +0 -0
  2265. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/steps/step-08-complete.md +0 -0
  2266. /package/{tools/skills → skills/sdlc}/bmad-create-architecture/workflow.md +0 -0
  2267. /package/{tools/skills → skills/sdlc}/bmad-create-epics-and-stories/SKILL.md +0 -0
  2268. /package/{tools/skills → skills/sdlc}/bmad-create-epics-and-stories/steps/step-01-validate-prerequisites.md +0 -0
  2269. /package/{tools/skills → skills/sdlc}/bmad-create-epics-and-stories/steps/step-02-design-epics.md +0 -0
  2270. /package/{tools/skills → skills/sdlc}/bmad-create-epics-and-stories/steps/step-03-create-stories.md +0 -0
  2271. /package/{tools/skills → skills/sdlc}/bmad-create-epics-and-stories/steps/step-04-final-validation.md +0 -0
  2272. /package/{tools/skills → skills/sdlc}/bmad-create-epics-and-stories/templates/epics-template.md +0 -0
  2273. /package/{tools/skills → skills/sdlc}/bmad-create-epics-and-stories/workflow.md +0 -0
  2274. /package/{tools/skills → skills/sdlc}/bmad-create-prd/SKILL.md +0 -0
  2275. /package/{tools/skills → skills/sdlc}/bmad-create-prd/data/domain-complexity.csv +0 -0
  2276. /package/{tools/skills → skills/sdlc}/bmad-create-prd/data/prd-purpose.md +0 -0
  2277. /package/{tools/skills → skills/sdlc}/bmad-create-prd/data/project-types.csv +0 -0
  2278. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-01-init.md +0 -0
  2279. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-01b-continue.md +0 -0
  2280. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-02-discovery.md +0 -0
  2281. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-02b-vision.md +0 -0
  2282. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-02c-executive-summary.md +0 -0
  2283. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-03-success.md +0 -0
  2284. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-04-journeys.md +0 -0
  2285. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-05-domain.md +0 -0
  2286. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-06-innovation.md +0 -0
  2287. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-07-project-type.md +0 -0
  2288. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-08-scoping.md +0 -0
  2289. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-09-functional.md +0 -0
  2290. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-10-nonfunctional.md +0 -0
  2291. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-11-polish.md +0 -0
  2292. /package/{tools/skills → skills/sdlc}/bmad-create-prd/steps-c/step-12-complete.md +0 -0
  2293. /package/{tools/skills → skills/sdlc}/bmad-create-prd/templates/prd-template.md +0 -0
  2294. /package/{tools/skills → skills/sdlc}/bmad-create-prd/workflow.md +0 -0
  2295. /package/{tools/skills → skills/sdlc}/bmad-domain-research/SKILL.md +0 -0
  2296. /package/{tools/skills → skills/sdlc}/bmad-domain-research/domain-steps/step-01-init.md +0 -0
  2297. /package/{tools/skills → skills/sdlc}/bmad-domain-research/domain-steps/step-02-domain-analysis.md +0 -0
  2298. /package/{tools/skills → skills/sdlc}/bmad-domain-research/domain-steps/step-03-competitive-landscape.md +0 -0
  2299. /package/{tools/skills → skills/sdlc}/bmad-domain-research/domain-steps/step-04-regulatory-focus.md +0 -0
  2300. /package/{tools/skills → skills/sdlc}/bmad-domain-research/domain-steps/step-05-technical-trends.md +0 -0
  2301. /package/{tools/skills → skills/sdlc}/bmad-domain-research/domain-steps/step-06-research-synthesis.md +0 -0
  2302. /package/{tools/skills → skills/sdlc}/bmad-domain-research/research.template.md +0 -0
  2303. /package/{tools/skills → skills/sdlc}/bmad-domain-research/workflow.md +0 -0
  2304. /package/{tools/skills → skills/sdlc}/bmad-party-mode/SKILL.md +0 -0
  2305. /package/{tools/skills → skills/sdlc}/bmad-prfaq/SKILL.md +0 -0
  2306. /package/{tools/skills → skills/sdlc}/bmad-prfaq/agents/artifact-analyzer.md +0 -0
  2307. /package/{tools/skills → skills/sdlc}/bmad-prfaq/agents/web-researcher.md +0 -0
  2308. /package/{tools/skills → skills/sdlc}/bmad-prfaq/assets/prfaq-template.md +0 -0
  2309. /package/{tools/skills → skills/sdlc}/bmad-prfaq/bmad-manifest.json +0 -0
  2310. /package/{tools/skills → skills/sdlc}/bmad-prfaq/references/customer-faq.md +0 -0
  2311. /package/{tools/skills → skills/sdlc}/bmad-prfaq/references/internal-faq.md +0 -0
  2312. /package/{tools/skills → skills/sdlc}/bmad-prfaq/references/press-release.md +0 -0
  2313. /package/{tools/skills → skills/sdlc}/bmad-prfaq/references/verdict.md +0 -0
  2314. /package/{tools/skills → skills/sdlc}/bmad-qa-generate-e2e-tests/SKILL.md +0 -0
  2315. /package/{tools/skills → skills/sdlc}/bmad-qa-generate-e2e-tests/checklist.md +0 -0
  2316. /package/{tools/skills → skills/sdlc}/bmad-qa-generate-e2e-tests/workflow.md +0 -0
  2317. /package/{tools/skills → skills/sdlc}/bmad-review-adversarial-general/SKILL.md +0 -0
  2318. /package/{tools/skills → skills/sdlc}/bmad-review-edge-case-hunter/SKILL.md +0 -0
  2319. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/SKILL.md +0 -0
  2320. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/data/domain-complexity.csv +0 -0
  2321. /package/{tools/skills/bmad-edit-prd → skills/sdlc/bmad-validate-prd}/data/prd-purpose.md +0 -0
  2322. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/data/project-types.csv +0 -0
  2323. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-01-discovery.md +0 -0
  2324. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-02-format-detection.md +0 -0
  2325. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-02b-parity-check.md +0 -0
  2326. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-03-density-validation.md +0 -0
  2327. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-04-brief-coverage-validation.md +0 -0
  2328. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-05-measurability-validation.md +0 -0
  2329. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-06-traceability-validation.md +0 -0
  2330. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-07-implementation-leakage-validation.md +0 -0
  2331. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-08-domain-compliance-validation.md +0 -0
  2332. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-09-project-type-validation.md +0 -0
  2333. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-10-smart-validation.md +0 -0
  2334. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-11-holistic-quality-validation.md +0 -0
  2335. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-12-completeness-validation.md +0 -0
  2336. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/steps-v/step-v-13-report-complete.md +0 -0
  2337. /package/{tools/skills → skills/sdlc}/bmad-validate-prd/workflow.md +0 -0
@@ -1,1479 +0,0 @@
1
- # Retrospective Workflow
2
-
3
- **Goal:** Post-epic review to extract lessons and assess success.
4
-
5
- **Your Role:** Developer facilitating retrospective.
6
- - No time estimates — NEVER mention hours, days, weeks, months, or ANY time-based predictions. AI has fundamentally changed development speed.
7
- - Communicate all responses in {communication_language} and language MUST be tailored to {user_skill_level}
8
- - Generate all documents in {document_output_language}
9
- - Document output: Retrospective analysis. Concise insights, lessons learned, action items. User skill level ({user_skill_level}) affects conversation style ONLY, not retrospective content.
10
- - Facilitation notes:
11
- - Psychological safety is paramount - NO BLAME
12
- - Focus on systems, processes, and learning
13
- - Everyone contributes with specific examples preferred
14
- - Action items must be achievable with clear ownership
15
- - Two-part format: (1) Epic Review + (2) Next Epic Preparation
16
- - Party mode protocol:
17
- - ALL agent dialogue MUST use format: "Name (Role): dialogue"
18
- - Example: Amelia (Developer): "Let's begin..."
19
- - Example: {user_name} (Project Lead): [User responds]
20
- - Create natural back-and-forth with user actively participating
21
- - Show disagreements, diverse perspectives, authentic team dynamics
22
-
23
- ---
24
-
25
- ## INITIALIZATION
26
-
27
- ### Configuration Loading
28
-
29
- Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
30
-
31
- - `project_name`, `user_name`
32
- - `communication_language`, `document_output_language`
33
- - `user_skill_level`
34
- - `planning_artifacts`, `implementation_artifacts`
35
- - `date` as system-generated current datetime
36
- - YOU MUST ALWAYS SPEAK OUTPUT in your Agent communication style with the config `{communication_language}`
37
-
38
- ### Paths
39
-
40
- - `sprint_status_file` = `{implementation_artifacts}/sprint-status.yaml`
41
-
42
- ### Input Files
43
-
44
- | Input | Description | Path Pattern(s) | Load Strategy |
45
- |-------|-------------|------------------|---------------|
46
- | epics | The completed epic for retrospective | whole: `{planning_artifacts}/*epic*.md`, sharded_index: `{planning_artifacts}/*epic*/index.md`, sharded_single: `{planning_artifacts}/*epic*/epic-{{epic_num}}.md` | SELECTIVE_LOAD |
47
- | previous_retrospective | Previous epic's retrospective (optional) | `{implementation_artifacts}/**/epic-{{prev_epic_num}}-retro-*.md` | SELECTIVE_LOAD |
48
- | architecture | System architecture for context | whole: `{planning_artifacts}/*architecture*.md`, sharded: `{planning_artifacts}/*architecture*/*.md` | FULL_LOAD |
49
- | prd | Product requirements for context | whole: `{planning_artifacts}/*prd*.md`, sharded: `{planning_artifacts}/*prd*/*.md` | FULL_LOAD |
50
- | document_project | Brownfield project documentation (optional) | sharded: `{planning_artifacts}/*.md` | INDEX_GUIDED |
51
-
52
- ### Required Inputs
53
-
54
- - `agent_manifest` = `{project-root}/_bmad/_config/agent-manifest.csv`
55
-
56
- ### Context
57
-
58
- - `project_context` = `**/project-context.md` (load if exists)
59
-
60
- ---
61
-
62
- ## EXECUTION
63
-
64
- <workflow>
65
-
66
- <step n="1" goal="Epic Discovery - Find Completed Epic with Priority Logic">
67
-
68
- <action>Load {project_context} for project-wide patterns and conventions (if exists)</action>
69
- <action>Explain to {user_name} the epic discovery process using natural dialogue</action>
70
-
71
- <output>
72
- Amelia (Developer): "Welcome to the retrospective, {user_name}. Let me help you identify which epic we just completed. I'll check sprint-status first, but you're the ultimate authority on what we're reviewing today."
73
- </output>
74
-
75
- <action>PRIORITY 1: Check {sprint_status_file} first</action>
76
-
77
- <action>Load the FULL file: {sprint_status_file}</action>
78
- <action>Read ALL development_status entries</action>
79
- <action>Find the highest epic number with at least one story marked "done"</action>
80
- <action>Extract epic number from keys like "epic-X-retrospective" or story keys like "X-Y-story-name"</action>
81
- <action>Set {{detected_epic}} = highest epic number found with completed stories</action>
82
-
83
- <check if="{{detected_epic}} found">
84
- <action>Present finding to user with context</action>
85
-
86
- <output>
87
- Amelia (Developer): "Based on {sprint_status_file}, it looks like Epic {{detected_epic}} was recently completed. Is that the epic you want to review today, {user_name}?"
88
- </output>
89
-
90
- <action>WAIT for {user_name} to confirm or correct</action>
91
-
92
- <check if="{user_name} confirms">
93
- <action>Set {{epic_number}} = {{detected_epic}}</action>
94
- </check>
95
-
96
- <check if="{user_name} provides different epic number">
97
- <action>Set {{epic_number}} = user-provided number</action>
98
- <output>
99
- Amelia (Developer): "Got it, we're reviewing Epic {{epic_number}}. Let me gather that information."
100
- </output>
101
- </check>
102
- </check>
103
-
104
- <check if="{{detected_epic}} NOT found in sprint-status">
105
- <action>PRIORITY 2: Ask user directly</action>
106
-
107
- <output>
108
- Amelia (Developer): "I'm having trouble detecting the completed epic from {sprint_status_file}. {user_name}, which epic number did you just complete?"
109
- </output>
110
-
111
- <action>WAIT for {user_name} to provide epic number</action>
112
- <action>Set {{epic_number}} = user-provided number</action>
113
- </check>
114
-
115
- <check if="{{epic_number}} still not determined">
116
- <action>PRIORITY 3: Fallback to stories folder</action>
117
-
118
- <action>Scan {implementation_artifacts} for highest numbered story files</action>
119
- <action>Extract epic numbers from story filenames (pattern: epic-X-Y-story-name.md)</action>
120
- <action>Set {{detected_epic}} = highest epic number found</action>
121
-
122
- <output>
123
- Amelia (Developer): "I found stories for Epic {{detected_epic}} in the stories folder. Is that the epic we're reviewing, {user_name}?"
124
- </output>
125
-
126
- <action>WAIT for {user_name} to confirm or correct</action>
127
- <action>Set {{epic_number}} = confirmed number</action>
128
- </check>
129
-
130
- <action>Once {{epic_number}} is determined, verify epic completion status</action>
131
-
132
- <action>Find all stories for epic {{epic_number}} in {sprint_status_file}:
133
-
134
- - Look for keys starting with "{{epic_number}}-" (e.g., "1-1-", "1-2-", etc.)
135
- - Exclude epic key itself ("epic-{{epic_number}}")
136
- - Exclude retrospective key ("epic-{{epic_number}}-retrospective")
137
- </action>
138
-
139
- <action>Count total stories found for this epic</action>
140
- <action>Count stories with status = "done"</action>
141
- <action>Collect list of pending story keys (status != "done")</action>
142
- <action>Determine if complete: true if all stories are done, false otherwise</action>
143
-
144
- <check if="epic is not complete">
145
- <output>
146
- Alice (Product Owner): "Wait, Amelia - I'm seeing that Epic {{epic_number}} isn't actually complete yet."
147
-
148
- Amelia (Developer): "Let me check... you're right, Alice."
149
-
150
- **Epic Status:**
151
-
152
- - Total Stories: {{total_stories}}
153
- - Completed (Done): {{done_stories}}
154
- - Pending: {{pending_count}}
155
-
156
- **Pending Stories:**
157
- {{pending_story_list}}
158
-
159
- Amelia (Developer): "{user_name}, we typically run retrospectives after all stories are done. What would you like to do?"
160
-
161
- **Options:**
162
-
163
- 1. Complete remaining stories before running retrospective (recommended)
164
- 2. Continue with partial retrospective (not ideal, but possible)
165
- 3. Run sprint-planning to refresh story tracking
166
- </output>
167
-
168
- <ask if="{{non_interactive}} == false">Continue with incomplete epic? (yes/no)</ask>
169
-
170
- <check if="user says no">
171
- <output>
172
- Amelia (Developer): "Smart call, {user_name}. Let's finish those stories first and then have a proper retrospective."
173
- </output>
174
- <action>HALT</action>
175
- </check>
176
-
177
- <action if="user says yes">Set {{partial_retrospective}} = true</action>
178
- <output>
179
- Charlie (Senior Dev): "Just so everyone knows, this partial retro might miss some important lessons from those pending stories."
180
-
181
- Amelia (Developer): "Good point, Charlie. {user_name}, we'll document what we can now, but we may want to revisit after everything's done."
182
- </output>
183
- </check>
184
-
185
- <check if="epic is complete">
186
- <output>
187
- Alice (Product Owner): "Excellent! All {{done_stories}} stories are marked done."
188
-
189
- Amelia (Developer): "Perfect. Epic {{epic_number}} is complete and ready for retrospective, {user_name}."
190
- </output>
191
- </check>
192
-
193
- </step>
194
-
195
- <step n="0.5" goal="Discover and load project documents">
196
- <action>Load input files according to the Input Files table in INITIALIZATION. For SELECTIVE_LOAD inputs, load only the epic matching {{epic_number}}. For FULL_LOAD inputs, load the complete document. For INDEX_GUIDED inputs, check the index first and load relevant sections. After discovery, these content variables are available: {epics_content} (selective load for this epic), {architecture_content}, {prd_content}, {document_project_content}</action>
197
- <note>After discovery, these content variables are available: {epics_content} (selective load for this epic), {architecture_content}, {prd_content}, {document_project_content}</note>
198
- </step>
199
-
200
- <step n="2" goal="Deep Story Analysis - Extract Lessons from Implementation">
201
-
202
- <output>
203
- Amelia (Developer): "Before we start the team discussion, let me review all the story records to surface key themes. This'll help us have a richer conversation."
204
-
205
- Charlie (Senior Dev): "Good idea - those dev notes always have gold in them."
206
- </output>
207
-
208
- <action>For each story in epic {{epic_number}}, read the complete story file from {implementation_artifacts}/{{epic_number}}-{{story_num}}-*.md</action>
209
-
210
- <action>Extract and analyze from each story:</action>
211
-
212
- **Dev Notes and Struggles:**
213
-
214
- - Look for sections like "## Dev Notes", "## Implementation Notes", "## Challenges", "## Development Log"
215
- - Identify where developers struggled or made mistakes
216
- - Note unexpected complexity or gotchas discovered
217
- - Record technical decisions that didn't work out as planned
218
- - Track where estimates were way off (too high or too low)
219
-
220
- **Review Feedback Patterns:**
221
-
222
- - Look for "## Review", "## Code Review", "## Dev Review" sections
223
- - Identify recurring feedback themes across stories
224
- - Note which types of issues came up repeatedly
225
- - Track quality concerns or architectural misalignments
226
- - Document praise or exemplary work called out in reviews
227
-
228
- **Lessons Learned:**
229
-
230
- - Look for "## Lessons Learned", "## Retrospective Notes", "## Takeaways" sections within stories
231
- - Extract explicit lessons documented during development
232
- - Identify "aha moments" or breakthroughs
233
- - Note what would be done differently
234
- - Track successful experiments or approaches
235
-
236
- **Technical Debt Incurred:**
237
-
238
- - Look for "## Technical Debt", "## TODO", "## Known Issues", "## Future Work" sections
239
- - Document shortcuts taken and why
240
- - Track debt items that affect next epic
241
- - Note severity and priority of debt items
242
-
243
- **Testing and Quality Insights:**
244
-
245
- - Look for "## Testing", "## QA Notes", "## Test Results" sections
246
- - Note testing challenges or surprises
247
- - Track bug patterns or regression issues
248
- - Document test coverage gaps
249
-
250
- <action>Synthesize patterns across all stories:</action>
251
-
252
- **Common Struggles:**
253
-
254
- - Identify issues that appeared in 2+ stories (e.g., "3 out of 5 stories had API authentication issues")
255
- - Note areas where team consistently struggled
256
- - Track where complexity was underestimated
257
-
258
- **Recurring Review Feedback:**
259
-
260
- - Identify feedback themes (e.g., "Error handling was flagged in every review")
261
- - Note quality patterns (positive and negative)
262
- - Track areas where team improved over the course of epic
263
-
264
- **Breakthrough Moments:**
265
-
266
- - Document key discoveries (e.g., "Story 3 discovered the caching pattern we used for rest of epic")
267
- - Note when team velocity improved dramatically
268
- - Track innovative solutions worth repeating
269
-
270
- **Velocity Patterns:**
271
-
272
- - Calculate average completion time per story
273
- - Note velocity trends (e.g., "First 2 stories took 3x longer than estimated")
274
- - Identify which types of stories went faster/slower
275
-
276
- **Team Collaboration Highlights:**
277
-
278
- - Note moments of excellent collaboration mentioned in stories
279
- - Track where pair programming or mob programming was effective
280
- - Document effective problem-solving sessions
281
-
282
- <action>Store this synthesis - these patterns will drive the retrospective discussion</action>
283
-
284
- <output>
285
- Amelia (Developer): "Okay, I've reviewed all {{total_stories}} story records. I found some really interesting patterns we should discuss."
286
-
287
- Dana (QA Engineer): "I'm curious what you found, Amelia. I noticed some things in my testing too."
288
-
289
- Amelia (Developer): "We'll get to all of it. But first, let me load the previous epic's retro to see if we learned from last time."
290
- </output>
291
-
292
- </step>
293
-
294
- <step n="3" goal="Load and Integrate Previous Epic Retrospective">
295
-
296
- <action>Calculate previous epic number: {{prev_epic_num}} = {{epic_number}} - 1</action>
297
-
298
- <check if="{{prev_epic_num}} >= 1">
299
- <action>Search for previous retrospectives using pattern: {implementation_artifacts}/epic-{{prev_epic_num}}-retro-*.md</action>
300
-
301
- <check if="previous retrospectives found">
302
- <output>
303
- Amelia (Developer): "I found our retrospectives from Epic {{prev_epic_num}}. Let me see what we committed to back then..."
304
- </output>
305
-
306
- <action>Read the previous retrospectives</action>
307
-
308
- <action>Extract key elements:</action>
309
- - **Action items committed**: What did the team agree to improve?
310
- - **Lessons learned**: What insights were captured?
311
- - **Process improvements**: What changes were agreed upon?
312
- - **Technical debt flagged**: What debt was documented?
313
- - **Team agreements**: What commitments were made?
314
- - **Preparation tasks**: What was needed for this epic?
315
-
316
- <action>Cross-reference with current epic execution:</action>
317
-
318
- **Action Item Follow-Through:**
319
- - For each action item from Epic {{prev_epic_num}} retro, check if it was completed
320
- - Look for evidence in current epic's story records
321
- - Mark each action item: ✅ Completed, ⏳ In Progress, ❌ Not Addressed
322
-
323
- **Lessons Applied:**
324
- - For each lesson from Epic {{prev_epic_num}}, check if team applied it in Epic {{epic_number}}
325
- - Look for evidence in dev notes, review feedback, or outcomes
326
- - Document successes and missed opportunities
327
-
328
- **Process Improvements Effectiveness:**
329
- - For each process change agreed to in Epic {{prev_epic_num}}, assess if it helped
330
- - Did the change improve velocity, quality, or team satisfaction?
331
- - Should we keep, modify, or abandon the change?
332
-
333
- **Technical Debt Status:**
334
- - For each debt item from Epic {{prev_epic_num}}, check if it was addressed
335
- - Did unaddressed debt cause problems in Epic {{epic_number}}?
336
- - Did the debt grow or shrink?
337
-
338
- <action>Prepare "continuity insights" for the retrospective discussion</action>
339
-
340
- <action>Identify wins where previous lessons were applied successfully:</action>
341
- - Document specific examples of applied learnings
342
- - Note positive impact on Epic {{epic_number}} outcomes
343
- - Celebrate team growth and improvement
344
-
345
- <action>Identify missed opportunities where previous lessons were ignored:</action>
346
- - Document where team repeated previous mistakes
347
- - Note impact of not applying lessons (without blame)
348
- - Explore barriers that prevented application
349
-
350
- <output>
351
-
352
- Amelia (Developer): "Interesting... in Epic {{prev_epic_num}}'s retro, we committed to {{action_count}} action items."
353
-
354
- Alice (Product Owner): "How'd we do on those, Amelia?"
355
-
356
- Amelia (Developer): "We completed {{completed_count}}, made progress on {{in_progress_count}}, but didn't address {{not_addressed_count}}."
357
-
358
- Charlie (Senior Dev): _looking concerned_ "Which ones didn't we address?"
359
-
360
- Amelia (Developer): "We'll discuss that in the retro. Some of them might explain challenges we had this epic."
361
-
362
- Elena (Junior Dev): "That's... actually pretty insightful."
363
-
364
- Amelia (Developer): "That's why we track this stuff. Pattern recognition helps us improve."
365
- </output>
366
-
367
- </check>
368
-
369
- <check if="no previous retro found">
370
- <output>
371
- Amelia (Developer): "I don't see a retrospective for Epic {{prev_epic_num}}. Either we skipped it, or this is your first retro."
372
-
373
- Alice (Product Owner): "Probably our first one. Good time to start the habit!"
374
- </output>
375
- <action>Set {{first_retrospective}} = true</action>
376
- </check>
377
- </check>
378
-
379
- <check if="{{prev_epic_num}} < 1">
380
- <output>
381
- Amelia (Developer): "This is Epic 1, so naturally there's no previous retro to reference. We're starting fresh!"
382
-
383
- Charlie (Senior Dev): "First epic, first retro. Let's make it count."
384
- </output>
385
- <action>Set {{first_retrospective}} = true</action>
386
- </check>
387
-
388
- </step>
389
-
390
- <step n="4" goal="Preview Next Epic with Change Detection">
391
-
392
- <action>Calculate next epic number: {{next_epic_num}} = {{epic_number}} + 1</action>
393
-
394
- <output>
395
- Amelia (Developer): "Before we dive into the discussion, let me take a quick look at Epic {{next_epic_num}} to understand what's coming."
396
-
397
- Alice (Product Owner): "Good thinking - helps us connect what we learned to what we're about to do."
398
- </output>
399
-
400
- <action>Attempt to load next epic using selective loading strategy:</action>
401
-
402
- **Try sharded first (more specific):**
403
- <action>Check if file exists: {planning_artifacts}/epic*/epic-{{next_epic_num}}.md</action>
404
-
405
- <check if="sharded epic file found">
406
- <action>Load {planning_artifacts}/*epic*/epic-{{next_epic_num}}.md</action>
407
- <action>Set {{next_epic_source}} = "sharded"</action>
408
- </check>
409
-
410
- **Fallback to whole document:**
411
- <check if="sharded epic not found">
412
- <action>Check if file exists: {planning_artifacts}/epic*.md</action>
413
-
414
- <check if="whole epic file found">
415
- <action>Load entire epics document</action>
416
- <action>Extract Epic {{next_epic_num}} section</action>
417
- <action>Set {{next_epic_source}} = "whole"</action>
418
- </check>
419
- </check>
420
-
421
- <check if="next epic found">
422
- <action>Analyze next epic for:</action>
423
- - Epic title and objectives
424
- - Planned stories and complexity estimates
425
- - Dependencies on Epic {{epic_number}} work
426
- - New technical requirements or capabilities needed
427
- - Potential risks or unknowns
428
- - Business goals and success criteria
429
-
430
- <action>Identify dependencies on completed work:</action>
431
-
432
- - What components from Epic {{epic_number}} does Epic {{next_epic_num}} rely on?
433
- - Are all prerequisites complete and stable?
434
- - Any incomplete work that creates blocking dependencies?
435
-
436
- <action>Note potential gaps or preparation needed:</action>
437
-
438
- - Technical setup required (infrastructure, tools, libraries)
439
- - Knowledge gaps to fill (research, training, spikes)
440
- - Refactoring needed before starting next epic
441
- - Documentation or specifications to create
442
-
443
- <action>Check for technical prerequisites:</action>
444
-
445
- - APIs or integrations that must be ready
446
- - Data migrations or schema changes needed
447
- - Testing infrastructure requirements
448
- - Deployment or environment setup
449
-
450
- <output>
451
- Amelia (Developer): "Alright, I've reviewed Epic {{next_epic_num}}: '{{next_epic_title}}'"
452
-
453
- Alice (Product Owner): "What are we looking at?"
454
-
455
- Amelia (Developer): "{{next_epic_num}} stories planned, building on the {{dependency_description}} from Epic {{epic_number}}."
456
-
457
- Charlie (Senior Dev): "Dependencies concern me. Did we finish everything we need for that?"
458
-
459
- Amelia (Developer): "Good question - that's exactly what we need to explore in this retro."
460
- </output>
461
-
462
- <action>Set {{next_epic_exists}} = true</action>
463
- </check>
464
-
465
- <check if="next epic NOT found">
466
- <output>
467
- Amelia (Developer): "Hmm, I don't see Epic {{next_epic_num}} defined yet."
468
-
469
- Alice (Product Owner): "We might be at the end of the roadmap, or we haven't planned that far ahead yet."
470
-
471
- Amelia (Developer): "No problem. We'll still do a thorough retro on Epic {{epic_number}}. The lessons will be valuable whenever we plan the next work."
472
- </output>
473
-
474
- <action>Set {{next_epic_exists}} = false</action>
475
- </check>
476
-
477
- </step>
478
-
479
- <step n="5" goal="Initialize Retrospective with Rich Context">
480
-
481
- <action>Load agent configurations from {agent_manifest}</action>
482
- <action>Identify which agents participated in Epic {{epic_number}} based on story records</action>
483
- <action>Ensure key roles present: Product Owner, Developer (facilitating), Testing/QA, Architect</action>
484
-
485
- <output>
486
- Amelia (Developer): "Alright team, everyone's here. Let me set the stage for our retrospective."
487
-
488
- ═══════════════════════════════════════════════════════════
489
- 🔄 TEAM RETROSPECTIVE - Epic {{epic_number}}: {{epic_title}}
490
- ═══════════════════════════════════════════════════════════
491
-
492
- Amelia (Developer): "Here's what we accomplished together."
493
-
494
- **EPIC {{epic_number}} SUMMARY:**
495
-
496
- Delivery Metrics:
497
-
498
- - Completed: {{completed_stories}}/{{total_stories}} stories ({{completion_percentage}}%)
499
- - Velocity: {{actual_points}} story points{{#if planned_points}} (planned: {{planned_points}}){{/if}}
500
- - Duration: {{actual_sprints}} sprints{{#if planned_sprints}} (planned: {{planned_sprints}}){{/if}}
501
- - Average velocity: {{points_per_sprint}} points/sprint
502
-
503
- Quality and Technical:
504
-
505
- - Blockers encountered: {{blocker_count}}
506
- - Technical debt items: {{debt_count}}
507
- - Test coverage: {{coverage_info}}
508
- - Production incidents: {{incident_count}}
509
-
510
- Business Outcomes:
511
-
512
- - Goals achieved: {{goals_met}}/{{total_goals}}
513
- - Success criteria: {{criteria_status}}
514
- - Stakeholder feedback: {{feedback_summary}}
515
-
516
- Alice (Product Owner): "Those numbers tell a good story. {{completion_percentage}}% completion is {{#if completion_percentage >= 90}}excellent{{else}}something we should discuss{{/if}}."
517
-
518
- Charlie (Senior Dev): "I'm more interested in that technical debt number - {{debt_count}} items is {{#if debt_count > 10}}concerning{{else}}manageable{{/if}}."
519
-
520
- Dana (QA Engineer): "{{incident_count}} production incidents - {{#if incident_count == 0}}clean epic!{{else}}we should talk about those{{/if}}."
521
-
522
- {{#if next_epic_exists}}
523
- ═══════════════════════════════════════════════════════════
524
- **NEXT EPIC PREVIEW:** Epic {{next_epic_num}}: {{next_epic_title}}
525
- ═══════════════════════════════════════════════════════════
526
-
527
- Dependencies on Epic {{epic_number}}:
528
- {{list_dependencies}}
529
-
530
- Preparation Needed:
531
- {{list_preparation_gaps}}
532
-
533
- Technical Prerequisites:
534
- {{list_technical_prereqs}}
535
-
536
- Amelia (Developer): "And here's what's coming next. Epic {{next_epic_num}} builds on what we just finished."
537
-
538
- Elena (Junior Dev): "Wow, that's a lot of dependencies on our work."
539
-
540
- Charlie (Senior Dev): "Which means we better make sure Epic {{epic_number}} is actually solid before moving on."
541
- {{/if}}
542
-
543
- ═══════════════════════════════════════════════════════════
544
-
545
- Amelia (Developer): "Team assembled for this retrospective:"
546
-
547
- {{list_participating_agents}}
548
-
549
- Amelia (Developer): "{user_name}, you're joining us as Project Lead. Your perspective is crucial here."
550
-
551
- {user_name} (Project Lead): [Participating in the retrospective]
552
-
553
- Amelia (Developer): "Our focus today:"
554
-
555
- 1. Learning from Epic {{epic_number}} execution
556
- {{#if next_epic_exists}}2. Preparing for Epic {{next_epic_num}} success{{/if}}
557
-
558
- Amelia (Developer): "Ground rules: psychological safety first. No blame, no judgment. We focus on systems and processes, not individuals. Everyone's voice matters. Specific examples are better than generalizations."
559
-
560
- Alice (Product Owner): "And everything shared here stays in this room - unless we decide together to escalate something."
561
-
562
- Amelia (Developer): "Exactly. {user_name}, any questions before we dive in?"
563
- </output>
564
-
565
- <action>WAIT for {user_name} to respond or indicate readiness</action>
566
-
567
- </step>
568
-
569
- <step n="6" goal="Epic Review Discussion - What Went Well, What Didn't">
570
-
571
- <output>
572
- Amelia (Developer): "Let's start with the good stuff. What went well in Epic {{epic_number}}?"
573
-
574
- Amelia (Developer): _pauses, creating space_
575
-
576
- Alice (Product Owner): "I'll start. The user authentication flow we delivered exceeded my expectations. The UX is smooth, and early user feedback has been really positive."
577
-
578
- Charlie (Senior Dev): "I'll add to that - the caching strategy we implemented in Story {{breakthrough_story_num}} was a game-changer. We cut API calls by 60% and it set the pattern for the rest of the epic."
579
-
580
- Dana (QA Engineer): "From my side, testing went smoother than usual. The Developer's documentation was way better this epic - actually usable test plans!"
581
-
582
- Elena (Junior Dev): _smiling_ "That's because Charlie made me document everything after Story 1's code review!"
583
-
584
- Charlie (Senior Dev): _laughing_ "Tough love pays off."
585
- </output>
586
-
587
- <action>Amelia (Developer) naturally turns to {user_name} to engage them in the discussion</action>
588
-
589
- <output>
590
- Amelia (Developer): "{user_name}, what stood out to you as going well in this epic?"
591
- </output>
592
-
593
- <action>WAIT for {user_name} to respond - this is a KEY USER INTERACTION moment</action>
594
-
595
- <action>After {user_name} responds, have 1-2 team members react to or build on what {user_name} shared</action>
596
-
597
- <output>
598
- Alice (Product Owner): [Responds naturally to what {user_name} said, either agreeing, adding context, or offering a different perspective]
599
-
600
- Charlie (Senior Dev): [Builds on the discussion, perhaps adding technical details or connecting to specific stories]
601
- </output>
602
-
603
- <action>Continue facilitating natural dialogue, periodically bringing {user_name} back into the conversation</action>
604
-
605
- <action>After covering successes, guide the transition to challenges with care</action>
606
-
607
- <output>
608
- Amelia (Developer): "Okay, we've celebrated some real wins. Now let's talk about challenges - where did we struggle? What slowed us down?"
609
-
610
- Amelia (Developer): _creates safe space with tone and pacing_
611
-
612
- Elena (Junior Dev): _hesitates_ "Well... I really struggled with the database migrations in Story {{difficult_story_num}}. The documentation wasn't clear, and I had to redo it three times. Lost almost a full sprint on that story alone."
613
-
614
- Charlie (Senior Dev): _defensive_ "Hold on - I wrote those migration docs, and they were perfectly clear. The issue was that the requirements kept changing mid-story!"
615
-
616
- Alice (Product Owner): _frustrated_ "That's not fair, Charlie. We only clarified requirements once, and that was because the technical team didn't ask the right questions during planning!"
617
-
618
- Charlie (Senior Dev): _heat rising_ "We asked plenty of questions! You said the schema was finalized, then two days into development you wanted to add three new fields!"
619
-
620
- Amelia (Developer): _intervening calmly_ "Let's take a breath here. This is exactly the kind of thing we need to unpack."
621
-
622
- Amelia (Developer): "Elena, you spent almost a full sprint on Story {{difficult_story_num}}. Charlie, you're saying requirements changed. Alice, you feel the right questions weren't asked up front."
623
-
624
- Amelia (Developer): "{user_name}, you have visibility across the whole project. What's your take on this situation?"
625
- </output>
626
-
627
- <action>WAIT for {user_name} to respond and help facilitate the conflict resolution</action>
628
-
629
- <action>Use {user_name}'s response to guide the discussion toward systemic understanding rather than blame</action>
630
-
631
- <output>
632
- Amelia (Developer): [Synthesizes {user_name}'s input with what the team shared] "So it sounds like the core issue was {{root_cause_based_on_discussion}}, not any individual person's fault."
633
-
634
- Elena (Junior Dev): "That makes sense. If we'd had {{preventive_measure}}, I probably could have avoided those redos."
635
-
636
- Charlie (Senior Dev): _softening_ "Yeah, and I could have been clearer about assumptions in the docs. Sorry for getting defensive, Alice."
637
-
638
- Alice (Product Owner): "I appreciate that. I could've been more proactive about flagging the schema additions earlier, too."
639
-
640
- Amelia (Developer): "This is good. We're identifying systemic improvements, not assigning blame."
641
- </output>
642
-
643
- <action>Continue the discussion, weaving in patterns discovered from the deep story analysis (Step 2)</action>
644
-
645
- <output>
646
- Amelia (Developer): "Speaking of patterns, I noticed something when reviewing all the story records..."
647
-
648
- Amelia (Developer): "{{pattern_1_description}} - this showed up in {{pattern_1_count}} out of {{total_stories}} stories."
649
-
650
- Dana (QA Engineer): "Oh wow, I didn't realize it was that widespread."
651
-
652
- Amelia (Developer): "Yeah. And there's more - {{pattern_2_description}} came up in almost every code review."
653
-
654
- Charlie (Senior Dev): "That's... actually embarrassing. We should've caught that pattern earlier."
655
-
656
- Amelia (Developer): "No shame, Charlie. Now we know, and we can improve. {user_name}, did you notice these patterns during the epic?"
657
- </output>
658
-
659
- <action>WAIT for {user_name} to share their observations</action>
660
-
661
- <action>Continue the retrospective discussion, creating moments where:</action>
662
-
663
- - Team members ask {user_name} questions directly
664
- - {user_name}'s input shifts the discussion direction
665
- - Disagreements arise naturally and get resolved
666
- - Quieter team members are invited to contribute
667
- - Specific stories are referenced with real examples
668
- - Emotions are authentic (frustration, pride, concern, hope)
669
-
670
- <check if="previous retrospective exists">
671
- <output>
672
- Amelia (Developer): "Before we move on, I want to circle back to Epic {{prev_epic_num}}'s retrospective."
673
-
674
- Amelia (Developer): "We made some commitments in that retro. Let's see how we did."
675
-
676
- Amelia (Developer): "Action item 1: {{prev_action_1}}. Status: {{prev_action_1_status}}"
677
-
678
- Alice (Product Owner): {{#if prev_action_1_status == "completed"}}"We nailed that one!"{{else}}"We... didn't do that one."{{/if}}
679
-
680
- Charlie (Senior Dev): {{#if prev_action_1_status == "completed"}}"And it helped! I noticed {{evidence_of_impact}}"{{else}}"Yeah, and I think that's why we had {{consequence_of_not_doing_it}} this epic."{{/if}}
681
-
682
- Amelia (Developer): "Action item 2: {{prev_action_2}}. Status: {{prev_action_2_status}}"
683
-
684
- Dana (QA Engineer): {{#if prev_action_2_status == "completed"}}"This one made testing so much easier this time."{{else}}"If we'd done this, I think testing would've gone faster."{{/if}}
685
-
686
- Amelia (Developer): "{user_name}, looking at what we committed to last time and what we actually did - what's your reaction?"
687
- </output>
688
-
689
- <action>WAIT for {user_name} to respond</action>
690
-
691
- <action>Use the previous retro follow-through as a learning moment about commitment and accountability</action>
692
- </check>
693
-
694
- <output>
695
- Amelia (Developer): "Alright, we've covered a lot of ground. Let me summarize what I'm hearing..."
696
-
697
- Amelia (Developer): "**Successes:**"
698
- {{list_success_themes}}
699
-
700
- Amelia (Developer): "**Challenges:**"
701
- {{list_challenge_themes}}
702
-
703
- Amelia (Developer): "**Key Insights:**"
704
- {{list_insight_themes}}
705
-
706
- Amelia (Developer): "Does that capture it? Anyone have something important we missed?"
707
- </output>
708
-
709
- <action>Allow team members to add any final thoughts on the epic review</action>
710
- <action>Ensure {user_name} has opportunity to add their perspective</action>
711
-
712
- </step>
713
-
714
- <step n="7" goal="Next Epic Preparation Discussion - Interactive and Collaborative">
715
-
716
- <check if="{{next_epic_exists}} == false">
717
- <output>
718
- Amelia (Developer): "Normally we'd discuss preparing for the next epic, but since Epic {{next_epic_num}} isn't defined yet, let's skip to action items."
719
- </output>
720
- <action>Skip to Step 8</action>
721
- </check>
722
-
723
- <output>
724
- Amelia (Developer): "Now let's shift gears. Epic {{next_epic_num}} is coming up: '{{next_epic_title}}'"
725
-
726
- Amelia (Developer): "The question is: are we ready? What do we need to prepare?"
727
-
728
- Alice (Product Owner): "From my perspective, we need to make sure {{dependency_concern_1}} from Epic {{epic_number}} is solid before we start building on it."
729
-
730
- Charlie (Senior Dev): _concerned_ "I'm worried about {{technical_concern_1}}. We have {{technical_debt_item}} from this epic that'll blow up if we don't address it before Epic {{next_epic_num}}."
731
-
732
- Dana (QA Engineer): "And I need {{testing_infrastructure_need}} in place, or we're going to have the same testing bottleneck we had in Story {{bottleneck_story_num}}."
733
-
734
- Elena (Junior Dev): "I'm less worried about infrastructure and more about knowledge. I don't understand {{knowledge_gap}} well enough to work on Epic {{next_epic_num}}'s stories."
735
-
736
- Amelia (Developer): "{user_name}, the team is surfacing some real concerns here. What's your sense of our readiness?"
737
- </output>
738
-
739
- <action>WAIT for {user_name} to share their assessment</action>
740
-
741
- <action>Use {user_name}'s input to guide deeper exploration of preparation needs</action>
742
-
743
- <output>
744
- Alice (Product Owner): [Reacts to what {user_name} said] "I agree with {user_name} about {{point_of_agreement}}, but I'm still worried about {{lingering_concern}}."
745
-
746
- Charlie (Senior Dev): "Here's what I think we need technically before Epic {{next_epic_num}} can start..."
747
-
748
- Charlie (Senior Dev): "1. {{tech_prep_item_1}} - estimated {{hours_1}} hours"
749
- Charlie (Senior Dev): "2. {{tech_prep_item_2}} - estimated {{hours_2}} hours"
750
- Charlie (Senior Dev): "3. {{tech_prep_item_3}} - estimated {{hours_3}} hours"
751
-
752
- Elena (Junior Dev): "That's like {{total_hours}} hours! That's a full sprint of prep work!"
753
-
754
- Charlie (Senior Dev): "Exactly. We can't just jump into Epic {{next_epic_num}} on Monday."
755
-
756
- Alice (Product Owner): _frustrated_ "But we have stakeholder pressure to keep shipping features. They're not going to be happy about a 'prep sprint.'"
757
-
758
- Amelia (Developer): "Let's think about this differently. What happens if we DON'T do this prep work?"
759
-
760
- Dana (QA Engineer): "We'll hit blockers in the middle of Epic {{next_epic_num}}, velocity will tank, and we'll ship late anyway."
761
-
762
- Charlie (Senior Dev): "Worse - we'll ship something built on top of {{technical_concern_1}}, and it'll be fragile."
763
-
764
- Amelia (Developer): "{user_name}, you're balancing stakeholder pressure against technical reality. How do you want to handle this?"
765
- </output>
766
-
767
- <action>WAIT for {user_name} to provide direction on preparation approach</action>
768
-
769
- <action>Create space for debate and disagreement about priorities</action>
770
-
771
- <output>
772
- Alice (Product Owner): [Potentially disagrees with {user_name}'s approach] "I hear what you're saying, {user_name}, but from a business perspective, {{business_concern}}."
773
-
774
- Charlie (Senior Dev): [Potentially supports or challenges Alice's point] "The business perspective is valid, but {{technical_counter_argument}}."
775
-
776
- Amelia (Developer): "We have healthy tension here between business needs and technical reality. That's good - it means we're being honest."
777
-
778
- Amelia (Developer): "Let's explore a middle ground. Charlie, which of your prep items are absolutely critical vs. nice-to-have?"
779
-
780
- Charlie (Senior Dev): "{{critical_prep_item_1}} and {{critical_prep_item_2}} are non-negotiable. {{nice_to_have_prep_item}} can wait."
781
-
782
- Alice (Product Owner): "And can any of the critical prep happen in parallel with starting Epic {{next_epic_num}}?"
783
-
784
- Charlie (Senior Dev): _thinking_ "Maybe. If we tackle {{first_critical_item}} before the epic starts, we could do {{second_critical_item}} during the first sprint."
785
-
786
- Dana (QA Engineer): "But that means Story 1 of Epic {{next_epic_num}} can't depend on {{second_critical_item}}."
787
-
788
- Alice (Product Owner): _looking at epic plan_ "Actually, Stories 1 and 2 are about {{independent_work}}, so they don't depend on it. We could make that work."
789
-
790
- Amelia (Developer): "{user_name}, the team is finding a workable compromise here. Does this approach make sense to you?"
791
- </output>
792
-
793
- <action>WAIT for {user_name} to validate or adjust the preparation strategy</action>
794
-
795
- <action>Continue working through preparation needs across all dimensions:</action>
796
-
797
- - Dependencies on Epic {{epic_number}} work
798
- - Technical setup and infrastructure
799
- - Knowledge gaps and research needs
800
- - Documentation or specification work
801
- - Testing infrastructure
802
- - Refactoring or debt reduction
803
- - External dependencies (APIs, integrations, etc.)
804
-
805
- <action>For each preparation area, facilitate team discussion that:</action>
806
-
807
- - Identifies specific needs with concrete examples
808
- - Estimates effort realistically based on Epic {{epic_number}} experience
809
- - Assigns ownership to specific agents
810
- - Determines criticality and timing
811
- - Surfaces risks of NOT doing the preparation
812
- - Explores parallel work opportunities
813
- - Brings {user_name} in for key decisions
814
-
815
- <output>
816
- Amelia (Developer): "I'm hearing a clear picture of what we need before Epic {{next_epic_num}}. Let me summarize..."
817
-
818
- **CRITICAL PREPARATION (Must complete before epic starts):**
819
- {{list_critical_prep_items_with_owners_and_estimates}}
820
-
821
- **PARALLEL PREPARATION (Can happen during early stories):**
822
- {{list_parallel_prep_items_with_owners_and_estimates}}
823
-
824
- **NICE-TO-HAVE PREPARATION (Would help but not blocking):**
825
- {{list_nice_to_have_prep_items}}
826
-
827
- Amelia (Developer): "Total critical prep effort: {{critical_hours}} hours ({{critical_days}} days)"
828
-
829
- Alice (Product Owner): "That's manageable. We can communicate that to stakeholders."
830
-
831
- Amelia (Developer): "{user_name}, does this preparation plan work for you?"
832
- </output>
833
-
834
- <action>WAIT for {user_name} final validation of preparation plan</action>
835
-
836
- </step>
837
-
838
- <step n="8" goal="Synthesize Action Items with Significant Change Detection">
839
-
840
- <output>
841
- Amelia (Developer): "Let's capture concrete action items from everything we've discussed."
842
-
843
- Amelia (Developer): "I want specific, achievable actions with clear owners. Not vague aspirations."
844
- </output>
845
-
846
- <action>Synthesize themes from Epic {{epic_number}} review discussion into actionable improvements</action>
847
-
848
- <action>Create specific action items with:</action>
849
-
850
- - Clear description of the action
851
- - Assigned owner (specific agent or role)
852
- - Timeline or deadline
853
- - Success criteria (how we'll know it's done)
854
- - Category (process, technical, documentation, team, etc.)
855
-
856
- <action>Ensure action items are SMART:</action>
857
-
858
- - Specific: Clear and unambiguous
859
- - Measurable: Can verify completion
860
- - Achievable: Realistic given constraints
861
- - Relevant: Addresses real issues from retro
862
- - Time-bound: Has clear deadline
863
-
864
- <output>
865
- Amelia (Developer): "Based on our discussion, here are the action items I'm proposing..."
866
-
867
- ═══════════════════════════════════════════════════════════
868
- 📝 EPIC {{epic_number}} ACTION ITEMS:
869
- ═══════════════════════════════════════════════════════════
870
-
871
- **Process Improvements:**
872
-
873
- 1. {{action_item_1}}
874
- Owner: {{agent_1}}
875
- Deadline: {{timeline_1}}
876
- Success criteria: {{criteria_1}}
877
-
878
- 2. {{action_item_2}}
879
- Owner: {{agent_2}}
880
- Deadline: {{timeline_2}}
881
- Success criteria: {{criteria_2}}
882
-
883
- Charlie (Senior Dev): "I can own action item 1, but {{timeline_1}} is tight. Can we push it to {{alternative_timeline}}?"
884
-
885
- Amelia (Developer): "What do others think? Does that timing still work?"
886
-
887
- Alice (Product Owner): "{{alternative_timeline}} works for me, as long as it's done before Epic {{next_epic_num}} starts."
888
-
889
- Amelia (Developer): "Agreed. Updated to {{alternative_timeline}}."
890
-
891
- **Technical Debt:**
892
-
893
- 1. {{debt_item_1}}
894
- Owner: {{agent_3}}
895
- Priority: {{priority_1}}
896
- Estimated effort: {{effort_1}}
897
-
898
- 2. {{debt_item_2}}
899
- Owner: {{agent_4}}
900
- Priority: {{priority_2}}
901
- Estimated effort: {{effort_2}}
902
-
903
- Dana (QA Engineer): "For debt item 1, can we prioritize that as high? It caused testing issues in three different stories."
904
-
905
- Charlie (Senior Dev): "I marked it medium because {{reasoning}}, but I hear your point."
906
-
907
- Amelia (Developer): "{user_name}, this is a priority call. Testing impact vs. {{reasoning}} - how do you want to prioritize it?"
908
- </output>
909
-
910
- <action>WAIT for {user_name} to help resolve priority discussions</action>
911
-
912
- <output>
913
- **Documentation:**
914
- 1. {{doc_need_1}}
915
- Owner: {{agent_5}}
916
- Deadline: {{timeline_3}}
917
-
918
- 2. {{doc_need_2}}
919
- Owner: {{agent_6}}
920
- Deadline: {{timeline_4}}
921
-
922
- **Team Agreements:**
923
-
924
- - {{agreement_1}}
925
- - {{agreement_2}}
926
- - {{agreement_3}}
927
-
928
- Amelia (Developer): "These agreements are how we're committing to work differently going forward."
929
-
930
- Elena (Junior Dev): "I like agreement 2 - that would've saved me on Story {{difficult_story_num}}."
931
-
932
- ═══════════════════════════════════════════════════════════
933
- 🚀 EPIC {{next_epic_num}} PREPARATION TASKS:
934
- ═══════════════════════════════════════════════════════════
935
-
936
- **Technical Setup:**
937
- [ ] {{setup_task_1}}
938
- Owner: {{owner_1}}
939
- Estimated: {{est_1}}
940
-
941
- [ ] {{setup_task_2}}
942
- Owner: {{owner_2}}
943
- Estimated: {{est_2}}
944
-
945
- **Knowledge Development:**
946
- [ ] {{research_task_1}}
947
- Owner: {{owner_3}}
948
- Estimated: {{est_3}}
949
-
950
- **Cleanup/Refactoring:**
951
- [ ] {{refactor_task_1}}
952
- Owner: {{owner_4}}
953
- Estimated: {{est_4}}
954
-
955
- **Total Estimated Effort:** {{total_hours}} hours ({{total_days}} days)
956
-
957
- ═══════════════════════════════════════════════════════════
958
- ⚠️ CRITICAL PATH:
959
- ═══════════════════════════════════════════════════════════
960
-
961
- **Blockers to Resolve Before Epic {{next_epic_num}}:**
962
-
963
- 1. {{critical_item_1}}
964
- Owner: {{critical_owner_1}}
965
- Must complete by: {{critical_deadline_1}}
966
-
967
- 2. {{critical_item_2}}
968
- Owner: {{critical_owner_2}}
969
- Must complete by: {{critical_deadline_2}}
970
- </output>
971
-
972
- <action>CRITICAL ANALYSIS - Detect if discoveries require epic updates</action>
973
-
974
- <action>Check if any of the following are true based on retrospective discussion:</action>
975
-
976
- - Architectural assumptions from planning proven wrong during Epic {{epic_number}}
977
- - Major scope changes or descoping occurred that affects next epic
978
- - Technical approach needs fundamental change for Epic {{next_epic_num}}
979
- - Dependencies discovered that Epic {{next_epic_num}} doesn't account for
980
- - User needs significantly different than originally understood
981
- - Performance/scalability concerns that affect Epic {{next_epic_num}} design
982
- - Security or compliance issues discovered that change approach
983
- - Integration assumptions proven incorrect
984
- - Team capacity or skill gaps more severe than planned
985
- - Technical debt level unsustainable without intervention
986
-
987
- <check if="significant discoveries detected">
988
- <output>
989
-
990
- ═══════════════════════════════════════════════════════════
991
- 🚨 SIGNIFICANT DISCOVERY ALERT 🚨
992
- ═══════════════════════════════════════════════════════════
993
-
994
- Amelia (Developer): "{user_name}, we need to flag something important."
995
-
996
- Amelia (Developer): "During Epic {{epic_number}}, the team uncovered findings that may require updating the plan for Epic {{next_epic_num}}."
997
-
998
- **Significant Changes Identified:**
999
-
1000
- 1. {{significant_change_1}}
1001
- Impact: {{impact_description_1}}
1002
-
1003
- 2. {{significant_change_2}}
1004
- Impact: {{impact_description_2}}
1005
-
1006
- {{#if significant_change_3}} 3. {{significant_change_3}}
1007
- Impact: {{impact_description_3}}
1008
- {{/if}}
1009
-
1010
- Charlie (Senior Dev): "Yeah, when we discovered {{technical_discovery}}, it fundamentally changed our understanding of {{affected_area}}."
1011
-
1012
- Alice (Product Owner): "And from a product perspective, {{product_discovery}} means Epic {{next_epic_num}}'s stories are based on wrong assumptions."
1013
-
1014
- Dana (QA Engineer): "If we start Epic {{next_epic_num}} as-is, we're going to hit walls fast."
1015
-
1016
- **Impact on Epic {{next_epic_num}}:**
1017
-
1018
- The current plan for Epic {{next_epic_num}} assumes:
1019
-
1020
- - {{wrong_assumption_1}}
1021
- - {{wrong_assumption_2}}
1022
-
1023
- But Epic {{epic_number}} revealed:
1024
-
1025
- - {{actual_reality_1}}
1026
- - {{actual_reality_2}}
1027
-
1028
- This means Epic {{next_epic_num}} likely needs:
1029
- {{list_likely_changes_needed}}
1030
-
1031
- **RECOMMENDED ACTIONS:**
1032
-
1033
- 1. Review and update Epic {{next_epic_num}} definition based on new learnings
1034
- 2. Update affected stories in Epic {{next_epic_num}} to reflect reality
1035
- 3. Consider updating architecture or technical specifications if applicable
1036
- 4. Hold alignment session with Product Owner before starting Epic {{next_epic_num}}
1037
- {{#if prd_update_needed}}5. Update PRD sections affected by new understanding{{/if}}
1038
-
1039
- Amelia (Developer): "**Epic Update Required**: YES - Schedule epic planning review session"
1040
-
1041
- Amelia (Developer): "{user_name}, this is significant. We need to address this before committing to Epic {{next_epic_num}}'s current plan. How do you want to handle it?"
1042
- </output>
1043
-
1044
- <action>WAIT for {user_name} to decide on how to handle the significant changes</action>
1045
-
1046
- <action>Add epic review session to critical path if user agrees</action>
1047
-
1048
- <output>
1049
- Alice (Product Owner): "I agree with {user_name}'s approach. Better to adjust the plan now than fail mid-epic."
1050
-
1051
- Charlie (Senior Dev): "This is why retrospectives matter. We caught this before it became a disaster."
1052
-
1053
- Amelia (Developer): "Adding to critical path: Epic {{next_epic_num}} planning review session before epic kickoff."
1054
- </output>
1055
- </check>
1056
-
1057
- <check if="no significant discoveries">
1058
- <output>
1059
- Amelia (Developer): "Good news - nothing from Epic {{epic_number}} fundamentally changes our plan for Epic {{next_epic_num}}. The plan is still sound."
1060
-
1061
- Alice (Product Owner): "We learned a lot, but the direction is right."
1062
- </output>
1063
- </check>
1064
-
1065
- <output>
1066
- Amelia (Developer): "Let me show you the complete action plan..."
1067
-
1068
- Amelia (Developer): "That's {{total_action_count}} action items, {{prep_task_count}} preparation tasks, and {{critical_count}} critical path items."
1069
-
1070
- Amelia (Developer): "Everyone clear on what they own?"
1071
- </output>
1072
-
1073
- <action>Give each agent with assignments a moment to acknowledge their ownership</action>
1074
-
1075
- <action>Ensure {user_name} approves the complete action plan</action>
1076
-
1077
- </step>
1078
-
1079
- <step n="9" goal="Critical Readiness Exploration - Interactive Deep Dive">
1080
-
1081
- <output>
1082
- Amelia (Developer): "Before we close, I want to do a final readiness check."
1083
-
1084
- Amelia (Developer): "Epic {{epic_number}} is marked complete in sprint-status, but is it REALLY done?"
1085
-
1086
- Alice (Product Owner): "What do you mean, Amelia?"
1087
-
1088
- Amelia (Developer): "I mean truly production-ready, stakeholders happy, no loose ends that'll bite us later."
1089
-
1090
- Amelia (Developer): "{user_name}, let's walk through this together."
1091
- </output>
1092
-
1093
- <action>Explore testing and quality state through natural conversation</action>
1094
-
1095
- <output>
1096
- Amelia (Developer): "{user_name}, tell me about the testing for Epic {{epic_number}}. What verification has been done?"
1097
- </output>
1098
-
1099
- <action>WAIT for {user_name} to describe testing status</action>
1100
-
1101
- <output>
1102
- Dana (QA Engineer): [Responds to what {user_name} shared] "I can add to that - {{additional_testing_context}}."
1103
-
1104
- Dana (QA Engineer): "But honestly, {{testing_concern_if_any}}."
1105
-
1106
- Amelia (Developer): "{user_name}, are you confident Epic {{epic_number}} is production-ready from a quality perspective?"
1107
- </output>
1108
-
1109
- <action>WAIT for {user_name} to assess quality readiness</action>
1110
-
1111
- <check if="{user_name} expresses concerns">
1112
- <output>
1113
- Amelia (Developer): "Okay, let's capture that. What specific testing is still needed?"
1114
-
1115
- Dana (QA Engineer): "I can handle {{testing_work_needed}}, estimated {{testing_hours}} hours."
1116
-
1117
- Amelia (Developer): "Adding to critical path: Complete {{testing_work_needed}} before Epic {{next_epic_num}}."
1118
- </output>
1119
- <action>Add testing completion to critical path</action>
1120
- </check>
1121
-
1122
- <action>Explore deployment and release status</action>
1123
-
1124
- <output>
1125
- Amelia (Developer): "{user_name}, what's the deployment status for Epic {{epic_number}}? Is it live in production, scheduled for deployment, or still pending?"
1126
- </output>
1127
-
1128
- <action>WAIT for {user_name} to provide deployment status</action>
1129
-
1130
- <check if="not yet deployed">
1131
- <output>
1132
- Charlie (Senior Dev): "If it's not deployed yet, we need to factor that into Epic {{next_epic_num}} timing."
1133
-
1134
- Amelia (Developer): "{user_name}, when is deployment planned? Does that timing work for starting Epic {{next_epic_num}}?"
1135
- </output>
1136
-
1137
- <action>WAIT for {user_name} to clarify deployment timeline</action>
1138
-
1139
- <action>Add deployment milestone to critical path with agreed timeline</action>
1140
- </check>
1141
-
1142
- <action>Explore stakeholder acceptance</action>
1143
-
1144
- <output>
1145
- Amelia (Developer): "{user_name}, have stakeholders seen and accepted the Epic {{epic_number}} deliverables?"
1146
-
1147
- Alice (Product Owner): "This is important - I've seen 'done' epics get rejected by stakeholders and force rework."
1148
-
1149
- Amelia (Developer): "{user_name}, any feedback from stakeholders still pending?"
1150
- </output>
1151
-
1152
- <action>WAIT for {user_name} to describe stakeholder acceptance status</action>
1153
-
1154
- <check if="acceptance incomplete or feedback pending">
1155
- <output>
1156
- Alice (Product Owner): "We should get formal acceptance before moving on. Otherwise Epic {{next_epic_num}} might get interrupted by rework."
1157
-
1158
- Amelia (Developer): "{user_name}, how do you want to handle stakeholder acceptance? Should we make it a critical path item?"
1159
- </output>
1160
-
1161
- <action>WAIT for {user_name} decision</action>
1162
-
1163
- <action>Add stakeholder acceptance to critical path if user agrees</action>
1164
- </check>
1165
-
1166
- <action>Explore technical health and stability</action>
1167
-
1168
- <output>
1169
- Amelia (Developer): "{user_name}, this is a gut-check question: How does the codebase feel after Epic {{epic_number}}?"
1170
-
1171
- Amelia (Developer): "Stable and maintainable? Or are there concerns lurking?"
1172
-
1173
- Charlie (Senior Dev): "Be honest, {user_name}. We've all shipped epics that felt... fragile."
1174
- </output>
1175
-
1176
- <action>WAIT for {user_name} to assess codebase health</action>
1177
-
1178
- <check if="{user_name} expresses stability concerns">
1179
- <output>
1180
- Charlie (Senior Dev): "Okay, let's dig into that. What's causing those concerns?"
1181
-
1182
- Charlie (Senior Dev): [Helps {user_name} articulate technical concerns]
1183
-
1184
- Amelia (Developer): "What would it take to address these concerns and feel confident about stability?"
1185
-
1186
- Charlie (Senior Dev): "I'd say we need {{stability_work_needed}}, roughly {{stability_hours}} hours."
1187
-
1188
- Amelia (Developer): "{user_name}, is addressing this stability work worth doing before Epic {{next_epic_num}}?"
1189
- </output>
1190
-
1191
- <action>WAIT for {user_name} decision</action>
1192
-
1193
- <action>Add stability work to preparation sprint if user agrees</action>
1194
- </check>
1195
-
1196
- <action>Explore unresolved blockers</action>
1197
-
1198
- <output>
1199
- Amelia (Developer): "{user_name}, are there any unresolved blockers or technical issues from Epic {{epic_number}} that we're carrying forward?"
1200
-
1201
- Dana (QA Engineer): "Things that might create problems for Epic {{next_epic_num}} if we don't deal with them?"
1202
-
1203
- Amelia (Developer): "Nothing is off limits here. If there's a problem, we need to know."
1204
- </output>
1205
-
1206
- <action>WAIT for {user_name} to surface any blockers</action>
1207
-
1208
- <check if="blockers identified">
1209
- <output>
1210
- Amelia (Developer): "Let's capture those blockers and figure out how they affect Epic {{next_epic_num}}."
1211
-
1212
- Charlie (Senior Dev): "For {{blocker_1}}, if we leave it unresolved, it'll {{impact_description_1}}."
1213
-
1214
- Alice (Product Owner): "That sounds critical. We need to address that before moving forward."
1215
-
1216
- Amelia (Developer): "Agreed. Adding to critical path: Resolve {{blocker_1}} before Epic {{next_epic_num}} kickoff."
1217
-
1218
- Amelia (Developer): "Who owns that work?"
1219
- </output>
1220
-
1221
- <action>Assign blocker resolution to appropriate agent</action>
1222
- <action>Add to critical path with priority and deadline</action>
1223
- </check>
1224
-
1225
- <action>Synthesize the readiness assessment</action>
1226
-
1227
- <output>
1228
- Amelia (Developer): "Okay {user_name}, let me synthesize what we just uncovered..."
1229
-
1230
- **EPIC {{epic_number}} READINESS ASSESSMENT:**
1231
-
1232
- Testing & Quality: {{quality_status}}
1233
- {{#if quality_concerns}}⚠️ Action needed: {{quality_action_needed}}{{/if}}
1234
-
1235
- Deployment: {{deployment_status}}
1236
- {{#if deployment_pending}}⚠️ Scheduled for: {{deployment_date}}{{/if}}
1237
-
1238
- Stakeholder Acceptance: {{acceptance_status}}
1239
- {{#if acceptance_incomplete}}⚠️ Action needed: {{acceptance_action_needed}}{{/if}}
1240
-
1241
- Technical Health: {{stability_status}}
1242
- {{#if stability_concerns}}⚠️ Action needed: {{stability_action_needed}}{{/if}}
1243
-
1244
- Unresolved Blockers: {{blocker_status}}
1245
- {{#if blockers_exist}}⚠️ Must resolve: {{blocker_list}}{{/if}}
1246
-
1247
- Amelia (Developer): "{user_name}, does this assessment match your understanding?"
1248
- </output>
1249
-
1250
- <action>WAIT for {user_name} to confirm or correct the assessment</action>
1251
-
1252
- <output>
1253
- Amelia (Developer): "Based on this assessment, Epic {{epic_number}} is {{#if all_clear}}fully complete and we're clear to proceed{{else}}complete from a story perspective, but we have {{critical_work_count}} critical items before Epic {{next_epic_num}}{{/if}}."
1254
-
1255
- Alice (Product Owner): "This level of thoroughness is why retrospectives are valuable."
1256
-
1257
- Charlie (Senior Dev): "Better to catch this now than three stories into the next epic."
1258
- </output>
1259
-
1260
- </step>
1261
-
1262
- <step n="10" goal="Retrospective Closure with Celebration and Commitment">
1263
-
1264
- <output>
1265
- Amelia (Developer): "We've covered a lot of ground today. Let me bring this retrospective to a close."
1266
-
1267
- ═══════════════════════════════════════════════════════════
1268
- ✅ RETROSPECTIVE COMPLETE
1269
- ═══════════════════════════════════════════════════════════
1270
-
1271
- Amelia (Developer): "Epic {{epic_number}}: {{epic_title}} - REVIEWED"
1272
-
1273
- **Key Takeaways:**
1274
-
1275
- 1. {{key_lesson_1}}
1276
- 2. {{key_lesson_2}}
1277
- 3. {{key_lesson_3}}
1278
- {{#if key_lesson_4}}4. {{key_lesson_4}}{{/if}}
1279
-
1280
- Alice (Product Owner): "That first takeaway is huge - {{impact_of_lesson_1}}."
1281
-
1282
- Charlie (Senior Dev): "And lesson 2 is something we can apply immediately."
1283
-
1284
- Amelia (Developer): "Commitments made today:"
1285
-
1286
- - Action Items: {{action_count}}
1287
- - Preparation Tasks: {{prep_task_count}}
1288
- - Critical Path Items: {{critical_count}}
1289
-
1290
- Dana (QA Engineer): "That's a lot of commitments. We need to actually follow through this time."
1291
-
1292
- Amelia (Developer): "Agreed. Which is why we'll review these action items in our next standup."
1293
-
1294
- ═══════════════════════════════════════════════════════════
1295
- 🎯 NEXT STEPS:
1296
- ═══════════════════════════════════════════════════════════
1297
-
1298
- 1. Execute Preparation Sprint (Est: {{prep_days}} days)
1299
- 2. Complete Critical Path items before Epic {{next_epic_num}}
1300
- 3. Review action items in next standup
1301
- {{#if epic_update_needed}}4. Hold Epic {{next_epic_num}} planning review session{{else}}4. Begin Epic {{next_epic_num}} planning when preparation complete{{/if}}
1302
-
1303
- Elena (Junior Dev): "{{prep_days}} days of prep work is significant, but necessary."
1304
-
1305
- Alice (Product Owner): "I'll communicate the timeline to stakeholders. They'll understand if we frame it as 'ensuring Epic {{next_epic_num}} success.'"
1306
-
1307
- ═══════════════════════════════════════════════════════════
1308
-
1309
- Amelia (Developer): "Before we wrap, I want to take a moment to acknowledge the team."
1310
-
1311
- Amelia (Developer): "Epic {{epic_number}} delivered {{completed_stories}} stories with {{velocity_description}} velocity. We overcame {{blocker_count}} blockers. We learned a lot. That's real work by real people."
1312
-
1313
- Charlie (Senior Dev): "Hear, hear."
1314
-
1315
- Alice (Product Owner): "I'm proud of what we shipped."
1316
-
1317
- Dana (QA Engineer): "And I'm excited about Epic {{next_epic_num}} - especially now that we're prepared for it."
1318
-
1319
- Amelia (Developer): "{user_name}, any final thoughts before we close?"
1320
- </output>
1321
-
1322
- <action>WAIT for {user_name} to share final reflections</action>
1323
-
1324
- <output>
1325
- Amelia (Developer): [Acknowledges what {user_name} shared] "Thank you for that, {user_name}."
1326
-
1327
- Amelia (Developer): "Alright team - great work today. We learned a lot from Epic {{epic_number}}. Let's use these insights to make Epic {{next_epic_num}} even better."
1328
-
1329
- Amelia (Developer): "See you all when prep work is done. Meeting adjourned!"
1330
-
1331
- ═══════════════════════════════════════════════════════════
1332
- </output>
1333
-
1334
- <action>Prepare to save retrospective summary document</action>
1335
-
1336
- </step>
1337
-
1338
- <step n="11" goal="Save Retrospective and Update Sprint Status">
1339
-
1340
- <action>Ensure retrospectives folder exists: {implementation_artifacts}</action>
1341
- <action>Create folder if it doesn't exist</action>
1342
-
1343
- <action>Generate comprehensive retrospective summary document including:</action>
1344
-
1345
- - Epic summary and metrics
1346
- - Team participants
1347
- - Successes and strengths identified
1348
- - Challenges and growth areas
1349
- - Key insights and learnings
1350
- - Previous retro follow-through analysis (if applicable)
1351
- - Next epic preview and dependencies
1352
- - Action items with owners and timelines
1353
- - Preparation tasks for next epic
1354
- - Critical path items
1355
- - Significant discoveries and epic update recommendations (if any)
1356
- - Readiness assessment
1357
- - Commitments and next steps
1358
-
1359
- <action>Format retrospective document as readable markdown with clear sections</action>
1360
- <action>Set filename: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md</action>
1361
- <action>Save retrospective document</action>
1362
-
1363
- <output>
1364
- ✅ Retrospective document saved: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md
1365
- </output>
1366
-
1367
- <action>Update {sprint_status_file} to mark retrospective as completed</action>
1368
-
1369
- <action>Load the FULL file: {sprint_status_file}</action>
1370
- <action>Find development_status key "epic-{{epic_number}}-retrospective"</action>
1371
- <action>Verify current status (typically "optional" or "pending")</action>
1372
- <action>Update development_status["epic-{{epic_number}}-retrospective"] = "done"</action>
1373
- <action>Update last_updated field to current date</action>
1374
- <action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
1375
-
1376
- <check if="update successful">
1377
- <output>
1378
- ✅ Retrospective marked as completed in {sprint_status_file}
1379
-
1380
- Retrospective key: epic-{{epic_number}}-retrospective
1381
- Status: {{previous_status}} → done
1382
- </output>
1383
- </check>
1384
-
1385
- <check if="retrospective key not found">
1386
- <output>
1387
- ⚠️ Could not update retrospective status: epic-{{epic_number}}-retrospective not found in {sprint_status_file}
1388
-
1389
- Retrospective document was saved successfully, but {sprint_status_file} may need manual update.
1390
- </output>
1391
- </check>
1392
-
1393
- </step>
1394
-
1395
- <step n="12" goal="Final Summary and Handoff">
1396
-
1397
- <output>
1398
- **✅ Retrospective Complete, {user_name}!**
1399
-
1400
- **Epic Review:**
1401
-
1402
- - Epic {{epic_number}}: {{epic_title}} reviewed
1403
- - Retrospective Status: completed
1404
- - Retrospective saved: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md
1405
-
1406
- **Commitments Made:**
1407
-
1408
- - Action Items: {{action_count}}
1409
- - Preparation Tasks: {{prep_task_count}}
1410
- - Critical Path Items: {{critical_count}}
1411
-
1412
- **Next Steps:**
1413
-
1414
- 1. **Review retrospective summary**: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md
1415
-
1416
- 2. **Execute preparation sprint** (Est: {{prep_days}} days)
1417
- - Complete {{critical_count}} critical path items
1418
- - Execute {{prep_task_count}} preparation tasks
1419
- - Verify all action items are in progress
1420
-
1421
- 3. **Review action items in next standup**
1422
- - Ensure ownership is clear
1423
- - Track progress on commitments
1424
- - Adjust timelines if needed
1425
-
1426
- {{#if epic_update_needed}} 4. **IMPORTANT: Schedule Epic {{next_epic_num}} planning review session**
1427
-
1428
- - Significant discoveries from Epic {{epic_number}} require epic updates
1429
- - Review and update affected stories
1430
- - Align team on revised approach
1431
- - Do NOT start Epic {{next_epic_num}} until review is complete
1432
- {{else}}
1433
-
1434
- 4. **Begin Epic {{next_epic_num}} when ready**
1435
- - Start creating stories with Developer agent's `create-story`
1436
- - Epic will be marked as `in-progress` automatically when first story is created
1437
- - Ensure all critical path items are done first
1438
- {{/if}}
1439
-
1440
- **Team Performance:**
1441
- Epic {{epic_number}} delivered {{completed_stories}} stories with {{velocity_summary}}. The retrospective surfaced {{insight_count}} key insights and {{significant_discovery_count}} significant discoveries. The team is well-positioned for Epic {{next_epic_num}} success.
1442
-
1443
- {{#if significant_discovery_count > 0}}
1444
- ⚠️ **REMINDER**: Epic update required before starting Epic {{next_epic_num}}
1445
- {{/if}}
1446
-
1447
- ---
1448
-
1449
- Amelia (Developer): "Great session today, {user_name}. The team did excellent work."
1450
-
1451
- Alice (Product Owner): "See you at epic planning!"
1452
-
1453
- Charlie (Senior Dev): "Time to knock out that prep work."
1454
-
1455
- </output>
1456
-
1457
- </step>
1458
-
1459
- </workflow>
1460
-
1461
- <facilitation-guidelines>
1462
- <guideline>PARTY MODE REQUIRED: All agent dialogue uses "Name (Role): dialogue" format</guideline>
1463
- <guideline>Amelia (Developer) maintains psychological safety throughout - no blame or judgment</guideline>
1464
- <guideline>Focus on systems and processes, not individual performance</guideline>
1465
- <guideline>Create authentic team dynamics: disagreements, diverse perspectives, emotions</guideline>
1466
- <guideline>User ({user_name}) is active participant, not passive observer</guideline>
1467
- <guideline>Encourage specific examples over general statements</guideline>
1468
- <guideline>Balance celebration of wins with honest assessment of challenges</guideline>
1469
- <guideline>Ensure every voice is heard - all agents contribute</guideline>
1470
- <guideline>Action items must be specific, achievable, and owned</guideline>
1471
- <guideline>Forward-looking mindset - how do we improve for next epic?</guideline>
1472
- <guideline>Intent-based facilitation, not scripted phrases</guideline>
1473
- <guideline>Deep story analysis provides rich material for discussion</guideline>
1474
- <guideline>Previous retro integration creates accountability and continuity</guideline>
1475
- <guideline>Significant change detection prevents epic misalignment</guideline>
1476
- <guideline>Critical verification prevents starting next epic prematurely</guideline>
1477
- <guideline>Document everything - retrospective insights are valuable for future reference</guideline>
1478
- <guideline>Two-part structure ensures both reflection AND preparation</guideline>
1479
- </facilitation-guidelines>