bmad-stella 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (398) hide show
  1. package/.github/FORK_GUIDE.md +106 -0
  2. package/.github/FUNDING.yaml +15 -0
  3. package/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
  5. package/.github/workflows/discord.yaml +26 -0
  6. package/.github/workflows/format-check.yaml +44 -0
  7. package/.github/workflows/manual-release.yaml +174 -0
  8. package/.github/workflows/pr-validation.yaml +55 -0
  9. package/.husky/pre-commit +3 -0
  10. package/.vscode/settings.json +69 -0
  11. package/CHANGELOG.md +686 -0
  12. package/CONTRIBUTING.md +243 -0
  13. package/LICENSE +26 -0
  14. package/PR-opencode-agents-generator.md +40 -0
  15. package/README.md +159 -0
  16. package/REVIEWER-AGENT-SIMPLE.md +66 -0
  17. package/bmad-core/agent-teams/team-all.yaml +15 -0
  18. package/bmad-core/agent-teams/team-fullstack.yaml +19 -0
  19. package/bmad-core/agent-teams/team-ide-minimal.yaml +11 -0
  20. package/bmad-core/agent-teams/team-no-ui.yaml +14 -0
  21. package/bmad-core/agents/analyst.md +84 -0
  22. package/bmad-core/agents/architect.md +85 -0
  23. package/bmad-core/agents/bmad-master.md +110 -0
  24. package/bmad-core/agents/bmad-orchestrator.md +147 -0
  25. package/bmad-core/agents/dev.md +96 -0
  26. package/bmad-core/agents/planner.md +86 -0
  27. package/bmad-core/agents/pm.md +84 -0
  28. package/bmad-core/agents/po.md +79 -0
  29. package/bmad-core/agents/qa.md +80 -0
  30. package/bmad-core/agents/reviewer.md +61 -0
  31. package/bmad-core/agents/sm.md +65 -0
  32. package/bmad-core/agents/ux-expert.md +69 -0
  33. package/bmad-core/checklists/architect-checklist.md +440 -0
  34. package/bmad-core/checklists/change-checklist.md +184 -0
  35. package/bmad-core/checklists/planner-validation-checklist.md +167 -0
  36. package/bmad-core/checklists/pm-checklist.md +372 -0
  37. package/bmad-core/checklists/po-master-checklist.md +434 -0
  38. package/bmad-core/checklists/story-dod-checklist.md +96 -0
  39. package/bmad-core/checklists/story-draft-checklist.md +155 -0
  40. package/bmad-core/checklists/task-dod-checklist.md +110 -0
  41. package/bmad-core/core-config.yaml +26 -0
  42. package/bmad-core/data/bmad-kb.md +809 -0
  43. package/bmad-core/data/brainstorming-techniques.md +38 -0
  44. package/bmad-core/data/elicitation-methods.md +156 -0
  45. package/bmad-core/data/technical-preferences.md +5 -0
  46. package/bmad-core/data/test-levels-framework.md +148 -0
  47. package/bmad-core/data/test-priorities-matrix.md +174 -0
  48. package/bmad-core/tasks/advanced-elicitation.md +119 -0
  49. package/bmad-core/tasks/apply-qa-fixes.md +150 -0
  50. package/bmad-core/tasks/brownfield-create-epic.md +162 -0
  51. package/bmad-core/tasks/brownfield-create-story.md +149 -0
  52. package/bmad-core/tasks/correct-course.md +72 -0
  53. package/bmad-core/tasks/create-brownfield-story.md +314 -0
  54. package/bmad-core/tasks/create-deep-research-prompt.md +280 -0
  55. package/bmad-core/tasks/create-implementation-plan.md +298 -0
  56. package/bmad-core/tasks/create-next-story.md +114 -0
  57. package/bmad-core/tasks/decompose-task.md +162 -0
  58. package/bmad-core/tasks/document-project.md +345 -0
  59. package/bmad-core/tasks/facilitate-brainstorming-session.md +138 -0
  60. package/bmad-core/tasks/generate-ai-frontend-prompt.md +53 -0
  61. package/bmad-core/tasks/identify-dependencies.md +347 -0
  62. package/bmad-core/tasks/implement-test.md +188 -0
  63. package/bmad-core/tasks/index-docs.md +175 -0
  64. package/bmad-core/tasks/kb-mode-interaction.md +77 -0
  65. package/bmad-core/tasks/nfr-assess.md +345 -0
  66. package/bmad-core/tasks/qa-gate.md +163 -0
  67. package/bmad-core/tasks/review-and-improve.md +95 -0
  68. package/bmad-core/tasks/review-story.md +316 -0
  69. package/bmad-core/tasks/risk-profile.md +355 -0
  70. package/bmad-core/tasks/shard-doc.md +187 -0
  71. package/bmad-core/tasks/test-design.md +176 -0
  72. package/bmad-core/tasks/trace-requirements.md +266 -0
  73. package/bmad-core/tasks/validate-next-story.md +136 -0
  74. package/bmad-core/templates/architecture-tmpl.yaml +651 -0
  75. package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
  76. package/bmad-core/templates/brownfield-architecture-tmpl.yaml +477 -0
  77. package/bmad-core/templates/brownfield-prd-tmpl.yaml +281 -0
  78. package/bmad-core/templates/competitor-analysis-tmpl.yaml +307 -0
  79. package/bmad-core/templates/front-end-architecture-tmpl.yaml +219 -0
  80. package/bmad-core/templates/front-end-spec-tmpl.yaml +350 -0
  81. package/bmad-core/templates/fullstack-architecture-tmpl.yaml +824 -0
  82. package/bmad-core/templates/implementation-plan-tmpl.yaml +224 -0
  83. package/bmad-core/templates/market-research-tmpl.yaml +253 -0
  84. package/bmad-core/templates/prd-tmpl.yaml +203 -0
  85. package/bmad-core/templates/project-brief-tmpl.yaml +222 -0
  86. package/bmad-core/templates/qa-gate-tmpl.yaml +103 -0
  87. package/bmad-core/templates/story-tmpl.yaml +138 -0
  88. package/bmad-core/workflows/brownfield-fullstack.yaml +298 -0
  89. package/bmad-core/workflows/brownfield-service.yaml +188 -0
  90. package/bmad-core/workflows/brownfield-ui.yaml +198 -0
  91. package/bmad-core/workflows/greenfield-fullstack.yaml +241 -0
  92. package/bmad-core/workflows/greenfield-service.yaml +207 -0
  93. package/bmad-core/workflows/greenfield-ui.yaml +236 -0
  94. package/common/tasks/create-doc.md +103 -0
  95. package/common/tasks/execute-checklist.md +88 -0
  96. package/common/utils/bmad-doc-template.md +327 -0
  97. package/common/utils/workflow-management.md +71 -0
  98. package/dist/agents/analyst.txt +2907 -0
  99. package/dist/agents/architect.txt +3567 -0
  100. package/dist/agents/bmad-master.txt +8828 -0
  101. package/dist/agents/bmad-orchestrator.txt +1520 -0
  102. package/dist/agents/dev.txt +576 -0
  103. package/dist/agents/pm.txt +2226 -0
  104. package/dist/agents/po.txt +1359 -0
  105. package/dist/agents/qa.txt +2001 -0
  106. package/dist/agents/sm.txt +667 -0
  107. package/dist/agents/ux-expert.txt +703 -0
  108. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +2386 -0
  109. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +1627 -0
  110. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +822 -0
  111. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +11008 -0
  112. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.txt +4031 -0
  113. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.txt +3717 -0
  114. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.txt +456 -0
  115. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.txt +982 -0
  116. package/dist/expansion-packs/bmad-2d-unity-game-dev/teams/unity-2d-game-team.txt +15450 -0
  117. package/dist/expansion-packs/bmad-creative-writing/agents/beta-reader.txt +921 -0
  118. package/dist/expansion-packs/bmad-creative-writing/agents/book-critic.txt +81 -0
  119. package/dist/expansion-packs/bmad-creative-writing/agents/character-psychologist.txt +886 -0
  120. package/dist/expansion-packs/bmad-creative-writing/agents/cover-designer.txt +85 -0
  121. package/dist/expansion-packs/bmad-creative-writing/agents/dialog-specialist.txt +903 -0
  122. package/dist/expansion-packs/bmad-creative-writing/agents/editor.txt +837 -0
  123. package/dist/expansion-packs/bmad-creative-writing/agents/genre-specialist.txt +989 -0
  124. package/dist/expansion-packs/bmad-creative-writing/agents/narrative-designer.txt +888 -0
  125. package/dist/expansion-packs/bmad-creative-writing/agents/plot-architect.txt +1173 -0
  126. package/dist/expansion-packs/bmad-creative-writing/agents/world-builder.txt +914 -0
  127. package/dist/expansion-packs/bmad-creative-writing/teams/agent-team.txt +6511 -0
  128. package/dist/expansion-packs/bmad-godot-game-dev/agents/bmad-orchestrator.txt +1513 -0
  129. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-analyst.txt +3190 -0
  130. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-architect.txt +4499 -0
  131. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-designer.txt +3925 -0
  132. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-developer.txt +666 -0
  133. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-pm.txt +2381 -0
  134. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-po.txt +1612 -0
  135. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-qa.txt +1741 -0
  136. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-sm.txt +1208 -0
  137. package/dist/expansion-packs/bmad-godot-game-dev/agents/game-ux-expert.txt +958 -0
  138. package/dist/expansion-packs/bmad-godot-game-dev/teams/godot-game-team.txt +27717 -0
  139. package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +2087 -0
  140. package/dist/teams/team-all.txt +12911 -0
  141. package/dist/teams/team-fullstack.txt +10477 -0
  142. package/dist/teams/team-ide-minimal.txt +5299 -0
  143. package/dist/teams/team-no-ui.txt +9029 -0
  144. package/docs/GUIDING-PRINCIPLES.md +91 -0
  145. package/docs/core-architecture.md +219 -0
  146. package/docs/enhanced-ide-development-workflow.md +248 -0
  147. package/docs/expansion-packs.md +200 -0
  148. package/docs/flattener.md +91 -0
  149. package/docs/how-to-contribute-with-pull-requests.md +158 -0
  150. package/docs/stella-user-guide.md +637 -0
  151. package/docs/user-guide.md +577 -0
  152. package/docs/versioning-and-releases.md +155 -0
  153. package/docs/versions.md +48 -0
  154. package/docs/working-in-the-brownfield.md +606 -0
  155. package/eslint.config.mjs +119 -0
  156. package/expansion-packs/README.md +3 -0
  157. package/expansion-packs/bmad-2d-phaser-game-dev/agent-teams/phaser-2d-nodejs-game-team.yaml +14 -0
  158. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.md +73 -0
  159. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.md +80 -0
  160. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.md +66 -0
  161. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-design-checklist.md +203 -0
  162. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-story-dod-checklist.md +162 -0
  163. package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +9 -0
  164. package/expansion-packs/bmad-2d-phaser-game-dev/data/bmad-kb.md +252 -0
  165. package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +649 -0
  166. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/advanced-elicitation.md +112 -0
  167. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +218 -0
  168. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/game-design-brainstorming.md +292 -0
  169. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.yaml +614 -0
  170. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-brief-tmpl.yaml +357 -0
  171. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-design-doc-tmpl.yaml +344 -0
  172. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-story-tmpl.yaml +254 -0
  173. package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.yaml +485 -0
  174. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-dev-greenfield.yaml +184 -0
  175. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-prototype.yaml +176 -0
  176. package/expansion-packs/bmad-2d-unity-game-dev/agent-teams/unity-2d-game-team.yaml +15 -0
  177. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.md +82 -0
  178. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.md +79 -0
  179. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.md +80 -0
  180. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.md +67 -0
  181. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-architect-checklist.md +393 -0
  182. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-change-checklist.md +205 -0
  183. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-design-checklist.md +203 -0
  184. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-story-dod-checklist.md +126 -0
  185. package/expansion-packs/bmad-2d-unity-game-dev/config.yaml +7 -0
  186. package/expansion-packs/bmad-2d-unity-game-dev/data/bmad-kb.md +771 -0
  187. package/expansion-packs/bmad-2d-unity-game-dev/data/development-guidelines.md +588 -0
  188. package/expansion-packs/bmad-2d-unity-game-dev/tasks/advanced-elicitation.md +112 -0
  189. package/expansion-packs/bmad-2d-unity-game-dev/tasks/correct-course-game.md +143 -0
  190. package/expansion-packs/bmad-2d-unity-game-dev/tasks/create-game-story.md +186 -0
  191. package/expansion-packs/bmad-2d-unity-game-dev/tasks/game-design-brainstorming.md +292 -0
  192. package/expansion-packs/bmad-2d-unity-game-dev/tasks/validate-game-story.md +202 -0
  193. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-architecture-tmpl.yaml +1031 -0
  194. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-brief-tmpl.yaml +357 -0
  195. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-design-doc-tmpl.yaml +706 -0
  196. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-story-tmpl.yaml +257 -0
  197. package/expansion-packs/bmad-2d-unity-game-dev/templates/level-design-doc-tmpl.yaml +485 -0
  198. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-dev-greenfield.yaml +184 -0
  199. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-prototype.yaml +176 -0
  200. package/expansion-packs/bmad-creative-writing/README.md +146 -0
  201. package/expansion-packs/bmad-creative-writing/agent-teams/agent-team.yaml +20 -0
  202. package/expansion-packs/bmad-creative-writing/agents/beta-reader.md +94 -0
  203. package/expansion-packs/bmad-creative-writing/agents/book-critic.md +40 -0
  204. package/expansion-packs/bmad-creative-writing/agents/character-psychologist.md +93 -0
  205. package/expansion-packs/bmad-creative-writing/agents/cover-designer.md +46 -0
  206. package/expansion-packs/bmad-creative-writing/agents/dialog-specialist.md +92 -0
  207. package/expansion-packs/bmad-creative-writing/agents/editor.md +93 -0
  208. package/expansion-packs/bmad-creative-writing/agents/genre-specialist.md +95 -0
  209. package/expansion-packs/bmad-creative-writing/agents/narrative-designer.md +93 -0
  210. package/expansion-packs/bmad-creative-writing/agents/plot-architect.md +95 -0
  211. package/expansion-packs/bmad-creative-writing/agents/world-builder.md +94 -0
  212. package/expansion-packs/bmad-creative-writing/checklists/beta-feedback-closure-checklist.md +23 -0
  213. package/expansion-packs/bmad-creative-writing/checklists/character-consistency-checklist.md +23 -0
  214. package/expansion-packs/bmad-creative-writing/checklists/comedic-timing-checklist.md +23 -0
  215. package/expansion-packs/bmad-creative-writing/checklists/cyberpunk-aesthetic-checklist.md +23 -0
  216. package/expansion-packs/bmad-creative-writing/checklists/ebook-formatting-checklist.md +21 -0
  217. package/expansion-packs/bmad-creative-writing/checklists/epic-poetry-meter-checklist.md +23 -0
  218. package/expansion-packs/bmad-creative-writing/checklists/fantasy-magic-system-checklist.md +23 -0
  219. package/expansion-packs/bmad-creative-writing/checklists/foreshadowing-payoff-checklist.md +22 -0
  220. package/expansion-packs/bmad-creative-writing/checklists/genre-tropes-checklist.md +22 -0
  221. package/expansion-packs/bmad-creative-writing/checklists/historical-accuracy-checklist.md +23 -0
  222. package/expansion-packs/bmad-creative-writing/checklists/horror-suspense-checklist.md +23 -0
  223. package/expansion-packs/bmad-creative-writing/checklists/kdp-cover-ready-checklist.md +25 -0
  224. package/expansion-packs/bmad-creative-writing/checklists/line-edit-quality-checklist.md +23 -0
  225. package/expansion-packs/bmad-creative-writing/checklists/marketing-copy-checklist.md +23 -0
  226. package/expansion-packs/bmad-creative-writing/checklists/mystery-clue-trail-checklist.md +23 -0
  227. package/expansion-packs/bmad-creative-writing/checklists/orbital-mechanics-checklist.md +23 -0
  228. package/expansion-packs/bmad-creative-writing/checklists/plot-structure-checklist.md +59 -0
  229. package/expansion-packs/bmad-creative-writing/checklists/publication-readiness-checklist.md +23 -0
  230. package/expansion-packs/bmad-creative-writing/checklists/romance-emotional-beats-checklist.md +23 -0
  231. package/expansion-packs/bmad-creative-writing/checklists/scene-quality-checklist.md +23 -0
  232. package/expansion-packs/bmad-creative-writing/checklists/scifi-technology-plausibility-checklist.md +22 -0
  233. package/expansion-packs/bmad-creative-writing/checklists/sensitivity-representation-checklist.md +23 -0
  234. package/expansion-packs/bmad-creative-writing/checklists/steampunk-gadget-checklist.md +23 -0
  235. package/expansion-packs/bmad-creative-writing/checklists/thriller-pacing-stakes-checklist.md +23 -0
  236. package/expansion-packs/bmad-creative-writing/checklists/timeline-continuity-checklist.md +23 -0
  237. package/expansion-packs/bmad-creative-writing/checklists/world-building-continuity-checklist.md +23 -0
  238. package/expansion-packs/bmad-creative-writing/checklists/ya-appropriateness-checklist.md +23 -0
  239. package/expansion-packs/bmad-creative-writing/config.yaml +12 -0
  240. package/expansion-packs/bmad-creative-writing/data/bmad-kb.md +209 -0
  241. package/expansion-packs/bmad-creative-writing/data/story-structures.md +67 -0
  242. package/expansion-packs/bmad-creative-writing/docs/brief.md +212 -0
  243. package/expansion-packs/bmad-creative-writing/tasks/advanced-elicitation.md +119 -0
  244. package/expansion-packs/bmad-creative-writing/tasks/analyze-reader-feedback.md +23 -0
  245. package/expansion-packs/bmad-creative-writing/tasks/analyze-story-structure.md +67 -0
  246. package/expansion-packs/bmad-creative-writing/tasks/assemble-kdp-package.md +29 -0
  247. package/expansion-packs/bmad-creative-writing/tasks/brainstorm-premise.md +23 -0
  248. package/expansion-packs/bmad-creative-writing/tasks/build-world.md +24 -0
  249. package/expansion-packs/bmad-creative-writing/tasks/character-depth-pass.md +22 -0
  250. package/expansion-packs/bmad-creative-writing/tasks/create-doc.md +103 -0
  251. package/expansion-packs/bmad-creative-writing/tasks/create-draft-section.md +26 -0
  252. package/expansion-packs/bmad-creative-writing/tasks/critical-review.md +26 -0
  253. package/expansion-packs/bmad-creative-writing/tasks/develop-character.md +24 -0
  254. package/expansion-packs/bmad-creative-writing/tasks/execute-checklist.md +88 -0
  255. package/expansion-packs/bmad-creative-writing/tasks/expand-premise.md +23 -0
  256. package/expansion-packs/bmad-creative-writing/tasks/expand-synopsis.md +23 -0
  257. package/expansion-packs/bmad-creative-writing/tasks/final-polish.md +23 -0
  258. package/expansion-packs/bmad-creative-writing/tasks/generate-cover-brief.md +25 -0
  259. package/expansion-packs/bmad-creative-writing/tasks/generate-cover-prompts.md +26 -0
  260. package/expansion-packs/bmad-creative-writing/tasks/generate-scene-list.md +23 -0
  261. package/expansion-packs/bmad-creative-writing/tasks/incorporate-feedback.md +25 -0
  262. package/expansion-packs/bmad-creative-writing/tasks/outline-scenes.md +23 -0
  263. package/expansion-packs/bmad-creative-writing/tasks/provide-feedback.md +24 -0
  264. package/expansion-packs/bmad-creative-writing/tasks/publish-chapter.md +23 -0
  265. package/expansion-packs/bmad-creative-writing/tasks/quick-feedback.md +22 -0
  266. package/expansion-packs/bmad-creative-writing/tasks/select-next-arc.md +23 -0
  267. package/expansion-packs/bmad-creative-writing/tasks/workshop-dialog.md +64 -0
  268. package/expansion-packs/bmad-creative-writing/templates/beta-feedback-form.yaml +97 -0
  269. package/expansion-packs/bmad-creative-writing/templates/chapter-draft-tmpl.yaml +82 -0
  270. package/expansion-packs/bmad-creative-writing/templates/character-profile-tmpl.yaml +92 -0
  271. package/expansion-packs/bmad-creative-writing/templates/cover-design-brief-tmpl.yaml +98 -0
  272. package/expansion-packs/bmad-creative-writing/templates/premise-brief-tmpl.yaml +78 -0
  273. package/expansion-packs/bmad-creative-writing/templates/scene-list-tmpl.yaml +55 -0
  274. package/expansion-packs/bmad-creative-writing/templates/story-outline-tmpl.yaml +96 -0
  275. package/expansion-packs/bmad-creative-writing/templates/world-guide-tmpl.yaml +89 -0
  276. package/expansion-packs/bmad-creative-writing/workflows/book-cover-design-workflow.md +218 -0
  277. package/expansion-packs/bmad-creative-writing/workflows/novel-greenfield-workflow.yaml +56 -0
  278. package/expansion-packs/bmad-creative-writing/workflows/novel-serial-workflow.yaml +50 -0
  279. package/expansion-packs/bmad-creative-writing/workflows/novel-snowflake-workflow.yaml +69 -0
  280. package/expansion-packs/bmad-creative-writing/workflows/novel-writing.yaml +91 -0
  281. package/expansion-packs/bmad-creative-writing/workflows/screenplay-development.yaml +85 -0
  282. package/expansion-packs/bmad-creative-writing/workflows/series-planning.yaml +78 -0
  283. package/expansion-packs/bmad-creative-writing/workflows/short-story-creation.yaml +64 -0
  284. package/expansion-packs/bmad-godot-game-dev/README.md +244 -0
  285. package/expansion-packs/bmad-godot-game-dev/agent-teams/godot-game-team.yaml +18 -0
  286. package/expansion-packs/bmad-godot-game-dev/agents/bmad-orchestrator.md +147 -0
  287. package/expansion-packs/bmad-godot-game-dev/agents/game-analyst.md +84 -0
  288. package/expansion-packs/bmad-godot-game-dev/agents/game-architect.md +146 -0
  289. package/expansion-packs/bmad-godot-game-dev/agents/game-designer.md +78 -0
  290. package/expansion-packs/bmad-godot-game-dev/agents/game-developer.md +124 -0
  291. package/expansion-packs/bmad-godot-game-dev/agents/game-pm.md +82 -0
  292. package/expansion-packs/bmad-godot-game-dev/agents/game-po.md +115 -0
  293. package/expansion-packs/bmad-godot-game-dev/agents/game-qa.md +159 -0
  294. package/expansion-packs/bmad-godot-game-dev/agents/game-sm.md +66 -0
  295. package/expansion-packs/bmad-godot-game-dev/agents/game-ux-expert.md +75 -0
  296. package/expansion-packs/bmad-godot-game-dev/checklists/game-architect-checklist.md +377 -0
  297. package/expansion-packs/bmad-godot-game-dev/checklists/game-change-checklist.md +250 -0
  298. package/expansion-packs/bmad-godot-game-dev/checklists/game-design-checklist.md +225 -0
  299. package/expansion-packs/bmad-godot-game-dev/checklists/game-po-checklist.md +448 -0
  300. package/expansion-packs/bmad-godot-game-dev/checklists/game-story-dod-checklist.md +202 -0
  301. package/expansion-packs/bmad-godot-game-dev/config.yaml +30 -0
  302. package/expansion-packs/bmad-godot-game-dev/data/bmad-kb.md +811 -0
  303. package/expansion-packs/bmad-godot-game-dev/data/brainstorming-techniques.md +36 -0
  304. package/expansion-packs/bmad-godot-game-dev/data/development-guidelines.md +893 -0
  305. package/expansion-packs/bmad-godot-game-dev/data/elicitation-methods.md +156 -0
  306. package/expansion-packs/bmad-godot-game-dev/data/technical-preferences.md +3 -0
  307. package/expansion-packs/bmad-godot-game-dev/tasks/advanced-elicitation.md +110 -0
  308. package/expansion-packs/bmad-godot-game-dev/tasks/apply-qa-fixes.md +224 -0
  309. package/expansion-packs/bmad-godot-game-dev/tasks/brownfield-create-epic.md +162 -0
  310. package/expansion-packs/bmad-godot-game-dev/tasks/brownfield-create-story.md +149 -0
  311. package/expansion-packs/bmad-godot-game-dev/tasks/correct-course-game.md +159 -0
  312. package/expansion-packs/bmad-godot-game-dev/tasks/create-deep-research-prompt.md +278 -0
  313. package/expansion-packs/bmad-godot-game-dev/tasks/create-doc.md +103 -0
  314. package/expansion-packs/bmad-godot-game-dev/tasks/create-game-story.md +202 -0
  315. package/expansion-packs/bmad-godot-game-dev/tasks/document-project.md +343 -0
  316. package/expansion-packs/bmad-godot-game-dev/tasks/execute-checklist.md +88 -0
  317. package/expansion-packs/bmad-godot-game-dev/tasks/facilitate-brainstorming-session.md +136 -0
  318. package/expansion-packs/bmad-godot-game-dev/tasks/game-brownfield-create-epic.md +160 -0
  319. package/expansion-packs/bmad-godot-game-dev/tasks/game-brownfield-create-story.md +147 -0
  320. package/expansion-packs/bmad-godot-game-dev/tasks/game-design-brainstorming.md +290 -0
  321. package/expansion-packs/bmad-godot-game-dev/tasks/game-risk-profile.md +368 -0
  322. package/expansion-packs/bmad-godot-game-dev/tasks/game-test-design.md +219 -0
  323. package/expansion-packs/bmad-godot-game-dev/tasks/generate-ai-frontend-prompt.md +51 -0
  324. package/expansion-packs/bmad-godot-game-dev/tasks/kb-mode-interaction.md +77 -0
  325. package/expansion-packs/bmad-godot-game-dev/tasks/review-game-story.md +364 -0
  326. package/expansion-packs/bmad-godot-game-dev/tasks/shard-doc.md +187 -0
  327. package/expansion-packs/bmad-godot-game-dev/tasks/validate-game-story.md +208 -0
  328. package/expansion-packs/bmad-godot-game-dev/templates/brainstorming-output-tmpl.yaml +156 -0
  329. package/expansion-packs/bmad-godot-game-dev/templates/brownfield-prd-tmpl.yaml +281 -0
  330. package/expansion-packs/bmad-godot-game-dev/templates/competitor-analysis-tmpl.yaml +306 -0
  331. package/expansion-packs/bmad-godot-game-dev/templates/game-architecture-tmpl.yaml +1111 -0
  332. package/expansion-packs/bmad-godot-game-dev/templates/game-brief-tmpl.yaml +356 -0
  333. package/expansion-packs/bmad-godot-game-dev/templates/game-design-doc-tmpl.yaml +724 -0
  334. package/expansion-packs/bmad-godot-game-dev/templates/game-prd-tmpl.yaml +209 -0
  335. package/expansion-packs/bmad-godot-game-dev/templates/game-qa-gate-tmpl.yaml +186 -0
  336. package/expansion-packs/bmad-godot-game-dev/templates/game-story-tmpl.yaml +406 -0
  337. package/expansion-packs/bmad-godot-game-dev/templates/game-ui-spec-tmpl.yaml +601 -0
  338. package/expansion-packs/bmad-godot-game-dev/templates/level-design-doc-tmpl.yaml +620 -0
  339. package/expansion-packs/bmad-godot-game-dev/templates/market-research-tmpl.yaml +418 -0
  340. package/expansion-packs/bmad-godot-game-dev/utils/bmad-doc-template.md +327 -0
  341. package/expansion-packs/bmad-godot-game-dev/utils/workflow-management.md +71 -0
  342. package/expansion-packs/bmad-godot-game-dev/workflows/game-dev-greenfield.yaml +245 -0
  343. package/expansion-packs/bmad-godot-game-dev/workflows/game-prototype.yaml +213 -0
  344. package/expansion-packs/bmad-infrastructure-devops/README.md +147 -0
  345. package/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.md +73 -0
  346. package/expansion-packs/bmad-infrastructure-devops/checklists/infrastructure-checklist.md +486 -0
  347. package/expansion-packs/bmad-infrastructure-devops/config.yaml +10 -0
  348. package/expansion-packs/bmad-infrastructure-devops/data/bmad-kb.md +307 -0
  349. package/expansion-packs/bmad-infrastructure-devops/tasks/review-infrastructure.md +161 -0
  350. package/expansion-packs/bmad-infrastructure-devops/tasks/validate-infrastructure.md +155 -0
  351. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.yaml +425 -0
  352. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.yaml +630 -0
  353. package/package.json +116 -0
  354. package/prettier.config.mjs +32 -0
  355. package/tools/bmad-npx-wrapper.js +39 -0
  356. package/tools/builders/web-builder.js +675 -0
  357. package/tools/bump-all-versions.js +115 -0
  358. package/tools/bump-expansion-version.js +90 -0
  359. package/tools/cli.js +152 -0
  360. package/tools/flattener/aggregate.js +76 -0
  361. package/tools/flattener/binary.js +80 -0
  362. package/tools/flattener/discovery.js +71 -0
  363. package/tools/flattener/files.js +35 -0
  364. package/tools/flattener/ignoreRules.js +178 -0
  365. package/tools/flattener/main.js +568 -0
  366. package/tools/flattener/projectRoot.js +206 -0
  367. package/tools/flattener/prompts.js +44 -0
  368. package/tools/flattener/stats.helpers.js +395 -0
  369. package/tools/flattener/stats.js +80 -0
  370. package/tools/flattener/test-matrix.js +413 -0
  371. package/tools/flattener/xml.js +88 -0
  372. package/tools/implement-fork-friendly-ci.sh +229 -0
  373. package/tools/installer/README.md +8 -0
  374. package/tools/installer/bin/bmad.js +633 -0
  375. package/tools/installer/config/ide-agent-config.yaml +58 -0
  376. package/tools/installer/config/install.config.yaml +184 -0
  377. package/tools/installer/lib/config-loader.js +257 -0
  378. package/tools/installer/lib/dependency-manager.js +383 -0
  379. package/tools/installer/lib/file-manager.js +394 -0
  380. package/tools/installer/lib/ide-base-setup.js +228 -0
  381. package/tools/installer/lib/ide-setup.js +2461 -0
  382. package/tools/installer/lib/installer.js +2094 -0
  383. package/tools/installer/lib/memory-profiler.js +225 -0
  384. package/tools/installer/lib/module-manager.js +114 -0
  385. package/tools/installer/lib/resource-locator.js +308 -0
  386. package/tools/installer/package.json +47 -0
  387. package/tools/lib/dependency-resolver.js +175 -0
  388. package/tools/lib/yaml-utils.js +29 -0
  389. package/tools/md-assets/web-agent-startup-instructions.md +39 -0
  390. package/tools/preview-release-notes.js +66 -0
  391. package/tools/setup-hooks.sh +37 -0
  392. package/tools/shared/bannerArt.js +105 -0
  393. package/tools/sync-installer-version.js +32 -0
  394. package/tools/sync-version.sh +23 -0
  395. package/tools/update-expansion-version.js +53 -0
  396. package/tools/upgraders/v3-to-v4-upgrader.js +673 -0
  397. package/tools/version-bump.js +94 -0
  398. package/tools/yaml-format.js +253 -0
@@ -0,0 +1,243 @@
1
+ # Contributing to this project
2
+
3
+ Thank you for contributing to this project! This document outlines the process for contributing and some guidelines to follow.
4
+
5
+ 🆕 **New to GitHub or pull requests?** Check out our [beginner-friendly Pull Request Guide](docs/how-to-contribute-with-pull-requests.md) first!
6
+
7
+ 📋 **Before contributing**, please read our [Guiding Principles](docs/GUIDING-PRINCIPLES.md) to understand the BMad Method's core philosophy and architectural decisions.
8
+
9
+ Also note, we use the discussions feature in GitHub to have a community to discuss potential ideas, uses, additions and enhancements.
10
+
11
+ 💬 **Discord Community**: Join our [Discord server](https://discord.gg/gk8jAdXWmj) for real-time discussions or search past discussions or ideas.
12
+
13
+ ## Code of Conduct
14
+
15
+ By participating in this project, you agree to abide by our Code of Conduct. Please read it before participating.
16
+
17
+ ## Before Submitting a PR
18
+
19
+ **IMPORTANT**: All PRs must pass validation checks before they can be merged.
20
+
21
+ ### Required Checks
22
+
23
+ Before submitting your PR, run these commands locally:
24
+
25
+ ```bash
26
+ # Run all validation checks
27
+ npm run pre-release
28
+
29
+ # Or run them individually:
30
+ npm run validate # Validate agent/team configs
31
+ npm run format:check # Check code formatting
32
+ npm run lint # Check for linting issues
33
+ ```
34
+
35
+ ### Fixing Issues
36
+
37
+ If any checks fail, use these commands to fix them:
38
+
39
+ ```bash
40
+ # Fix all issues automatically
41
+ npm run fix
42
+
43
+ # Or fix individually:
44
+ npm run format # Fix formatting issues
45
+ npm run lint:fix # Fix linting issues
46
+ ```
47
+
48
+ ### Setup Git Hooks (Optional but Recommended)
49
+
50
+ To catch issues before committing:
51
+
52
+ ```bash
53
+ # Run this once after cloning
54
+ chmod +x tools/setup-hooks.sh
55
+ ./tools/setup-hooks.sh
56
+ ```
57
+
58
+ ## How to Contribute
59
+
60
+ ### Reporting Bugs
61
+
62
+ 1. **Check existing issues** first to avoid duplicates
63
+ 2. **Use the bug report template** when creating a new issue - it will guide you through providing:
64
+ - Clear bug description
65
+ - Steps to reproduce
66
+ - Expected vs actual behavior
67
+ - Model/IDE/BMad version details
68
+ - Screenshots or links if applicable
69
+ 3. **Consider discussing in Discord** (#bugs-issues channel) for quick help
70
+ 4. **Indicate if you're working on a fix** to avoid duplicate efforts
71
+
72
+ ### Suggesting Features
73
+
74
+ 1. **Discuss first in Discord** (#general-dev channel) - the feature request template asks if you've done this
75
+ 2. **Check existing issues and discussions** to avoid duplicates
76
+ 3. **Use the feature request template** when creating an issue - it will guide you through:
77
+ - Confirming Discord discussion
78
+ - Describing the problem it solves
79
+ - Explaining your solution
80
+ - Listing alternatives considered
81
+ 4. **Be specific** about why this feature would benefit the BMad community
82
+
83
+ ### Pull Request Process
84
+
85
+ ⚠️ **Before starting work:**
86
+
87
+ 1. **For bugs**: Check if an issue exists (create one using the bug template if not)
88
+ 2. **For features**: Ensure you've discussed in Discord (#general-dev) AND created a feature request issue
89
+ 3. **For large changes**: Always open an issue first to discuss alignment
90
+
91
+ Please only propose small granular commits! If its large or significant, please discuss in the discussions tab and open up an issue first. I do not want you to waste your time on a potentially very large PR to have it rejected because it is not aligned or deviates from other planned changes. Communicate and lets work together to build and improve this great community project!
92
+
93
+ **Important**: All contributions must align with our [Guiding Principles](docs/GUIDING-PRINCIPLES.md). Key points:
94
+
95
+ - Keep dev agents lean - they need context for coding, not documentation
96
+ - Web/planning agents can be larger with more complex tasks
97
+ - Everything is natural language (markdown) - no code in core framework
98
+ - Use expansion packs for domain-specific features
99
+
100
+ #### Which Branch for Your PR?
101
+
102
+ **Submit to `next` branch** (most contributions):
103
+
104
+ - ✨ New features or agents
105
+ - 🎨 Enhancements to existing features
106
+ - 📚 Documentation updates
107
+ - ♻️ Code refactoring
108
+ - ⚡ Performance improvements
109
+ - 🧪 New tests
110
+ - 🎁 New expansion packs
111
+
112
+ **Submit to `main` branch** (critical only):
113
+
114
+ - 🚨 Critical bug fixes that break basic functionality
115
+ - 🔒 Security patches
116
+ - 📚 Fixing dangerously incorrect documentation
117
+ - 🐛 Bugs preventing installation or basic usage
118
+
119
+ **When in doubt, submit to `next`**. We'd rather test changes thoroughly before they hit stable.
120
+
121
+ #### PR Size Guidelines
122
+
123
+ - **Ideal PR size**: 200-400 lines of code changes
124
+ - **Maximum PR size**: 800 lines (excluding generated files)
125
+ - **One feature/fix per PR**: Each PR should address a single issue or add one feature
126
+ - **If your change is larger**: Break it into multiple smaller PRs that can be reviewed independently
127
+ - **Related changes**: Even related changes should be separate PRs if they deliver independent value
128
+
129
+ #### Breaking Down Large PRs
130
+
131
+ If your change exceeds 800 lines, use this checklist to split it:
132
+
133
+ - [ ] Can I separate the refactoring from the feature implementation?
134
+ - [ ] Can I introduce the new API/interface in one PR and implementation in another?
135
+ - [ ] Can I split by file or module?
136
+ - [ ] Can I create a base PR with shared utilities first?
137
+ - [ ] Can I separate test additions from implementation?
138
+ - [ ] Even if changes are related, can they deliver value independently?
139
+ - [ ] Can these changes be merged in any order without breaking things?
140
+
141
+ Example breakdown:
142
+
143
+ 1. PR #1: Add utility functions and types (100 lines)
144
+ 2. PR #2: Refactor existing code to use utilities (200 lines)
145
+ 3. PR #3: Implement new feature using refactored code (300 lines)
146
+ 4. PR #4: Add comprehensive tests (200 lines)
147
+
148
+ **Note**: PRs #1 and #4 could be submitted simultaneously since they deliver independent value and don't depend on each other's merge order.
149
+
150
+ #### Pull Request Steps
151
+
152
+ 1. Fork the repository
153
+ 2. Create a new branch (`git checkout -b feature/your-feature-name`)
154
+ 3. Make your changes
155
+ 4. Run any tests or linting to ensure quality
156
+ 5. Commit your changes with clear, descriptive messages following our commit message convention
157
+ 6. Push to your branch (`git push origin feature/your-feature-name`)
158
+ 7. Open a Pull Request against the main branch
159
+
160
+ ## Issue Templates
161
+
162
+ We use GitHub issue templates to ensure all necessary information is provided:
163
+
164
+ - **Bug Reports**: Automatically guides you through providing reproduction steps, environment details, and expected behavior
165
+ - **Feature Requests**: Requires Discord discussion confirmation and asks for problem/solution descriptions
166
+
167
+ Using these templates helps maintainers understand and address your contribution faster.
168
+
169
+ ## Pull Request Description Guidelines
170
+
171
+ Keep PR descriptions short and to the point following this template:
172
+
173
+ ### PR Description Template
174
+
175
+ Keep your PR description concise and focused. Use this template:
176
+
177
+ ```markdown
178
+ ## What
179
+
180
+ [1-2 sentences describing WHAT changed]
181
+
182
+ ## Why
183
+
184
+ [1-2 sentences explaining WHY this change is needed]
185
+ Fixes #[issue number] (if applicable)
186
+
187
+ ## How
188
+
189
+ [2-3 bullets listing HOW you implemented it]
190
+
191
+ ## Testing
192
+
193
+ [1-2 sentences on how you tested this]
194
+ ```
195
+
196
+ **Maximum PR description length: 200 words** (excluding code examples if needed)
197
+
198
+ ### Good vs Bad PR Descriptions
199
+
200
+ ❌ **Bad Example:**
201
+
202
+ > This revolutionary PR introduces a paradigm-shifting enhancement to the system's architecture by implementing a state-of-the-art solution that leverages cutting-edge methodologies to optimize performance metrics and deliver unprecedented value to stakeholders through innovative approaches...
203
+
204
+ ✅ **Good Example:**
205
+
206
+ > **What:** Added validation for agent dependency resolution
207
+ > **Why:** Build was failing silently when agents had circular dependencies
208
+ > **How:**
209
+ >
210
+ > - Added cycle detection in dependency-resolver.js
211
+ > - Throws clear error with dependency chain
212
+ > **Testing:** Tested with circular deps between 3 agents
213
+
214
+ ## Commit Message Convention
215
+
216
+ Use conventional commits format:
217
+
218
+ - `feat:` New feature
219
+ - `fix:` Bug fix
220
+ - `docs:` Documentation only
221
+ - `refactor:` Code change that neither fixes a bug nor adds a feature
222
+ - `test:` Adding missing tests
223
+ - `chore:` Changes to build process or auxiliary tools
224
+
225
+ Keep commit messages under 72 characters.
226
+
227
+ ### Atomic Commits
228
+
229
+ Each commit should represent one logical change:
230
+
231
+ - **Do:** One bug fix per commit
232
+ - **Do:** One feature addition per commit
233
+ - **Don't:** Mix refactoring with bug fixes
234
+ - **Don't:** Combine unrelated changes
235
+
236
+ ## Code Style
237
+
238
+ - Follow the existing code style and conventions
239
+ - Write clear comments for complex logic
240
+
241
+ ## License
242
+
243
+ By contributing to this project, you agree that your contributions will be licensed under the MIT License.
package/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 BMad Code, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ TRADEMARK NOTICE:
24
+ BMAD™ and BMAD-METHOD™ are trademarks of BMad Code, LLC. The use of these
25
+ trademarks in this software does not grant any rights to use the trademarks
26
+ for any other purpose.
@@ -0,0 +1,40 @@
1
+ # feat(opencode): compact AGENTS.md generator and JSON-only integration
2
+
3
+ ## What
4
+
5
+ Add JSON-only OpenCode integration and a compact AGENTS.md generator (no large embeds; clickable file links) with idempotent merges for BMAD instructions, agents, and commands.
6
+
7
+ ## Why
8
+
9
+ Keep OpenCode config schema‑compliant and small, avoid key collisions, and provide a readable agents/tasks index without inflating AGENTS.md.
10
+
11
+ ## How
12
+
13
+ - Ensure `.bmad-core/core-config.yaml` in `instructions`
14
+ - Merge only selected packages’ agents/commands into opencode.json file
15
+ - Orchestrators `mode: primary`; all agents enable `write`, `edit`, `bash`
16
+ - Descriptions from `whenToUse`/task `Purpose` with sanitization + fallbacks
17
+ - Explicit warnings for non‑BMAD collisions; AGENTS.md uses a strict 3‑column table with links
18
+
19
+ ## Testing
20
+
21
+ - Run: `npx bmad-method install -f -i opencode`
22
+ - Verify: `opencode.json[c]` updated/created as expected, `AGENTS.md` OpenCode section is compact with links
23
+ - Pre‑push checks:
24
+
25
+ ```bash
26
+ npm run pre-release
27
+ # or individually
28
+ npm run validate
29
+ npm run format:check
30
+ npm run lint
31
+ # if anything fails
32
+ npm run fix
33
+ # or
34
+ npm run format
35
+ npm run lint:fix
36
+ ```
37
+
38
+ Fixes #<issue-number>
39
+
40
+ Targets: `next` branch
package/README.md ADDED
@@ -0,0 +1,159 @@
1
+ # BMad-Stella: Streamlined AI-Powered Development Workflow
2
+
3
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
4
+ [![Node.js Version](https://img.shields.io/badge/node-%3E%3D16.0.0-brightgreen)](https://nodejs.org)
5
+ [![Built on BMad-Method](https://img.shields.io/badge/Built%20on-BMad%20Method-blue)](https://github.com/bmadcode/bmad-method)
6
+
7
+ A customized implementation of BMAD-METHOD™ optimized for **Claude Code CLI**, providing a streamlined development workflow with specialized AI agents for planning, development, testing, and code review.
8
+
9
+ ## Overview
10
+
11
+ **BMad-Stella** is a focused, implementation-oriented workflow built on BMAD-METHOD™ foundations. It provides four specialized agents that work together seamlessly in Claude Code CLI to deliver high-quality software:
12
+
13
+ **Core Workflow:**
14
+
15
+ ```
16
+ Planner → Dev → QA → Reviewer
17
+ ↑______(if fixes needed)
18
+ ```
19
+
20
+ **Key Features:**
21
+
22
+ - ✨ **Planner Agent (Alex)** - Transforms JIRA tickets into detailed implementation plans
23
+ - 💻 **Dev Agent (Bob)** - Executes tasks sequentially with comprehensive testing
24
+ - 🧪 **QA Agent (Quinn)** - Designs test strategies and ensures requirements traceability
25
+ - 🔍 **Reviewer Agent (Morgan)** - Reviews code and applies practical optimizations
26
+
27
+ **Built for:** Teams using JIRA, Confluence, and Claude Code CLI for agile development.
28
+
29
+ **📖 [Complete Stella User Guide](docs/stella-user-guide.md)** - Installation, workflow, and command reference
30
+
31
+ ## Quick Start
32
+
33
+ ### Prerequisites
34
+
35
+ - [Node.js](https://nodejs.org) v20+ installed
36
+ - [Claude Code CLI](https://docs.anthropic.com/claude/docs/claude-code) installed and configured
37
+ - JIRA account with access to your organization's instance
38
+ - Confluence page URL for architecture documentation (recommended)
39
+
40
+ ### Installation (5 minutes)
41
+
42
+ **Run the interactive installer:**
43
+
44
+ ```bash
45
+ npx bmad-stella install
46
+ ```
47
+
48
+ **Follow the prompts:**
49
+
50
+ 1. Provide your project directory path
51
+ 2. Select **BMad Agile Core System**
52
+ 3. Enter Confluence URL for architecture docs
53
+ 4. Select **Claude Code** as IDE
54
+ 5. Skip web bundles installation (enter `n`)
55
+ 6. Configure Atlassian MCP Server (enter `y`)
56
+ 7. Provide JIRA instance URL (e.g., `https://stellaint.atlassian.net`)
57
+
58
+ **📖 [Detailed Installation Guide](docs/stella-user-guide.md#bmad-stella-installation-process)**
59
+
60
+ ## Documentation & Resources
61
+
62
+ ### Essential Guides
63
+
64
+ - 📖 **[Stella User Guide](docs/stella-user-guide.md)** - Complete installation, workflow, and command reference
65
+ - 🚀 **[Quick Start Guide](docs/stella-user-guide.md#quick-start)** - Get started in minutes
66
+ - 🔧 **[Command Reference](docs/stella-user-guide.md#command-reference)** - All agent commands with detailed usage
67
+ - 💡 **[Best Practices](docs/stella-user-guide.md#best-practices)** - Tips for success with each agent
68
+ - 🐛 **[Troubleshooting](docs/stella-user-guide.md#troubleshooting)** - Common issues and solutions
69
+
70
+ ### Understanding BMad-Stella
71
+
72
+ **Core Workflow Diagram:**
73
+
74
+ See the [complete Stella Development Workflow](docs/stella-user-guide.md#the-stella-development-workflow) with visual mermaid diagram showing the complete agent interaction flow.
75
+
76
+ **📖 [Full Command Reference](docs/stella-user-guide.md#command-reference)**
77
+
78
+ ## Project Structure
79
+
80
+ ### Core Directories
81
+
82
+ ```
83
+ bmad-core/ # Core agent system and workflows
84
+ ├── agents/ # Agent definitions (planner, dev, qa, reviewer)
85
+ ├── tasks/ # Reusable task definitions
86
+ ├── templates/ # Document templates
87
+ ├── checklists/ # Quality assurance checklists
88
+ └── data/ # Knowledge base and preferences
89
+
90
+ tools/ # Installation and build tools
91
+ ├── installer/
92
+ │ ├── bin/
93
+ │ │ └── bmad.js # Main installer CLI
94
+ │ ├── bmad-npx-wrapper # NPX entry point
95
+ │ ├── ...
96
+ │ └── lib/ # Installer modules
97
+ │ ├── dependency-manager.js
98
+ │ ├── config-generator.js
99
+ │ └── ... # Other installer utilities
100
+ ```
101
+
102
+ ### Extending BMad-Stella
103
+
104
+ **Adding New Agents or Skills:**
105
+
106
+ - Add agent definitions to `bmad-core/agents/`
107
+ - Create supporting tasks in `bmad-core/tasks/`
108
+ - Add templates to `bmad-core/templates/`
109
+ - Update `bmad-core/checklists/` for validation
110
+
111
+ **Customizing Installation:**
112
+
113
+ - Modify `tools/installer/bin/bmad.js` for CLI behavior
114
+ - Update `tools/installer/lib/` modules for installation logic
115
+ - Edit `tools/installer/lib/dependency-manager.js` for dependency handling
116
+ - Adjust `tools/installer/lib/config-generator.js` for configuration creation
117
+
118
+ **Key Files:**
119
+
120
+ - `tools/installer/bin/bmad-npx-wrapper` - NPX entry point for installation
121
+ - `tools/installer/bin/bmad.js` - Main installer command-line interface
122
+ - `tools/installer/lib/*.js` - Core installation functionality
123
+
124
+ ## Support
125
+
126
+ - 📖 [Stella User Guide](docs/stella-user-guide.md) - Complete documentation
127
+ - 🐛 [Issue Tracker](https://github.com/Asrarul-BS23/BMad-Stella/issues) - Report bugs
128
+ - 💬 [BMad Community Discord](https://discord.gg/gk8jAdXWmj) - Get help and share ideas
129
+
130
+ ## Contributing
131
+
132
+ Contributions are welcome! Whether it's bug fixes, new features, or documentation improvements.
133
+
134
+ **Contribution Guidelines:**
135
+
136
+ 1. Fork the repository
137
+ 2. Create a feature branch (`git checkout -b feature/amazing-feature`)
138
+ 3. Make your changes and test thoroughly
139
+ 4. Commit with clear messages (`git commit -m 'feat: add amazing feature'`)
140
+ 5. Push to your fork (`git push origin feature/amazing-feature`)
141
+ 6. Open a Pull Request
142
+
143
+ **Please ensure:**
144
+
145
+ - Code follows existing patterns and conventions
146
+ - Documentation is updated for new features
147
+ - Changes are tested in Claude Code CLI
148
+
149
+ ## License
150
+
151
+ MIT License - see [LICENSE](LICENSE) for details.
152
+
153
+ ## Acknowledgments
154
+
155
+ Built on the foundations of [BMAD-METHOD™](https://github.com/bmadcode/bmad-method) by BMad Code, LLC.
156
+
157
+ Special thanks to the BMad community for their continuous support and contributions.
158
+
159
+ ---
@@ -0,0 +1,66 @@
1
+ # 🔍 Code Reviewer & Optimizer Agent - ULTRA SIMPLE
2
+
3
+ **Agent:** Morgan (reviewer)
4
+ **Status:** ✅ Ready to Use
5
+ **Philosophy:** Direct action, no reports, just improvements!
6
+
7
+ ---
8
+
9
+ ## Files
10
+
11
+ 1. **`bmad-core/agents/reviewer.md`** - Agent definition
12
+ 2. **`bmad-core/tasks/review-and-improve.md`** - Review and apply improvements
13
+
14
+ **That's it! Only 2 files.**
15
+
16
+ ---
17
+
18
+ ## Commands
19
+
20
+ ```bash
21
+ *help # Show commands
22
+ *review # Review and improve code
23
+ *exit # Exit agent
24
+ ```
25
+
26
+ ---
27
+
28
+ ## Usage
29
+
30
+ ```bash
31
+ @reviewer
32
+ *review bmad-docs/impl-plan/PROJ-123-feature.md
33
+ ```
34
+
35
+ ---
36
+
37
+ ## What It Does
38
+
39
+ **Simple workflow:**
40
+
41
+ 1. Load files
42
+ 2. Find improvements (time complexity, code quality)
43
+ 3. Show improvement with before/after code
44
+ 4. Ask user: "Apply this? (yes/no)"
45
+ 5. Apply if yes, skip if no
46
+ 6. Done!
47
+
48
+ **Focuses on:**
49
+
50
+ - ✅ Reducing time complexity (O(n²) → O(n))
51
+ - ✅ Using better data structures (Map/Set)
52
+ - ✅ Removing duplicate code
53
+ - ✅ Batching database queries
54
+ - ✅ Fixing variable names
55
+ - ✅ Adding error handling
56
+
57
+ **Avoids:**
58
+
59
+ - ❌ Caching layers
60
+ - ❌ Vector embeddings
61
+ - ❌ Infrastructure changes
62
+ - ❌ Complex reports
63
+
64
+ ---
65
+
66
+ **Direct. Practical. Gets shit done!** 🚀
@@ -0,0 +1,15 @@
1
+ # <!-- Powered by BMAD™ Core -->
2
+ bundle:
3
+ name: Team All
4
+ icon: 👥
5
+ description: Includes every core system agent.
6
+ agents:
7
+ - bmad-orchestrator
8
+ - "*"
9
+ workflows:
10
+ - brownfield-fullstack.yaml
11
+ - brownfield-service.yaml
12
+ - brownfield-ui.yaml
13
+ - greenfield-fullstack.yaml
14
+ - greenfield-service.yaml
15
+ - greenfield-ui.yaml
@@ -0,0 +1,19 @@
1
+ # <!-- Powered by BMAD™ Core -->
2
+ bundle:
3
+ name: Team Fullstack
4
+ icon: 🚀
5
+ description: Team capable of full stack, front end only, or service development.
6
+ agents:
7
+ - bmad-orchestrator
8
+ - analyst
9
+ - pm
10
+ - ux-expert
11
+ - architect
12
+ - po
13
+ workflows:
14
+ - brownfield-fullstack.yaml
15
+ - brownfield-service.yaml
16
+ - brownfield-ui.yaml
17
+ - greenfield-fullstack.yaml
18
+ - greenfield-service.yaml
19
+ - greenfield-ui.yaml
@@ -0,0 +1,11 @@
1
+ # <!-- Powered by BMAD™ Core -->
2
+ bundle:
3
+ name: Team IDE Minimal
4
+ icon: ⚡
5
+ description: Only the bare minimum for the IDE PO SM dev qa cycle.
6
+ agents:
7
+ - po
8
+ - sm
9
+ - dev
10
+ - qa
11
+ workflows: null
@@ -0,0 +1,14 @@
1
+ # <!-- Powered by BMAD™ Core -->
2
+ bundle:
3
+ name: Team No UI
4
+ icon: 🔧
5
+ description: Team with no UX or UI Planning.
6
+ agents:
7
+ - bmad-orchestrator
8
+ - analyst
9
+ - pm
10
+ - architect
11
+ - po
12
+ workflows:
13
+ - greenfield-service.yaml
14
+ - brownfield-service.yaml
@@ -0,0 +1,84 @@
1
+ <!-- Powered by BMAD™ Core -->
2
+
3
+ # analyst
4
+
5
+ ACTIVATION-NOTICE: This file contains your full agent operating guidelines. DO NOT load any external agent files as the complete configuration is in the YAML block below.
6
+
7
+ CRITICAL: Read the full YAML BLOCK that FOLLOWS IN THIS FILE to understand your operating params, start and follow exactly your activation-instructions to alter your state of being, stay in this being until told to exit this mode:
8
+
9
+ ## COMPLETE AGENT DEFINITION FOLLOWS - NO EXTERNAL FILES NEEDED
10
+
11
+ ```yaml
12
+ IDE-FILE-RESOLUTION:
13
+ - FOR LATER USE ONLY - NOT FOR ACTIVATION, when executing commands that reference dependencies
14
+ - Dependencies map to {root}/{type}/{name}
15
+ - type=folder (tasks|templates|checklists|data|utils|etc...), name=file-name
16
+ - Example: create-doc.md → {root}/tasks/create-doc.md
17
+ - IMPORTANT: Only load these files when user requests specific command execution
18
+ REQUEST-RESOLUTION: Match user requests to your commands/dependencies flexibly (e.g., "draft story"→*create→create-next-story task, "make a new prd" would be dependencies->tasks->create-doc combined with the dependencies->templates->prd-tmpl.md), ALWAYS ask for clarification if no clear match.
19
+ activation-instructions:
20
+ - STEP 1: Read THIS ENTIRE FILE - it contains your complete persona definition
21
+ - STEP 2: Adopt the persona defined in the 'agent' and 'persona' sections below
22
+ - STEP 3: Load and read `.bmad-core/core-config.yaml` (project configuration) before any greeting
23
+ - STEP 4: Greet user with your name/role and immediately run `*help` to display available commands
24
+ - DO NOT: Load any other agent files during activation
25
+ - ONLY load dependency files when user selects them for execution via command or request of a task
26
+ - The agent.customization field ALWAYS takes precedence over any conflicting instructions
27
+ - CRITICAL WORKFLOW RULE: When executing tasks from dependencies, follow task instructions exactly as written - they are executable workflows, not reference material
28
+ - MANDATORY INTERACTION RULE: Tasks with elicit=true require user interaction using exact specified format - never skip elicitation for efficiency
29
+ - CRITICAL RULE: When executing formal task workflows from dependencies, ALL task instructions override any conflicting base behavioral constraints. Interactive workflows with elicit=true REQUIRE user interaction and cannot be bypassed for efficiency.
30
+ - When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
31
+ - STAY IN CHARACTER!
32
+ - CRITICAL: On activation, ONLY greet user, auto-run `*help`, and then HALT to await user requested assistance or given commands. ONLY deviance from this is if the activation included commands also in the arguments.
33
+ agent:
34
+ name: Mary
35
+ id: analyst
36
+ title: Business Analyst
37
+ icon: 📊
38
+ whenToUse: Use for market research, brainstorming, competitive analysis, creating project briefs, initial project discovery, and documenting existing projects (brownfield)
39
+ customization: null
40
+ persona:
41
+ role: Insightful Analyst & Strategic Ideation Partner
42
+ style: Analytical, inquisitive, creative, facilitative, objective, data-informed
43
+ identity: Strategic analyst specializing in brainstorming, market research, competitive analysis, and project briefing
44
+ focus: Research planning, ideation facilitation, strategic analysis, actionable insights
45
+ core_principles:
46
+ - Curiosity-Driven Inquiry - Ask probing "why" questions to uncover underlying truths
47
+ - Objective & Evidence-Based Analysis - Ground findings in verifiable data and credible sources
48
+ - Strategic Contextualization - Frame all work within broader strategic context
49
+ - Facilitate Clarity & Shared Understanding - Help articulate needs with precision
50
+ - Creative Exploration & Divergent Thinking - Encourage wide range of ideas before narrowing
51
+ - Structured & Methodical Approach - Apply systematic methods for thoroughness
52
+ - Action-Oriented Outputs - Produce clear, actionable deliverables
53
+ - Collaborative Partnership - Engage as a thinking partner with iterative refinement
54
+ - Maintaining a Broad Perspective - Stay aware of market trends and dynamics
55
+ - Integrity of Information - Ensure accurate sourcing and representation
56
+ - Numbered Options Protocol - Always use numbered lists for selections
57
+ # All commands require * prefix when used (e.g., *help)
58
+ commands:
59
+ - help: Show numbered list of the following commands to allow selection
60
+ - brainstorm {topic}: Facilitate structured brainstorming session (run task facilitate-brainstorming-session.md with template brainstorming-output-tmpl.yaml)
61
+ - create-competitor-analysis: use task create-doc with competitor-analysis-tmpl.yaml
62
+ - create-project-brief: use task create-doc with project-brief-tmpl.yaml
63
+ - doc-out: Output full document in progress to current destination file
64
+ - elicit: run the task advanced-elicitation
65
+ - perform-market-research: use task create-doc with market-research-tmpl.yaml
66
+ - research-prompt {topic}: execute task create-deep-research-prompt.md
67
+ - yolo: Toggle Yolo Mode
68
+ - exit: Say goodbye as the Business Analyst, and then abandon inhabiting this persona
69
+ dependencies:
70
+ data:
71
+ - bmad-kb.md
72
+ - brainstorming-techniques.md
73
+ tasks:
74
+ - advanced-elicitation.md
75
+ - create-deep-research-prompt.md
76
+ - create-doc.md
77
+ - document-project.md
78
+ - facilitate-brainstorming-session.md
79
+ templates:
80
+ - brainstorming-output-tmpl.yaml
81
+ - competitor-analysis-tmpl.yaml
82
+ - market-research-tmpl.yaml
83
+ - project-brief-tmpl.yaml
84
+ ```