codegraph-voyage 0.1.0__tar.gz

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 (529) hide show
  1. codegraph_voyage-0.1.0/.agents/skills.json +7 -0
  2. codegraph_voyage-0.1.0/.claude/skills/bmad-advanced-elicitation/SKILL.md +65 -0
  3. codegraph_voyage-0.1.0/.claude/skills/bmad-advanced-elicitation/assets/methods.csv +72 -0
  4. codegraph_voyage-0.1.0/.claude/skills/bmad-advanced-elicitation/customize.toml +54 -0
  5. codegraph_voyage-0.1.0/.claude/skills/bmad-advanced-elicitation/scripts/pick_methods.py +233 -0
  6. codegraph_voyage-0.1.0/.claude/skills/bmad-advanced-elicitation/scripts/tests/test_pick_methods.py +228 -0
  7. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-analyst/SKILL.md +76 -0
  8. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-analyst/customize.toml +105 -0
  9. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-architect/SKILL.md +76 -0
  10. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-architect/customize.toml +65 -0
  11. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/SKILL.md +50 -0
  12. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/BOND-template.md +14 -0
  13. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/CAPABILITIES-template.md +32 -0
  14. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/CREED-template.md +56 -0
  15. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/INDEX-template.md +15 -0
  16. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/MEMORY-template.md +7 -0
  17. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/PERSONA-template.md +24 -0
  18. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/PULSE-template.md +38 -0
  19. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/SKILL-template-bootloader.md +84 -0
  20. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/SKILL-template.md +90 -0
  21. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/capability-authoring-template.md +104 -0
  22. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/customize-template.toml +63 -0
  23. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/first-breath-config-template.md +84 -0
  24. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/first-breath-template.md +119 -0
  25. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/init-sanctum-template.py +282 -0
  26. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/memory-guidance-template.md +93 -0
  27. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/prompt-quality-canon.md +79 -0
  28. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/report-shell.html +1073 -0
  29. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/sample-customize-analyst.toml +85 -0
  30. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/assets/wake-template.py +78 -0
  31. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/customize.toml +48 -0
  32. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/agent-quality-principles.md +63 -0
  33. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/agent-type-guidance.md +73 -0
  34. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/build-process.md +126 -0
  35. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/edit-guidance.md +90 -0
  36. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/first-breath-adaptation-guidance.md +116 -0
  37. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/lens-contract.md +28 -0
  38. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/mission-writing-guidance.md +81 -0
  39. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/prompt-quality-canon.md +79 -0
  40. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/quality-analysis.md +177 -0
  41. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/sample-capability-authoring.md +105 -0
  42. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/sample-capability-prompt.md +65 -0
  43. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/scan-agent-cohesion.md +39 -0
  44. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/scan-architecture.md +51 -0
  45. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/scan-customization.md +43 -0
  46. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/scan-determinism.md +50 -0
  47. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/scan-enhancement.md +31 -0
  48. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/scan-leanness.md +42 -0
  49. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/scan-sanctum-architecture.md +37 -0
  50. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/script-opportunities-reference.md +57 -0
  51. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/script-standards.md +91 -0
  52. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/standard-fields.md +170 -0
  53. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/standing-order-guidance.md +87 -0
  54. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/references/template-substitution-rules.md +51 -0
  55. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/scripts/count_tokens.py +78 -0
  56. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/scripts/prepass.py +258 -0
  57. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/scripts/process-template.py +210 -0
  58. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/scripts/render_report.py +388 -0
  59. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/scripts/scan-path-standards.py +329 -0
  60. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-builder/scripts/scan-scripts.py +747 -0
  61. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-dev/SKILL.md +76 -0
  62. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-dev/customize.toml +83 -0
  63. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-pm/SKILL.md +76 -0
  64. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-pm/customize.toml +75 -0
  65. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-ux-designer/SKILL.md +76 -0
  66. codegraph_voyage-0.1.0/.claude/skills/bmad-agent-ux-designer/customize.toml +60 -0
  67. codegraph_voyage-0.1.0/.claude/skills/bmad-architecture/SKILL.md +85 -0
  68. codegraph_voyage-0.1.0/.claude/skills/bmad-architecture/assets/spine-template.md +79 -0
  69. codegraph_voyage-0.1.0/.claude/skills/bmad-architecture/customize.toml +102 -0
  70. codegraph_voyage-0.1.0/.claude/skills/bmad-architecture/references/headless.md +26 -0
  71. codegraph_voyage-0.1.0/.claude/skills/bmad-architecture/references/reviewer-gate.md +13 -0
  72. codegraph_voyage-0.1.0/.claude/skills/bmad-architecture/scripts/lint_spine.py +257 -0
  73. codegraph_voyage-0.1.0/.claude/skills/bmad-architecture/scripts/tests/test_lint_spine.py +270 -0
  74. codegraph_voyage-0.1.0/.claude/skills/bmad-bmb-setup/SKILL.md +80 -0
  75. codegraph_voyage-0.1.0/.claude/skills/bmad-bmb-setup/assets/module-help.csv +10 -0
  76. codegraph_voyage-0.1.0/.claude/skills/bmad-bmb-setup/assets/module.yaml +20 -0
  77. codegraph_voyage-0.1.0/.claude/skills/bmad-bmb-setup/scripts/cleanup-legacy.py +287 -0
  78. codegraph_voyage-0.1.0/.claude/skills/bmad-bmb-setup/scripts/merge-config.py +441 -0
  79. codegraph_voyage-0.1.0/.claude/skills/bmad-bmb-setup/scripts/merge-help-csv.py +246 -0
  80. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/SKILL.md +80 -0
  81. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/assets/brain-icons.json +166 -0
  82. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/assets/brain-methods.csv +109 -0
  83. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/assets/brain-selector.html +328 -0
  84. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/customize.toml +84 -0
  85. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/converge.md +24 -0
  86. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/finalize.md +26 -0
  87. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/headless.md +54 -0
  88. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/in-chat-techniques.md +18 -0
  89. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/mode-autonomous.md +10 -0
  90. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/mode-facilitator.md +11 -0
  91. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/mode-partner.md +16 -0
  92. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/references/resume.md +5 -0
  93. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/scripts/brain.py +770 -0
  94. codegraph_voyage-0.1.0/.claude/skills/bmad-brainstorming/scripts/tests/test_brain.py +239 -0
  95. codegraph_voyage-0.1.0/.claude/skills/bmad-build/SKILL.md +13 -0
  96. codegraph_voyage-0.1.0/.claude/skills/bmad-build/compile-epic-context.md +62 -0
  97. codegraph_voyage-0.1.0/.claude/skills/bmad-build/customize.toml +164 -0
  98. codegraph_voyage-0.1.0/.claude/skills/bmad-build/references/deletion-check.md +14 -0
  99. codegraph_voyage-0.1.0/.claude/skills/bmad-build/review-prompts/edge-case-hunter.md +88 -0
  100. codegraph_voyage-0.1.0/.claude/skills/bmad-build/review-prompts/verification-gap.md +113 -0
  101. codegraph_voyage-0.1.0/.claude/skills/bmad-build/spec-template.md +89 -0
  102. codegraph_voyage-0.1.0/.claude/skills/bmad-build/step-01-clarify-and-route.md +105 -0
  103. codegraph_voyage-0.1.0/.claude/skills/bmad-build/step-02-plan.md +47 -0
  104. codegraph_voyage-0.1.0/.claude/skills/bmad-build/step-03-implement.md +49 -0
  105. codegraph_voyage-0.1.0/.claude/skills/bmad-build/step-04-review.md +55 -0
  106. codegraph_voyage-0.1.0/.claude/skills/bmad-build/step-05-present.md +75 -0
  107. codegraph_voyage-0.1.0/.claude/skills/bmad-build/step-oneshot.md +77 -0
  108. codegraph_voyage-0.1.0/.claude/skills/bmad-build/sync-sprint-status.md +19 -0
  109. codegraph_voyage-0.1.0/.claude/skills/bmad-build/workflow.md +84 -0
  110. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/SKILL.md +13 -0
  111. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/compile-epic-context.md +62 -0
  112. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/customize.toml +121 -0
  113. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/references/deletion-check.md +14 -0
  114. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/review-prompts/edge-case-hunter.md +88 -0
  115. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/review-prompts/verification-gap.md +113 -0
  116. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/spec-template.md +99 -0
  117. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/step-01-clarify-and-route.md +83 -0
  118. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/step-02-plan.md +27 -0
  119. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/step-03-implement.md +44 -0
  120. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/step-04-review.md +96 -0
  121. codegraph_voyage-0.1.0/.claude/skills/bmad-build-auto/workflow.md +104 -0
  122. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/SKILL.md +68 -0
  123. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/customize.toml +41 -0
  124. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/generate-trail.md +38 -0
  125. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/step-01-orientation.md +105 -0
  126. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/step-02-walkthrough.md +89 -0
  127. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/step-03-detail-pass.md +106 -0
  128. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/step-04-testing.md +74 -0
  129. codegraph_voyage-0.1.0/.claude/skills/bmad-checkpoint-preview/step-05-wrapup.md +30 -0
  130. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-brainstorming-coach/SKILL.md +72 -0
  131. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-brainstorming-coach/customize.toml +36 -0
  132. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-creative-problem-solver/SKILL.md +72 -0
  133. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-creative-problem-solver/customize.toml +36 -0
  134. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-design-thinking-coach/SKILL.md +72 -0
  135. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-design-thinking-coach/customize.toml +37 -0
  136. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-innovation-strategist/SKILL.md +72 -0
  137. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-innovation-strategist/customize.toml +36 -0
  138. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-presentation-master/SKILL.md +72 -0
  139. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-presentation-master/customize.toml +71 -0
  140. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-storyteller/SKILL.md +72 -0
  141. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-agent-storyteller/customize.toml +58 -0
  142. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-design-thinking/SKILL.md +274 -0
  143. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-design-thinking/customize.toml +39 -0
  144. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-design-thinking/design-methods.csv +31 -0
  145. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-design-thinking/template.md +111 -0
  146. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-innovation-strategy/SKILL.md +347 -0
  147. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-innovation-strategy/customize.toml +39 -0
  148. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-innovation-strategy/innovation-frameworks.csv +31 -0
  149. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-innovation-strategy/template.md +189 -0
  150. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-problem-solving/SKILL.md +325 -0
  151. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-problem-solving/customize.toml +40 -0
  152. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-problem-solving/solving-methods.csv +31 -0
  153. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-problem-solving/template.md +165 -0
  154. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-storytelling/SKILL.md +353 -0
  155. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-storytelling/customize.toml +39 -0
  156. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-storytelling/story-types.csv +26 -0
  157. codegraph_voyage-0.1.0/.claude/skills/bmad-cis-storytelling/template.md +113 -0
  158. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/SKILL.md +90 -0
  159. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/customize.toml +113 -0
  160. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/references/deletion-check.md +14 -0
  161. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/review-prompts/edge-case-hunter.md +88 -0
  162. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/review-prompts/verification-gap.md +113 -0
  163. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/steps/step-01-gather-context.md +87 -0
  164. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/steps/step-02-review.md +32 -0
  165. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/steps/step-03-triage.md +50 -0
  166. codegraph_voyage-0.1.0/.claude/skills/bmad-code-review/steps/step-04-present.md +132 -0
  167. codegraph_voyage-0.1.0/.claude/skills/bmad-correct-course/SKILL.md +300 -0
  168. codegraph_voyage-0.1.0/.claude/skills/bmad-correct-course/checklist.md +288 -0
  169. codegraph_voyage-0.1.0/.claude/skills/bmad-correct-course/customize.toml +41 -0
  170. codegraph_voyage-0.1.0/.claude/skills/bmad-create-architecture/SKILL.md +30 -0
  171. codegraph_voyage-0.1.0/.claude/skills/bmad-create-architecture/customize.toml +41 -0
  172. codegraph_voyage-0.1.0/.claude/skills/bmad-create-epics-and-stories/SKILL.md +93 -0
  173. codegraph_voyage-0.1.0/.claude/skills/bmad-create-epics-and-stories/customize.toml +41 -0
  174. codegraph_voyage-0.1.0/.claude/skills/bmad-create-epics-and-stories/steps/step-01-validate-prerequisites.md +263 -0
  175. codegraph_voyage-0.1.0/.claude/skills/bmad-create-epics-and-stories/steps/step-02-design-epics.md +242 -0
  176. codegraph_voyage-0.1.0/.claude/skills/bmad-create-epics-and-stories/steps/step-03-create-stories.md +255 -0
  177. codegraph_voyage-0.1.0/.claude/skills/bmad-create-epics-and-stories/steps/step-04-final-validation.md +143 -0
  178. codegraph_voyage-0.1.0/.claude/skills/bmad-create-epics-and-stories/templates/epics-template.md +61 -0
  179. codegraph_voyage-0.1.0/.claude/skills/bmad-create-prd/SKILL.md +30 -0
  180. codegraph_voyage-0.1.0/.claude/skills/bmad-create-prd/customize.toml +41 -0
  181. codegraph_voyage-0.1.0/.claude/skills/bmad-create-story/SKILL.md +434 -0
  182. codegraph_voyage-0.1.0/.claude/skills/bmad-create-story/checklist.md +357 -0
  183. codegraph_voyage-0.1.0/.claude/skills/bmad-create-story/customize.toml +41 -0
  184. codegraph_voyage-0.1.0/.claude/skills/bmad-create-story/discover-inputs.md +88 -0
  185. codegraph_voyage-0.1.0/.claude/skills/bmad-create-story/template.md +49 -0
  186. codegraph_voyage-0.1.0/.claude/skills/bmad-customize/SKILL.md +111 -0
  187. codegraph_voyage-0.1.0/.claude/skills/bmad-customize/scripts/list_customizable_skills.py +231 -0
  188. codegraph_voyage-0.1.0/.claude/skills/bmad-customize/scripts/tests/test_list_customizable_skills.py +249 -0
  189. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/SKILL.md +82 -0
  190. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/assets/research.template.md +18 -0
  191. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/customize.toml +212 -0
  192. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/draft.md +8 -0
  193. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/finalize.md +11 -0
  194. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/html-briefing.md +16 -0
  195. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/lifecycle.md +11 -0
  196. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/process.md +10 -0
  197. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/run.md +73 -0
  198. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/selection.md +13 -0
  199. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/synthesis.md +16 -0
  200. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/references/verification.md +29 -0
  201. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/scripts/recon_kit.py +322 -0
  202. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/scripts/tests/test_recon_kit.py +144 -0
  203. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/types/academic-lit.md +19 -0
  204. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/types/competitive.md +19 -0
  205. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/types/domain.md +19 -0
  206. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/types/market.md +19 -0
  207. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/types/technical.md +19 -0
  208. codegraph_voyage-0.1.0/.claude/skills/bmad-deep-recon/types/user-voice.md +19 -0
  209. codegraph_voyage-0.1.0/.claude/skills/bmad-dev-auto/SKILL.md +19 -0
  210. codegraph_voyage-0.1.0/.claude/skills/bmad-dev-story/SKILL.md +502 -0
  211. codegraph_voyage-0.1.0/.claude/skills/bmad-dev-story/checklist.md +80 -0
  212. codegraph_voyage-0.1.0/.claude/skills/bmad-dev-story/customize.toml +44 -0
  213. codegraph_voyage-0.1.0/.claude/skills/bmad-document-project/SKILL.md +14 -0
  214. codegraph_voyage-0.1.0/.claude/skills/bmad-domain-research/SKILL.md +14 -0
  215. codegraph_voyage-0.1.0/.claude/skills/bmad-edit-prd/SKILL.md +30 -0
  216. codegraph_voyage-0.1.0/.claude/skills/bmad-edit-prd/customize.toml +42 -0
  217. codegraph_voyage-0.1.0/.claude/skills/bmad-editorial-review/SKILL.md +6 -0
  218. codegraph_voyage-0.1.0/.claude/skills/bmad-editorial-review/customize.toml +31 -0
  219. codegraph_voyage-0.1.0/.claude/skills/bmad-editorial-review-prose/SKILL.md +6 -0
  220. codegraph_voyage-0.1.0/.claude/skills/bmad-editorial-review-structure/SKILL.md +6 -0
  221. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/SKILL.md +98 -0
  222. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/assets/adapter-claude-code.json +9 -0
  223. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/references/description-optimization.md +64 -0
  224. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/references/eval-format.md +91 -0
  225. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/references/grader.md +83 -0
  226. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/references/platform-adapter.md +61 -0
  227. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/references/self-improvement.md +55 -0
  228. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/scripts/aggregate_benchmark.py +236 -0
  229. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/scripts/memlog.py +197 -0
  230. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/scripts/run_evals.py +615 -0
  231. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/scripts/run_triggers.py +462 -0
  232. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/scripts/tests/test_env_isolation.py +79 -0
  233. codegraph_voyage-0.1.0/.claude/skills/bmad-eval-runner/scripts/tests/test_trigger_detection.py +123 -0
  234. codegraph_voyage-0.1.0/.claude/skills/bmad-forge-idea/SKILL.md +107 -0
  235. codegraph_voyage-0.1.0/.claude/skills/bmad-forge-idea/customize.toml +42 -0
  236. codegraph_voyage-0.1.0/.claude/skills/bmad-forge-idea/scripts/resolve_personas.py +275 -0
  237. codegraph_voyage-0.1.0/.claude/skills/bmad-forge-idea/scripts/tests/test_resolve_personas.py +138 -0
  238. codegraph_voyage-0.1.0/.claude/skills/bmad-generate-project-context/SKILL.md +10 -0
  239. codegraph_voyage-0.1.0/.claude/skills/bmad-help/SKILL.md +75 -0
  240. codegraph_voyage-0.1.0/.claude/skills/bmad-market-research/SKILL.md +14 -0
  241. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/SKILL.md +32 -0
  242. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/module-plan-template.md +128 -0
  243. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/setup-skill-template/SKILL.md +80 -0
  244. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/setup-skill-template/assets/module-help.csv +1 -0
  245. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/setup-skill-template/assets/module.yaml +6 -0
  246. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/setup-skill-template/scripts/cleanup-legacy.py +287 -0
  247. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/setup-skill-template/scripts/merge-config.py +441 -0
  248. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/setup-skill-template/scripts/merge-help-csv.py +246 -0
  249. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/standalone-module-template/merge-config.py +441 -0
  250. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/standalone-module-template/merge-help-csv.py +246 -0
  251. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/assets/standalone-module-template/module-setup.md +83 -0
  252. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/references/create-module.md +277 -0
  253. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/references/ideate-module.md +216 -0
  254. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/references/validate-module.md +86 -0
  255. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/scripts/scaffold-setup-skill.py +124 -0
  256. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/scripts/scaffold-standalone-module.py +191 -0
  257. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/scripts/tests/test-scaffold-setup-skill.py +230 -0
  258. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/scripts/tests/test-scaffold-standalone-module.py +266 -0
  259. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/scripts/tests/test-validate-module.py +465 -0
  260. codegraph_voyage-0.1.0/.claude/skills/bmad-module-builder/scripts/validate-module.py +348 -0
  261. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/SKILL.md +60 -0
  262. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/customize.toml +211 -0
  263. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/references/create-party.md +70 -0
  264. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/references/mode-agent-team.md +13 -0
  265. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/references/mode-auto.md +13 -0
  266. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/references/mode-subagent.md +31 -0
  267. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/references/party-memory.md +51 -0
  268. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/scripts/resolve_party.py +282 -0
  269. codegraph_voyage-0.1.0/.claude/skills/bmad-party-mode/scripts/tests/test_resolve_party.py +146 -0
  270. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/SKILL.md +94 -0
  271. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/assets/headless-schemas.md +76 -0
  272. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/assets/prd-template.md +165 -0
  273. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/assets/prd-validation-checklist.md +135 -0
  274. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/assets/validation-report-template.html +325 -0
  275. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/customize.toml +149 -0
  276. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/references/headless.md +39 -0
  277. codegraph_voyage-0.1.0/.claude/skills/bmad-prd/references/validate.md +97 -0
  278. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/SKILL.md +135 -0
  279. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/agents/artifact-analyzer.md +60 -0
  280. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/agents/web-researcher.md +49 -0
  281. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/assets/prfaq-template.md +62 -0
  282. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/bmad-manifest.json +16 -0
  283. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/customize.toml +41 -0
  284. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/references/customer-faq.md +55 -0
  285. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/references/internal-faq.md +51 -0
  286. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/references/press-release.md +60 -0
  287. codegraph_voyage-0.1.0/.claude/skills/bmad-prfaq/references/verdict.md +83 -0
  288. codegraph_voyage-0.1.0/.claude/skills/bmad-product-brief/SKILL.md +91 -0
  289. codegraph_voyage-0.1.0/.claude/skills/bmad-product-brief/assets/brief-template.md +41 -0
  290. codegraph_voyage-0.1.0/.claude/skills/bmad-product-brief/customize.toml +101 -0
  291. codegraph_voyage-0.1.0/.claude/skills/bmad-project-context/SKILL.md +110 -0
  292. codegraph_voyage-0.1.0/.claude/skills/bmad-project-context/customize.toml +24 -0
  293. codegraph_voyage-0.1.0/.claude/skills/bmad-project-context/references/best-practices.md +65 -0
  294. codegraph_voyage-0.1.0/.claude/skills/bmad-project-context/references/template.md +55 -0
  295. codegraph_voyage-0.1.0/.claude/skills/bmad-qa-generate-e2e-tests/SKILL.md +176 -0
  296. codegraph_voyage-0.1.0/.claude/skills/bmad-qa-generate-e2e-tests/checklist.md +33 -0
  297. codegraph_voyage-0.1.0/.claude/skills/bmad-qa-generate-e2e-tests/customize.toml +41 -0
  298. codegraph_voyage-0.1.0/.claude/skills/bmad-quick-dev/SKILL.md +19 -0
  299. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/SKILL.md +94 -0
  300. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/customize.toml +41 -0
  301. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/references/acceptance-verdict.md +55 -0
  302. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/references/aggregate-views.md +17 -0
  303. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/references/evidence-gathering.md +30 -0
  304. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/references/retro-document.md +84 -0
  305. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/references/team-discussion.md +22 -0
  306. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/scripts/git_evidence.py +304 -0
  307. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/scripts/sprint_status.py +746 -0
  308. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/scripts/tests/fixtures/sprint-status-template.yaml +71 -0
  309. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/scripts/tests/test_git_evidence.py +750 -0
  310. codegraph_voyage-0.1.0/.claude/skills/bmad-retrospective/scripts/tests/test_sprint_status.py +1579 -0
  311. codegraph_voyage-0.1.0/.claude/skills/bmad-review/SKILL.md +49 -0
  312. codegraph_voyage-0.1.0/.claude/skills/bmad-review/customize.toml +141 -0
  313. codegraph_voyage-0.1.0/.claude/skills/bmad-review/references/editorial-common.md +56 -0
  314. codegraph_voyage-0.1.0/.claude/skills/bmad-review/references/lens-adversarial.md +19 -0
  315. codegraph_voyage-0.1.0/.claude/skills/bmad-review/references/lens-edge-case-hunter.md +54 -0
  316. codegraph_voyage-0.1.0/.claude/skills/bmad-review/references/lens-prose.md +7 -0
  317. codegraph_voyage-0.1.0/.claude/skills/bmad-review/references/lens-structure.md +9 -0
  318. codegraph_voyage-0.1.0/.claude/skills/bmad-review/references/lens-verification-gap.md +92 -0
  319. codegraph_voyage-0.1.0/.claude/skills/bmad-review/references/structure-models.md +44 -0
  320. codegraph_voyage-0.1.0/.claude/skills/bmad-review/scripts/tests/test_word_metrics.py +62 -0
  321. codegraph_voyage-0.1.0/.claude/skills/bmad-review/scripts/word_metrics.py +102 -0
  322. codegraph_voyage-0.1.0/.claude/skills/bmad-review-adversarial-general/SKILL.md +6 -0
  323. codegraph_voyage-0.1.0/.claude/skills/bmad-review-edge-case-hunter/SKILL.md +6 -0
  324. codegraph_voyage-0.1.0/.claude/skills/bmad-review-verification-gap/SKILL.md +6 -0
  325. codegraph_voyage-0.1.0/.claude/skills/bmad-spec/SKILL.md +160 -0
  326. codegraph_voyage-0.1.0/.claude/skills/bmad-spec/assets/headless-schemas.md +33 -0
  327. codegraph_voyage-0.1.0/.claude/skills/bmad-spec/assets/spec-template.md +49 -0
  328. codegraph_voyage-0.1.0/.claude/skills/bmad-spec/assets/stories-schema.md +44 -0
  329. codegraph_voyage-0.1.0/.claude/skills/bmad-spec/customize.toml +52 -0
  330. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/SKILL.md +62 -0
  331. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/customize.toml +41 -0
  332. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/references/fix-sprint-status.md +30 -0
  333. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/references/generate-tracking.md +25 -0
  334. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/references/readiness-gate.md +20 -0
  335. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/references/status-view.md +14 -0
  336. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/references/validate.md +10 -0
  337. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/scripts/sprint_plan.py +697 -0
  338. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/scripts/tests/test_sprint_plan.py +524 -0
  339. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-planning/sprint-status-template.yaml +71 -0
  340. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-status/SKILL.md +26 -0
  341. codegraph_voyage-0.1.0/.claude/skills/bmad-sprint-status/customize.toml +41 -0
  342. codegraph_voyage-0.1.0/.claude/skills/bmad-technical-research/SKILL.md +14 -0
  343. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/SKILL.md +90 -0
  344. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/color-themes.md +9 -0
  345. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/design-directions.md +9 -0
  346. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/design-example-editorial.md +158 -0
  347. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/design-example-mobile.md +93 -0
  348. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/design-example-shadcn.md +109 -0
  349. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/excalidraw-wireframe.md +19 -0
  350. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/experience-example-mobile.md +112 -0
  351. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/experience-example-shadcn.md +133 -0
  352. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/headless-schemas.md +84 -0
  353. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/key-screens.md +29 -0
  354. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/assets/validation-report-template.html +319 -0
  355. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/customize.toml +102 -0
  356. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/references/creative-tools.md +19 -0
  357. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/references/design-md-spec.md +50 -0
  358. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/references/headless.md +37 -0
  359. codegraph_voyage-0.1.0/.claude/skills/bmad-ux/references/validate.md +115 -0
  360. codegraph_voyage-0.1.0/.claude/skills/bmad-validate-prd/SKILL.md +30 -0
  361. codegraph_voyage-0.1.0/.claude/skills/bmad-validate-prd/customize.toml +42 -0
  362. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/SKILL.md +42 -0
  363. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/assets/SKILL-template.md +58 -0
  364. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/assets/customize-template.toml +54 -0
  365. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/assets/report-shell.html +860 -0
  366. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/assets/sample-customize-product-brief.toml +66 -0
  367. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/customize.toml +59 -0
  368. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/build-process.md +80 -0
  369. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/complex-workflow-patterns.md +29 -0
  370. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/customize-toml-guide.md +119 -0
  371. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/lens-contract.md +28 -0
  372. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/producing-workflow-patterns.md +35 -0
  373. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/prompt-quality-canon.md +79 -0
  374. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/scan-architecture.md +29 -0
  375. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/scan-customization.md +33 -0
  376. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/scan-determinism.md +25 -0
  377. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/scan-enhancement.md +29 -0
  378. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/scan-leanness.md +36 -0
  379. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/scan-orchestration.md +132 -0
  380. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/script-opportunities-reference.md +57 -0
  381. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/script-standards.md +93 -0
  382. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/skill-quality-principles.md +106 -0
  383. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/standard-fields.md +120 -0
  384. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/references/working-state-patterns.md +63 -0
  385. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/count_tokens.py +77 -0
  386. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/init_skill.py +132 -0
  387. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/prepass-prompt-metrics.py +250 -0
  388. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/prepass-workflow-integrity.py +475 -0
  389. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/quick_validate.py +117 -0
  390. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/render_report.py +388 -0
  391. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/scan-path-standards.py +298 -0
  392. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/scan-scripts.py +745 -0
  393. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/tests/test_canon_sync.py +45 -0
  394. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/tests/test_count_tokens.py +180 -0
  395. codegraph_voyage-0.1.0/.claude/skills/bmad-workflow-builder/scripts/tests/test_render_report.py +171 -0
  396. codegraph_voyage-0.1.0/.copier-answers.yml +5 -0
  397. codegraph_voyage-0.1.0/.env.op +6 -0
  398. codegraph_voyage-0.1.0/.github/agents/bmad-agent-analyst.agent.md +5 -0
  399. codegraph_voyage-0.1.0/.github/agents/bmad-agent-architect.agent.md +5 -0
  400. codegraph_voyage-0.1.0/.github/agents/bmad-agent-builder.agent.md +5 -0
  401. codegraph_voyage-0.1.0/.github/agents/bmad-agent-dev.agent.md +5 -0
  402. codegraph_voyage-0.1.0/.github/agents/bmad-agent-pm.agent.md +5 -0
  403. codegraph_voyage-0.1.0/.github/agents/bmad-agent-ux-designer.agent.md +5 -0
  404. codegraph_voyage-0.1.0/.github/agents/bmad-cis-agent-brainstorming-coach.agent.md +5 -0
  405. codegraph_voyage-0.1.0/.github/agents/bmad-cis-agent-creative-problem-solver.agent.md +5 -0
  406. codegraph_voyage-0.1.0/.github/agents/bmad-cis-agent-design-thinking-coach.agent.md +5 -0
  407. codegraph_voyage-0.1.0/.github/agents/bmad-cis-agent-innovation-strategist.agent.md +5 -0
  408. codegraph_voyage-0.1.0/.github/agents/bmad-cis-agent-presentation-master.agent.md +5 -0
  409. codegraph_voyage-0.1.0/.github/agents/bmad-cis-agent-storyteller.agent.md +5 -0
  410. codegraph_voyage-0.1.0/.github/workflows/code-review.yml +48 -0
  411. codegraph_voyage-0.1.0/.gitignore +8 -0
  412. codegraph_voyage-0.1.0/.mise/scripts/codegraph.sh +74 -0
  413. codegraph_voyage-0.1.0/.mise/scripts/hindsight-setup.sh +62 -0
  414. codegraph_voyage-0.1.0/.mise/scripts/link-agentfiles.sh +42 -0
  415. codegraph_voyage-0.1.0/.mise/scripts/materialize-env.sh +28 -0
  416. codegraph_voyage-0.1.0/.mise/scripts/provision-packs.py +587 -0
  417. codegraph_voyage-0.1.0/.mise/scripts/sync-skills.py +2274 -0
  418. codegraph_voyage-0.1.0/.mise/scripts/versioning.sh +236 -0
  419. codegraph_voyage-0.1.0/.mise/version-files.conf +3 -0
  420. codegraph_voyage-0.1.0/.opencode/commands/bmad-advanced-elicitation.md +5 -0
  421. codegraph_voyage-0.1.0/.opencode/commands/bmad-agent-analyst.md +5 -0
  422. codegraph_voyage-0.1.0/.opencode/commands/bmad-agent-architect.md +5 -0
  423. codegraph_voyage-0.1.0/.opencode/commands/bmad-agent-builder.md +5 -0
  424. codegraph_voyage-0.1.0/.opencode/commands/bmad-agent-dev.md +5 -0
  425. codegraph_voyage-0.1.0/.opencode/commands/bmad-agent-pm.md +5 -0
  426. codegraph_voyage-0.1.0/.opencode/commands/bmad-agent-ux-designer.md +5 -0
  427. codegraph_voyage-0.1.0/.opencode/commands/bmad-architecture.md +5 -0
  428. codegraph_voyage-0.1.0/.opencode/commands/bmad-bmb-setup.md +5 -0
  429. codegraph_voyage-0.1.0/.opencode/commands/bmad-brainstorming.md +5 -0
  430. codegraph_voyage-0.1.0/.opencode/commands/bmad-build-auto.md +5 -0
  431. codegraph_voyage-0.1.0/.opencode/commands/bmad-build.md +5 -0
  432. codegraph_voyage-0.1.0/.opencode/commands/bmad-checkpoint-preview.md +5 -0
  433. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-agent-brainstorming-coach.md +5 -0
  434. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-agent-creative-problem-solver.md +5 -0
  435. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-agent-design-thinking-coach.md +5 -0
  436. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-agent-innovation-strategist.md +5 -0
  437. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-agent-presentation-master.md +5 -0
  438. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-agent-storyteller.md +5 -0
  439. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-design-thinking.md +5 -0
  440. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-innovation-strategy.md +5 -0
  441. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-problem-solving.md +5 -0
  442. codegraph_voyage-0.1.0/.opencode/commands/bmad-cis-storytelling.md +5 -0
  443. codegraph_voyage-0.1.0/.opencode/commands/bmad-code-review.md +5 -0
  444. codegraph_voyage-0.1.0/.opencode/commands/bmad-correct-course.md +5 -0
  445. codegraph_voyage-0.1.0/.opencode/commands/bmad-create-architecture.md +5 -0
  446. codegraph_voyage-0.1.0/.opencode/commands/bmad-create-epics-and-stories.md +5 -0
  447. codegraph_voyage-0.1.0/.opencode/commands/bmad-create-prd.md +5 -0
  448. codegraph_voyage-0.1.0/.opencode/commands/bmad-create-story.md +5 -0
  449. codegraph_voyage-0.1.0/.opencode/commands/bmad-customize.md +5 -0
  450. codegraph_voyage-0.1.0/.opencode/commands/bmad-deep-recon.md +5 -0
  451. codegraph_voyage-0.1.0/.opencode/commands/bmad-dev-auto.md +5 -0
  452. codegraph_voyage-0.1.0/.opencode/commands/bmad-dev-story.md +5 -0
  453. codegraph_voyage-0.1.0/.opencode/commands/bmad-document-project.md +5 -0
  454. codegraph_voyage-0.1.0/.opencode/commands/bmad-domain-research.md +5 -0
  455. codegraph_voyage-0.1.0/.opencode/commands/bmad-edit-prd.md +5 -0
  456. codegraph_voyage-0.1.0/.opencode/commands/bmad-editorial-review-prose.md +5 -0
  457. codegraph_voyage-0.1.0/.opencode/commands/bmad-editorial-review-structure.md +5 -0
  458. codegraph_voyage-0.1.0/.opencode/commands/bmad-editorial-review.md +5 -0
  459. codegraph_voyage-0.1.0/.opencode/commands/bmad-eval-runner.md +5 -0
  460. codegraph_voyage-0.1.0/.opencode/commands/bmad-forge-idea.md +5 -0
  461. codegraph_voyage-0.1.0/.opencode/commands/bmad-generate-project-context.md +5 -0
  462. codegraph_voyage-0.1.0/.opencode/commands/bmad-help.md +5 -0
  463. codegraph_voyage-0.1.0/.opencode/commands/bmad-market-research.md +5 -0
  464. codegraph_voyage-0.1.0/.opencode/commands/bmad-module-builder.md +5 -0
  465. codegraph_voyage-0.1.0/.opencode/commands/bmad-party-mode.md +5 -0
  466. codegraph_voyage-0.1.0/.opencode/commands/bmad-prd.md +5 -0
  467. codegraph_voyage-0.1.0/.opencode/commands/bmad-prfaq.md +5 -0
  468. codegraph_voyage-0.1.0/.opencode/commands/bmad-product-brief.md +5 -0
  469. codegraph_voyage-0.1.0/.opencode/commands/bmad-project-context.md +5 -0
  470. codegraph_voyage-0.1.0/.opencode/commands/bmad-qa-generate-e2e-tests.md +5 -0
  471. codegraph_voyage-0.1.0/.opencode/commands/bmad-quick-dev.md +5 -0
  472. codegraph_voyage-0.1.0/.opencode/commands/bmad-retrospective.md +5 -0
  473. codegraph_voyage-0.1.0/.opencode/commands/bmad-review-adversarial-general.md +5 -0
  474. codegraph_voyage-0.1.0/.opencode/commands/bmad-review-edge-case-hunter.md +5 -0
  475. codegraph_voyage-0.1.0/.opencode/commands/bmad-review-verification-gap.md +5 -0
  476. codegraph_voyage-0.1.0/.opencode/commands/bmad-review.md +5 -0
  477. codegraph_voyage-0.1.0/.opencode/commands/bmad-spec.md +5 -0
  478. codegraph_voyage-0.1.0/.opencode/commands/bmad-sprint-planning.md +5 -0
  479. codegraph_voyage-0.1.0/.opencode/commands/bmad-sprint-status.md +5 -0
  480. codegraph_voyage-0.1.0/.opencode/commands/bmad-technical-research.md +5 -0
  481. codegraph_voyage-0.1.0/.opencode/commands/bmad-ux.md +5 -0
  482. codegraph_voyage-0.1.0/.opencode/commands/bmad-validate-prd.md +5 -0
  483. codegraph_voyage-0.1.0/.opencode/commands/bmad-workflow-builder.md +5 -0
  484. codegraph_voyage-0.1.0/.project.json +27 -0
  485. codegraph_voyage-0.1.0/AGENTS.md +7 -0
  486. codegraph_voyage-0.1.0/CLAUDE.md +1 -0
  487. codegraph_voyage-0.1.0/GEMINI.md +1 -0
  488. codegraph_voyage-0.1.0/PKG-INFO +196 -0
  489. codegraph_voyage-0.1.0/README.md +185 -0
  490. codegraph_voyage-0.1.0/_bmad/_config/bmad-help.csv +44 -0
  491. codegraph_voyage-0.1.0/_bmad/_config/files-manifest.csv +420 -0
  492. codegraph_voyage-0.1.0/_bmad/_config/manifest.yaml +44 -0
  493. codegraph_voyage-0.1.0/_bmad/_config/skill-manifest.csv +65 -0
  494. codegraph_voyage-0.1.0/_bmad/bmb/config.yaml +14 -0
  495. codegraph_voyage-0.1.0/_bmad/bmb/module-help.csv +11 -0
  496. codegraph_voyage-0.1.0/_bmad/bmm/config.yaml +16 -0
  497. codegraph_voyage-0.1.0/_bmad/bmm/module-help.csv +19 -0
  498. codegraph_voyage-0.1.0/_bmad/bmm/v6-shims/README.md +28 -0
  499. codegraph_voyage-0.1.0/_bmad/cis/config.yaml +13 -0
  500. codegraph_voyage-0.1.0/_bmad/cis/module-help.csv +7 -0
  501. codegraph_voyage-0.1.0/_bmad/config.toml +116 -0
  502. codegraph_voyage-0.1.0/_bmad/config.user.toml +17 -0
  503. codegraph_voyage-0.1.0/_bmad/core/config.yaml +10 -0
  504. codegraph_voyage-0.1.0/_bmad/core/module-help.csv +10 -0
  505. codegraph_voyage-0.1.0/_bmad/core/v6-shims/README.md +25 -0
  506. codegraph_voyage-0.1.0/_bmad/custom/.gitignore +1 -0
  507. codegraph_voyage-0.1.0/_bmad/custom/config.toml +7 -0
  508. codegraph_voyage-0.1.0/_bmad/custom/config.user.toml +3 -0
  509. codegraph_voyage-0.1.0/_bmad/render/.gitignore +2 -0
  510. codegraph_voyage-0.1.0/_bmad/scripts/config_utils.py +119 -0
  511. codegraph_voyage-0.1.0/_bmad/scripts/memlog.py +224 -0
  512. codegraph_voyage-0.1.0/_bmad/scripts/render_skill.py +401 -0
  513. codegraph_voyage-0.1.0/_bmad/scripts/resolve_config.py +74 -0
  514. codegraph_voyage-0.1.0/_bmad/scripts/resolve_customization.py +99 -0
  515. codegraph_voyage-0.1.0/mise.toml +87 -0
  516. codegraph_voyage-0.1.0/pyproject.toml +22 -0
  517. codegraph_voyage-0.1.0/src/codegraph_voyage/__init__.py +8 -0
  518. codegraph_voyage-0.1.0/src/codegraph_voyage/__main__.py +5 -0
  519. codegraph_voyage-0.1.0/src/codegraph_voyage/cli.py +691 -0
  520. codegraph_voyage-0.1.0/src/codegraph_voyage/document.py +238 -0
  521. codegraph_voyage-0.1.0/src/codegraph_voyage/explore.py +148 -0
  522. codegraph_voyage-0.1.0/src/codegraph_voyage/mcp_server.py +78 -0
  523. codegraph_voyage-0.1.0/src/codegraph_voyage/providers.py +275 -0
  524. codegraph_voyage-0.1.0/src/codegraph_voyage/ranking.py +448 -0
  525. codegraph_voyage-0.1.0/src/codegraph_voyage/sanitize.py +116 -0
  526. codegraph_voyage-0.1.0/src/codegraph_voyage/sidecar.py +325 -0
  527. codegraph_voyage-0.1.0/src/codegraph_voyage/tests/__init__.py +1 -0
  528. codegraph_voyage-0.1.0/src/codegraph_voyage/tests/benchmark.py +278 -0
  529. codegraph_voyage-0.1.0/src/codegraph_voyage/tests/test_all.py +1114 -0
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/delorenj/skillex/main/skills.schema.json",
3
+ "inherit_global": true,
4
+ "registry": "https://github.com/delorenj/skillex.git",
5
+ "packs": [],
6
+ "skills": []
7
+ }
@@ -0,0 +1,65 @@
1
+ ---
2
+ name: bmad-advanced-elicitation
3
+ description: 'Push the LLM to reconsider, refine, and improve its recent output. Use when user asks for deeper critique or mentions a known deeper critique method, e.g. socratic, first principles, pre-mortem, red team.'
4
+ ---
5
+
6
+ # Advanced Elicitation
7
+
8
+ You are BMad's shared refinement checkpoint: other skills invoke you at natural pauses to pressure the piece of work they just produced, and users call you directly on anything recent. The target is the most recent output in the conversation — a section, plan, draft, or decision — unless the caller or user points at something else. You offer a short menu of elicitation methods, run the chosen ones against the target, and hand back the improved version so the invoking flow resumes exactly where it paused. Work in the surrounding session's communication language.
9
+
10
+ ## Conventions
11
+
12
+ - Bare paths (e.g. `assets/methods.csv`) resolve from `{skill-root}` (where `customize.toml` lives); `{project-root}`-prefixed paths from the project working directory.
13
+ - `{workflow.<name>}` resolves to fields in the merged `customize.toml` `[workflow]` table.
14
+
15
+ ## On Activation
16
+
17
+ 1. Resolve customization: `uv run {project-root}/_bmad/scripts/resolve_customization.py --skill {skill-root} --key workflow`. On failure, read `{skill-root}/customize.toml` directly and use defaults.
18
+ 2. Hold every `{workflow.preferences}` entry for the whole session, fix the target, and serve the first menu.
19
+
20
+ ## Serving the Catalog
21
+
22
+ `scripts/pick_methods.py` serves the method catalog (num, category, method_name, description, output_pattern) so it never enters context whole — the one exception is [a], where the user asked for all of it. Invoke as:
23
+
24
+ ```bash
25
+ uv run {skill-root}/scripts/pick_methods.py --file {workflow.methods_file} <command>
26
+ ```
27
+
28
+ If `{workflow.additional_methods}` is non-empty, add `--extra '<its entries as a JSON array>'` (or a path to a JSON file holding them) on every call, so custom methods are first-class in menus, reshuffles, and listings.
29
+
30
+ - `categories` — category names + counts, the cheap map.
31
+ - `list --category <cat> [--category <cat>]` — the index for chosen categories; `--all` dumps the whole catalog, only for [a].
32
+ - `show <name-or-num> [...]` — full rows by name or num.
33
+ - `random -n 5 --spread [--exclude <name>]...` — a category-diverse random draw.
34
+
35
+ **First menu:** run `categories`, pick the 2–4 categories that fit the target (risk before a launch, technical for code, collaboration when stakeholders compete, creative when the content is flat), `list` them, and hand-pick five methods that attack the target from different angles — honoring `{workflow.preferences}`. **Reshuffle:** `random -n 5 --spread`, excluding everything already offered.
36
+
37
+ ## The Menu
38
+
39
+ ```
40
+ **Advanced Elicitation Options**
41
+ Choose a number (1-5), [r] to Reshuffle, [a] List All, or [x] to Proceed:
42
+
43
+ 1. [Method Name]
44
+ 2. [Method Name]
45
+ 3. [Method Name]
46
+ 4. [Method Name]
47
+ 5. [Method Name]
48
+ r. Reshuffle the list with 5 new options
49
+ a. List all methods with descriptions
50
+ x. Proceed / No Further Actions
51
+ ```
52
+
53
+ This menu is the interface other skills and their users rely on — keep its options and behavior stable. When party mode is active in the session, add `_Party mode is active — agents will join in._` under the heading. Handle the response:
54
+
55
+ - **1–5** — run that method (several numbers: in sequence), then re-present the menu.
56
+ - **r** — reshuffle as above and re-present.
57
+ - **a** — show the full catalog (`list --all`) as a compact table; a pick by name or number runs like a numbered choice.
58
+ - **x** — done. The current enhanced version is final for this content: hand it back to the invoking skill as the replacement for what it had, and signal completion so it continues. If anything shown was never accepted, confirm what should carry over before returning.
59
+ - **Anything else** — treat as direction: apply it to the target and re-present the menu.
60
+
61
+ ## Running a Method
62
+
63
+ Use the method's description as its intent and its output_pattern as a flexible flow guide; scale depth to the target — a paragraph gets a light pass, an architecture decision gets the full treatment. Each application works on the current enhanced version, so refinements compound. Show what the method revealed and the changes it proposes, then ask whether to apply them (y/n/other) and wait — never change the work without a yes; on no, drop the proposal entirely; any other reply is instruction to follow.
64
+
65
+ When a method casts personas (round tables, panels, debates), reuse party members already in the session if party mode is active; otherwise resolve installed agents on demand via `uv run {project-root}/_bmad/scripts/resolve_config.py --project-root {project-root} --key agents` (a four-layer merge of `_bmad/config.toml`, `config.user.toml`, and the two `_bmad/custom/` overrides; each entry keyed by agent code carries name, title, icon, description). If neither yields a fit, invent named viewpoints suited to the content.
@@ -0,0 +1,72 @@
1
+ num,category,method_name,description,output_pattern
2
+ 1,advanced,Tree of Thoughts,Explore multiple reasoning paths simultaneously then evaluate and select the best - perfect for complex problems with multiple valid approaches,paths → evaluation → selection
3
+ 2,advanced,Graph of Thoughts,Model reasoning as an interconnected network of ideas to reveal hidden relationships - ideal for systems thinking and discovering emergent patterns,nodes → connections → patterns
4
+ 3,advanced,Thread of Thought,Maintain coherent reasoning across long contexts by weaving a continuous narrative thread - essential for RAG systems and maintaining consistency,context → thread → synthesis
5
+ 4,advanced,Self-Consistency Validation,Generate multiple independent approaches then compare for consistency - crucial for high-stakes decisions where verification matters,approaches → comparison → consensus
6
+ 5,advanced,Meta-Prompting Analysis,Step back to analyze the approach structure and methodology itself - valuable for optimizing prompts and improving problem-solving,current → analysis → optimization
7
+ 6,advanced,Reasoning via Planning,Build a reasoning tree guided by world models and goal states - excellent for strategic planning and sequential decision-making,model → planning → strategy
8
+ 7,advanced,Chain-of-Thought Scaffolding,Force explicit intermediate reasoning steps before any conclusion — prevents intuitive leaps that skip flawed logic,premise → step → step → conclusion
9
+ 8,advanced,Few-Shot Exemplar Priming,Provide 2-3 worked examples of the desired reasoning pattern before the real task — aligns output format and depth through demonstration,examples → pattern recognition → application
10
+ 9,collaboration,Stakeholder Round Table,Convene multiple personas to contribute diverse perspectives - essential for requirements gathering and finding balanced solutions across competing interests,perspectives → synthesis → alignment
11
+ 10,collaboration,Expert Panel Review,Assemble domain experts for deep specialized analysis - ideal when technical depth and peer review quality are needed,expert views → consensus → recommendations
12
+ 11,collaboration,Debate Club Showdown,Two personas argue opposing positions while a moderator scores points - great for exploring controversial decisions and finding middle ground,thesis → antithesis → synthesis
13
+ 12,collaboration,User Persona Focus Group,Gather your product's user personas to react to proposals and share frustrations - essential for validating features and discovering unmet needs,reactions → concerns → priorities
14
+ 13,collaboration,Time Traveler Council,Past-you and future-you advise present-you on decisions - powerful for gaining perspective on long-term consequences vs short-term pressures,past wisdom → present choice → future impact
15
+ 14,collaboration,Cross-Functional War Room,Product manager + engineer + designer tackle a problem together - reveals trade-offs between feasibility desirability and viability,constraints → trade-offs → balanced solution
16
+ 15,collaboration,Mentor and Apprentice,Senior expert teaches junior while junior asks naive questions - surfaces hidden assumptions through teaching,explanation → questions → deeper understanding
17
+ 16,collaboration,Good Cop Bad Cop,Supportive persona and critical persona alternate - finds both strengths to build on and weaknesses to address,encouragement → criticism → balanced view
18
+ 17,collaboration,Improv Yes-And,Multiple personas build on each other's ideas without blocking - generates unexpected creative directions through collaborative building,idea → build → build → surprising result
19
+ 18,collaboration,Customer Support Theater,Angry customer and support rep roleplay to find pain points - reveals real user frustrations and service gaps,complaint → investigation → resolution → prevention
20
+ 19,collaboration,Six Thinking Hats,Rotate through six modes (facts - feelings - caution - optimism - creativity - process) to ensure a group covers every angle without crosstalk,white → red → black → yellow → green → blue
21
+ 20,collaboration,Delphi Method,Experts give independent estimates - see anonymized results - then revise — converges on calibrated group judgment while avoiding anchoring bias,independent estimates → reveal → revise → converge
22
+ 21,competitive,Red Team vs Blue Team,Adversarial attack-defend analysis to find vulnerabilities - critical for security testing and building robust solutions,defense → attack → hardening
23
+ 22,competitive,Shark Tank Pitch,Entrepreneur pitches to skeptical investors who poke holes - stress-tests business viability and forces clarity on value proposition,pitch → challenges → refinement
24
+ 23,competitive,Code Review Gauntlet,Senior devs with different philosophies review the same code - surfaces style debates and finds consensus on best practices,reviews → debates → standards
25
+ 24,core,First Principles Analysis,Strip away assumptions to rebuild from fundamental truths - breakthrough technique for innovation and solving impossible problems,assumptions → truths → new approach
26
+ 25,core,5 Whys Deep Dive,Repeatedly ask why to drill down to root causes - simple but powerful for understanding failures,why chain → root cause → solution
27
+ 26,core,Socratic Questioning,Use targeted questions to reveal hidden assumptions and guide discovery - excellent for teaching and self-discovery,questions → revelations → understanding
28
+ 27,core,Critique and Refine,Systematic review to identify strengths and weaknesses then improve - standard quality check for drafts,strengths/weaknesses → improvements → refined
29
+ 28,core,Explain Reasoning,Walk through step-by-step thinking to show how conclusions were reached - crucial for transparency,steps → logic → conclusion
30
+ 29,core,Expand or Contract for Audience,Dynamically adjust detail level and technical depth for target audience - matches content to reader capabilities,audience → adjustments → refined content
31
+ 30,core,Second-Order Thinking,Think beyond immediate consequences to anticipate cascading effects and long-term implications - essential for strategic decisions where first-order solutions create hidden downstream problems,action → consequences → second-order effects → informed choice
32
+ 31,core,Inversion Analysis,Flip the problem by asking what would guarantee failure instead of how to succeed - reveals hidden obstacles and blind spots by approaching challenges from the opposite direction,goal → invert → failure paths → avoidance → solution
33
+ 32,core,Problem Decomposition,Break a complex problem into independent sub-problems - solve each - then reassemble — essential when a task is too large or tangled to tackle whole,whole → parts → solutions → reassembly
34
+ 33,core,Analogy Mapping,Find a well-understood parallel domain and transfer its structure to the current problem — unlocks insight by borrowing proven mental models,source domain → mapping → target insight
35
+ 34,core,Steelmanning,Construct the strongest possible version of an opposing argument before responding — builds credibility and catches blind spots that strawmanning misses,opposing view → strongest form → honest rebuttal
36
+ 35,creative,SCAMPER Method,Apply seven creativity lenses (Substitute/Combine/Adapt/Modify/Put/Eliminate/Reverse) - systematic ideation for product innovation,S→C→A→M→P→E→R
37
+ 36,creative,Reverse Engineering,Work backwards from desired outcome to find implementation path - powerful for goal achievement and understanding endpoints,end state → steps backward → path forward
38
+ 37,creative,What If Scenarios,Explore alternative realities to understand possibilities and implications - valuable for contingency planning and exploration,scenarios → implications → insights
39
+ 38,creative,Random Input Stimulus,Inject unrelated concepts to spark unexpected connections - breaks creative blocks through forced lateral thinking,random word → associations → novel ideas
40
+ 39,creative,Exquisite Corpse Brainstorm,Each persona adds to the idea seeing only the previous contribution - generates surprising combinations through constrained collaboration,contribution → handoff → contribution → surprise
41
+ 40,creative,Genre Mashup,Combine two unrelated domains to find fresh approaches - innovation through unexpected cross-pollination,domain A + domain B → hybrid insights
42
+ 41,creative,Constraint Injection,Deliberately add an artificial limitation (budget - time - technology) to force novel solutions — creativity thrives under pressure,add constraint → forced creativity → remove constraint → evaluate
43
+ 42,creative,Morphological Analysis,List independent parameters of a problem - enumerate options for each - then systematically combine — ensures you don't miss non-obvious configurations,parameters → options grid → combinations → evaluation
44
+ 43,creative,Subtraction,Improve by deliberately removing elements instead of adding them - counters the well-documented additive bias where people overlook subtractive changes that would simplify and strengthen the work,current state → what to remove → simplified result
45
+ 44,framing,Abstraction Laddering,"Move up (""why?"") for strategic clarity or down (""how?"") for tactical detail — ensures you're solving at the right altitude",concrete ↔ abstract → right level
46
+ 45,framing,Reframe the Question,Challenge whether the stated problem is the real problem — often the question itself is wrong and a better framing unlocks an easy answer,stated problem → reframe → true problem → solution
47
+ 46,framing,Stakeholder Lens Rotation,Serially adopt each stakeholder's world-view to see the same situation differently — reveals whose needs are being overlooked,perspective A → B → C → gaps found
48
+ 47,framing,Map Is Not the Territory,Treat any model or diagram as a lossy abstraction of reality - check where the representation diverges from the real system before trusting it,model → reality check → divergences found → corrected understanding
49
+ 48,learning,Feynman Technique,Explain complex concepts simply as if teaching a child - the ultimate test of true understanding,complex → simple → gaps → mastery
50
+ 49,learning,Active Recall Testing,Test understanding without references to verify true knowledge - essential for identifying gaps,test → gaps → reinforcement
51
+ 50,learning,Deliberate Practice Loop,Identify a specific sub-skill - drill it with immediate feedback - adjust - repeat — targeted improvement beats general repetition,isolate → drill → feedback → adjust → repeat
52
+ 51,philosophical,Occam's Razor Application,Find the simplest sufficient explanation by eliminating unnecessary complexity - essential for debugging,options → simplification → selection
53
+ 52,philosophical,Trolley Problem Variations,Explore ethical trade-offs through moral dilemmas - valuable for understanding values and difficult decisions,dilemma → analysis → decision
54
+ 53,research,Literature Review Personas,Optimist researcher + skeptic researcher + synthesizer review sources - balanced assessment of evidence quality,sources → critiques → synthesis
55
+ 54,research,Thesis Defense Simulation,Student defends hypothesis against committee with different concerns - stress-tests research methodology and conclusions,thesis → challenges → defense → refinements
56
+ 55,research,Comparative Analysis Matrix,Multiple analysts evaluate options against weighted criteria - structured decision-making with explicit scoring,options → criteria → scores → recommendation
57
+ 56,research,Source Triangulation,Require at least three independent source types (quantitative - qualitative - expert) before accepting a claim — guards against single-source bias,claim → source A → source B → source C → confidence rating
58
+ 57,retrospective,Hindsight Reflection,Imagine looking back from the future to gain perspective - powerful for project reviews,future view → insights → application
59
+ 58,retrospective,Lessons Learned Extraction,Systematically identify key takeaways and actionable improvements - essential for continuous improvement,experience → lessons → actions
60
+ 59,risk,Pre-mortem Analysis,Imagine future failure then work backwards to prevent it - powerful technique for risk mitigation before major launches,failure scenario → causes → prevention
61
+ 60,risk,Failure Mode Analysis,Systematically explore how each component could fail - critical for reliability engineering and safety-critical systems,components → failures → prevention
62
+ 61,risk,Challenge from Critical Perspective,Play devil's advocate to stress-test ideas and find weaknesses - essential for overcoming groupthink,assumptions → challenges → strengthening
63
+ 62,risk,Identify Potential Risks,Brainstorm what could go wrong across all categories - fundamental for project planning and deployment preparation,categories → risks → mitigations
64
+ 63,risk,Chaos Monkey Scenarios,Deliberately break things to test resilience and recovery - ensures systems handle failures gracefully,break → observe → harden
65
+ 64,risk,Assumption Audit,Explicitly list every assumption underlying a plan - rate each by confidence and impact - then stress-test the weakest — prevents building on shaky foundations,list → rate → stress-test → shore up
66
+ 65,risk,Cascading Failure Simulation,Trace how one component's failure propagates through dependencies — reveals hidden coupling and single points of failure,trigger failure → trace propagation → find amplifiers → decouple
67
+ 66,technical,Architecture Decision Records,Multiple architect personas propose and debate architectural choices with explicit trade-offs - ensures decisions are well-reasoned and documented,options → trade-offs → decision → rationale
68
+ 67,technical,Rubber Duck Debugging Evolved,Explain your code to progressively more technical ducks until you find the bug - forces clarity at multiple abstraction levels,simple → detailed → technical → aha
69
+ 68,technical,Algorithm Olympics,Multiple approaches compete on the same problem with benchmarks - finds optimal solution through direct comparison,implementations → benchmarks → winner
70
+ 69,technical,Security Audit Personas,Hacker + defender + auditor examine system from different threat models - comprehensive security review from multiple angles,vulnerabilities → defenses → compliance
71
+ 70,technical,Performance Profiler Panel,Database expert + frontend specialist + DevOps engineer diagnose slowness - finds bottlenecks across the full stack,symptoms → analysis → optimizations
72
+ 71,technical,Boundary & Edge Case Sweep,Systematically test extremes - zeros - nulls - maximums - and type mismatches — catches the failures that happy-path thinking always misses,inputs → boundaries → edge cases → failures found
@@ -0,0 +1,54 @@
1
+ # DO NOT EDIT -- overwritten on every update.
2
+ #
3
+ # Workflow customization surface for bmad-advanced-elicitation.
4
+ #
5
+ # Override files (not edited here):
6
+ # {project-root}/_bmad/custom/bmad-advanced-elicitation.toml (team)
7
+ # {project-root}/_bmad/custom/bmad-advanced-elicitation.user.toml (personal)
8
+
9
+ [workflow]
10
+
11
+ # --- Configurable below. Overrides merge per BMad structural rules: ---
12
+ # scalars: override wins • plain arrays: append
13
+ # arrays of tables keyed by `code`: matching key replaces, new keys append
14
+
15
+ # The elicitation method catalog served by scripts/pick_methods.py
16
+ # (columns: num,category,method_name,description,output_pattern). Swap the path
17
+ # in team/user TOML to ship a different catalog. Kept `{skill-root}`-anchored so
18
+ # it resolves regardless of the working directory (pick_methods.py is always
19
+ # invoked with `--file {workflow.methods_file}`).
20
+ methods_file = "{skill-root}/assets/methods.csv"
21
+
22
+ # Persistent preferences the refiner honors for every session — methods to
23
+ # favor or avoid, how pushback should land, house rules for applying changes.
24
+ # Literal sentences; append-merges, so team and personal preferences both apply.
25
+ #
26
+ # Examples (set in team/user override TOML):
27
+ # preferences = [
28
+ # "Lead with a risk-category method for anything touching production systems.",
29
+ # "Never offer roleplay or persona methods.",
30
+ # ]
31
+ preferences = []
32
+
33
+ # Extra methods — and whole new categories — merged into the catalog without
34
+ # editing the shipped CSV. Passed to pick_methods.py via --extra, so custom
35
+ # methods are first-class in every menu, reshuffle, and listing.
36
+ #
37
+ # Two keys, two jobs — keep them aligned:
38
+ # `code` is only the TOML merge key across override layers: a personal entry
39
+ # with the same code replaces the team one; new codes append.
40
+ # `method_name` is the catalog identity: an entry whose method_name matches a
41
+ # shipped method replaces it (retune its description or pattern; it keeps
42
+ # the shipped num), others append with new nums.
43
+ # To override another layer's entry, reuse its `code`. Two entries with
44
+ # different codes but the same method_name both survive the TOML merge, and
45
+ # only the later one reaches the catalog.
46
+ #
47
+ # Example (set in team/user override TOML):
48
+ # [[workflow.additional_methods]]
49
+ # code = "regulatory-inversion"
50
+ # category = "domain-specific"
51
+ # method_name = "Regulatory Inversion"
52
+ # description = "Start from the compliance constraint and ask what becomes possible only because of it - turns the rule into a generative frame"
53
+ # output_pattern = "constraint → possibilities → design"
54
+ additional_methods = []
@@ -0,0 +1,233 @@
1
+ #!/usr/bin/env python3
2
+ # /// script
3
+ # requires-python = ">=3.10"
4
+ # ///
5
+ """Serve the elicitation method catalog without loading it all into context.
6
+
7
+ The catalog is a CSV (num, category, method_name, description, output_pattern).
8
+ `description` is a one-line gist — enough to run the method; `output_pattern` is
9
+ a flexible flow guide (e.g. "assumptions → truths → new approach").
10
+
11
+ Commands:
12
+ categories list category names + counts (the cheap entry point)
13
+ list --category C [...] the index (num/category/name/gist) for those categories
14
+ list --all the whole catalog at once — deliberate; large, avoid interactively
15
+ show NAME_OR_NUM [...] full row for each method, matched by name or num
16
+ random [-n N] [--category C ...] [--exclude NAME ...] [--spread]
17
+ draw N at random; --spread forces category diversity
18
+ (at most one per category until categories run out) —
19
+ the reshuffle draw; --exclude skips already-shown methods
20
+
21
+ `list` refuses to run with neither --category nor --all: dumping the full catalog
22
+ into context must always be an explicit, deliberate choice.
23
+
24
+ `--extra SPEC` merges additional methods (customize.toml's `additional_methods`)
25
+ into every command. SPEC is either a JSON array literal (starts with `[`) or a
26
+ path to a JSON file; each item is {code, category, method_name, description,
27
+ output_pattern}. An extra whose method_name matches a catalog row
28
+ (case-insensitive) REPLACES it and keeps that row's num — retune a shipped
29
+ method; others append and get the next free nums, so new methods and whole new
30
+ categories are first-class and number-addressable everywhere.
31
+
32
+ Default output is lean tab-separated text for an LLM to read; --json for structured.
33
+ """
34
+ import argparse
35
+ import csv
36
+ import json
37
+ import random
38
+ import sys
39
+ from pathlib import Path
40
+
41
+ DEFAULT_FILE = Path(__file__).resolve().parent.parent / "assets" / "methods.csv"
42
+ FIELDS = ("num", "category", "method_name", "description", "output_pattern")
43
+
44
+
45
+ def load(file: Path) -> list[dict]:
46
+ # utf-8-sig: tolerate BOM-prefixed catalogs (Excel "CSV UTF-8", Notepad)
47
+ with open(file, newline="", encoding="utf-8-sig") as f:
48
+ rows = list(csv.DictReader(f))
49
+ for r in rows:
50
+ for k in FIELDS:
51
+ r.setdefault(k, "")
52
+ r[k] = (r.get(k) or "").strip()
53
+ return rows
54
+
55
+
56
+ def load_extra(spec: str) -> list[dict]:
57
+ """Parse the --extra overlay: a JSON array literal or a path to a JSON file."""
58
+ text = spec if spec.lstrip().startswith("[") else Path(spec).read_text(encoding="utf-8-sig")
59
+ data = json.loads(text)
60
+ if not isinstance(data, list):
61
+ raise ValueError("--extra must be a JSON array of objects")
62
+ rows = []
63
+ for item in data:
64
+ if not isinstance(item, dict):
65
+ raise ValueError(f"each --extra entry must be a JSON object, got: {item!r}")
66
+ row = {k: str(item.get(k) or "").strip() for k in FIELDS}
67
+ row["code"] = str(item.get("code") or "").strip() # kept for traceability
68
+ rows.append(row)
69
+ return rows
70
+
71
+
72
+ def merge_extra(rows: list[dict], extras: list[dict]) -> list[dict]:
73
+ """Extras replace a catalog row with the same method_name (case-insensitive),
74
+ otherwise append — so overrides can retune shipped methods or grow the catalog.
75
+ A replacement inherits the shipped row's num; appended extras get the next
76
+ free nums, so every merged method stays addressable by number."""
77
+ merged = list(rows)
78
+ index = {r["method_name"].lower(): i for i, r in enumerate(merged)}
79
+ for e in extras:
80
+ key = e["method_name"].lower()
81
+ if key in index:
82
+ e = dict(e)
83
+ e["num"] = e["num"] or merged[index[key]]["num"]
84
+ merged[index[key]] = e
85
+ else:
86
+ index[key] = len(merged)
87
+ merged.append(dict(e))
88
+ next_num = max((int(r["num"]) for r in merged if r["num"].isdigit()), default=0) + 1
89
+ for r in merged:
90
+ if not r["num"]:
91
+ r["num"] = str(next_num)
92
+ next_num += 1
93
+ return merged
94
+
95
+
96
+ def categories(rows: list[dict]) -> list[tuple[str, int]]:
97
+ counts: dict[str, int] = {}
98
+ for r in rows:
99
+ counts[r["category"]] = counts.get(r["category"], 0) + 1
100
+ return sorted(counts.items())
101
+
102
+
103
+ def filter_cats(rows: list[dict], cats: list[str] | None) -> list[dict]:
104
+ if not cats:
105
+ return rows
106
+ wanted = {c.lower() for c in cats}
107
+ return [r for r in rows if r["category"].lower() in wanted]
108
+
109
+
110
+ def find(rows: list[dict], names: list[str]) -> tuple[list[dict], list[str]]:
111
+ """Match each query by method_name or by num, case-insensitively."""
112
+ by_key: dict[str, dict] = {}
113
+ for r in rows:
114
+ by_key[r["method_name"].lower()] = r
115
+ if r["num"]:
116
+ by_key.setdefault(r["num"], r)
117
+ found, missing = [], []
118
+ for n in names:
119
+ r = by_key.get(n.strip().lower())
120
+ (found if r else missing).append(r if r else n)
121
+ return found, missing
122
+
123
+
124
+ def exclude(rows: list[dict], names: list[str] | None) -> list[dict]:
125
+ if not names:
126
+ return rows
127
+ skip = {n.strip().lower() for n in names}
128
+ return [r for r in rows if r["method_name"].lower() not in skip]
129
+
130
+
131
+ def spread_sample(rows: list[dict], n: int, rng: random.Random | None = None) -> list[dict]:
132
+ """Draw n methods with maximum category diversity: shuffle the categories,
133
+ take one random method per category round-robin, wrapping only when there
134
+ are fewer categories than picks."""
135
+ rng = rng or random
136
+ by_cat: dict[str, list[dict]] = {}
137
+ for r in rows:
138
+ by_cat.setdefault(r["category"], []).append(r)
139
+ buckets = list(by_cat.values())
140
+ rng.shuffle(buckets)
141
+ for b in buckets:
142
+ rng.shuffle(b)
143
+ out: list[dict] = []
144
+ while buckets and len(out) < n:
145
+ exhausted = []
146
+ for b in buckets:
147
+ if len(out) >= n:
148
+ break
149
+ out.append(b.pop())
150
+ if not b:
151
+ exhausted.append(b)
152
+ buckets = [b for b in buckets if b not in exhausted]
153
+ return out
154
+
155
+
156
+ def fmt_categories(cats: list[tuple[str, int]], as_json: bool) -> str:
157
+ if as_json:
158
+ return json.dumps([{"category": c, "count": n} for c, n in cats])
159
+ return "\n".join(f"{c}\t{n}" for c, n in cats)
160
+
161
+
162
+ def fmt_rows(rows: list[dict], as_json: bool) -> str:
163
+ if as_json:
164
+ return json.dumps([{k: r[k] for k in FIELDS} for r in rows])
165
+ return "\n".join(
166
+ f"{r['num']}\t{r['category']}\t{r['method_name']}\t{r['description']}\t{r['output_pattern']}"
167
+ for r in rows
168
+ )
169
+
170
+
171
+ def main(argv: list[str] | None = None) -> int:
172
+ if hasattr(sys.stdout, "reconfigure"):
173
+ sys.stdout.reconfigure(encoding="utf-8") # catalog rows contain →; don't die on locale code pages
174
+ p = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter)
175
+ p.add_argument("--file", type=Path, default=DEFAULT_FILE, help="method CSV (default: sibling assets/methods.csv)")
176
+ p.add_argument("--extra", help="additional methods: a JSON array literal or a path to a JSON file")
177
+ p.add_argument("--json", action="store_true", help="emit structured JSON instead of lean text")
178
+ sub = p.add_subparsers(dest="cmd", required=True)
179
+ sub.add_parser("categories", help="list category names + counts")
180
+ pl = sub.add_parser("list", help="the index for chosen categories (needs --category or --all)")
181
+ pl.add_argument("--category", action="append", help="filter to a category (repeatable)")
182
+ pl.add_argument("--all", action="store_true", help="dump the entire catalog (deliberate; large)")
183
+ ps = sub.add_parser("show", help="full row for each named method")
184
+ ps.add_argument("names", nargs="+", help="method names or nums")
185
+ pr = sub.add_parser("random", help="draw methods at random")
186
+ pr.add_argument("-n", type=int, default=1, help="how many (default 1)")
187
+ pr.add_argument("--category", action="append", help="restrict to a category (repeatable)")
188
+ pr.add_argument("--exclude", action="append", help="method name to skip (repeatable) — e.g. already shown")
189
+ pr.add_argument("--spread", action="store_true", help="force category diversity across the draw")
190
+ args = p.parse_args(argv)
191
+
192
+ if not args.file.is_file():
193
+ print(f"error: method file not found: {args.file}", file=sys.stderr)
194
+ return 2
195
+ rows = load(args.file)
196
+ if args.extra:
197
+ try:
198
+ rows = merge_extra(rows, load_extra(args.extra))
199
+ except (OSError, ValueError) as e:
200
+ print(f"error: could not read --extra: {e}", file=sys.stderr)
201
+ return 2
202
+
203
+ if args.cmd == "categories":
204
+ print(fmt_categories(categories(rows), args.json))
205
+ elif args.cmd == "list":
206
+ if not args.category and not args.all:
207
+ print(
208
+ "error: `list` needs --category (one or more) — or --all to dump the whole "
209
+ "catalog on purpose. Use `categories` for the cheap map, or `random` to draw blind.",
210
+ file=sys.stderr,
211
+ )
212
+ return 2
213
+ print(fmt_rows(filter_cats(rows, args.category), args.json))
214
+ elif args.cmd == "show":
215
+ found, missing = find(rows, args.names)
216
+ for m in missing:
217
+ print(f"# not found: {m}", file=sys.stderr)
218
+ if not found:
219
+ return 1
220
+ print(fmt_rows(found, args.json))
221
+ elif args.cmd == "random":
222
+ pool = exclude(filter_cats(rows, args.category), args.exclude)
223
+ if not pool:
224
+ print("# no methods match", file=sys.stderr)
225
+ return 1
226
+ n = max(0, min(args.n, len(pool))) # clamp: never crash on a negative or oversized -n
227
+ picks = spread_sample(pool, n) if args.spread else random.sample(pool, n)
228
+ print(fmt_rows(picks, args.json))
229
+ return 0
230
+
231
+
232
+ if __name__ == "__main__":
233
+ sys.exit(main())