@sugar-crash-studios/vibe-forge 0.4.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 (201) hide show
  1. package/.claude/commands/clear-attention.md +63 -0
  2. package/.claude/commands/compact-context.md +52 -0
  3. package/.claude/commands/configure-vcs.md +102 -0
  4. package/.claude/commands/forge.md +171 -0
  5. package/.claude/commands/need-help.md +77 -0
  6. package/.claude/commands/update-status.md +64 -0
  7. package/.claude/commands/worker-loop.md +106 -0
  8. package/.claude/hooks/worker-loop.js +198 -0
  9. package/.claude/scripts/setup-worker-loop.sh +45 -0
  10. package/.claude/settings.local.json +46 -0
  11. package/LICENSE +21 -0
  12. package/README.md +238 -0
  13. package/agents/aegis/personality.md +294 -0
  14. package/agents/anvil/personality.md +276 -0
  15. package/agents/architect/personality.md +258 -0
  16. package/agents/crucible/personality.md +360 -0
  17. package/agents/ember/personality.md +291 -0
  18. package/agents/forge-master/capabilities.md +144 -0
  19. package/agents/forge-master/context-template.md +128 -0
  20. package/agents/forge-master/personality.md +138 -0
  21. package/agents/furnace/personality.md +340 -0
  22. package/agents/herald/personality.md +247 -0
  23. package/agents/loki/personality.md +108 -0
  24. package/agents/oracle/personality.md +283 -0
  25. package/agents/pixel/personality.md +113 -0
  26. package/agents/planning-hub/personality.md +320 -0
  27. package/agents/scribe/personality.md +251 -0
  28. package/agents/temper/personality.md +218 -0
  29. package/bin/cli.js +375 -0
  30. package/bin/dashboard/api/agents.js +333 -0
  31. package/bin/dashboard/api/dispatch.js +483 -0
  32. package/bin/dashboard/api/tasks.js +416 -0
  33. package/bin/dashboard/frontend/index.html +13 -0
  34. package/bin/dashboard/frontend/package.json +16 -0
  35. package/bin/dashboard/frontend/src/App.svelte +222 -0
  36. package/bin/dashboard/frontend/src/app.css +1777 -0
  37. package/bin/dashboard/frontend/src/lib/components/AgentCard.svelte +60 -0
  38. package/bin/dashboard/frontend/src/lib/components/AgentsPanel.svelte +57 -0
  39. package/bin/dashboard/frontend/src/lib/components/DispatchModal.svelte +180 -0
  40. package/bin/dashboard/frontend/src/lib/components/Footer.svelte +33 -0
  41. package/bin/dashboard/frontend/src/lib/components/Header.svelte +84 -0
  42. package/bin/dashboard/frontend/src/lib/components/IssueCard.svelte +33 -0
  43. package/bin/dashboard/frontend/src/lib/components/IssuesPanel.svelte +73 -0
  44. package/bin/dashboard/frontend/src/lib/components/KeyboardShortcutsModal.svelte +108 -0
  45. package/bin/dashboard/frontend/src/lib/components/MobileTabs.svelte +52 -0
  46. package/bin/dashboard/frontend/src/lib/components/NotificationCard.svelte +60 -0
  47. package/bin/dashboard/frontend/src/lib/components/NotificationsPanel.svelte +44 -0
  48. package/bin/dashboard/frontend/src/lib/components/TaskCard.svelte +63 -0
  49. package/bin/dashboard/frontend/src/lib/components/TasksPanel.svelte +82 -0
  50. package/bin/dashboard/frontend/src/lib/components/Toast.svelte +45 -0
  51. package/bin/dashboard/frontend/src/lib/stores/agents.js +34 -0
  52. package/bin/dashboard/frontend/src/lib/stores/issues.js +54 -0
  53. package/bin/dashboard/frontend/src/lib/stores/notifications.js +48 -0
  54. package/bin/dashboard/frontend/src/lib/stores/tasks.js +63 -0
  55. package/bin/dashboard/frontend/src/lib/stores/theme.js +33 -0
  56. package/bin/dashboard/frontend/src/lib/stores/toast.js +35 -0
  57. package/bin/dashboard/frontend/src/lib/stores/ui.js +25 -0
  58. package/bin/dashboard/frontend/src/lib/stores/voice.js +275 -0
  59. package/bin/dashboard/frontend/src/lib/stores/websocket.js +295 -0
  60. package/bin/dashboard/frontend/src/lib/utils/api.js +101 -0
  61. package/bin/dashboard/frontend/src/lib/utils/formatters.js +54 -0
  62. package/bin/dashboard/frontend/src/main.js +9 -0
  63. package/bin/dashboard/frontend/svelte.config.js +5 -0
  64. package/bin/dashboard/frontend/vite.config.js +20 -0
  65. package/bin/dashboard/public/assets/index-DnfVj9Ce.css +1 -0
  66. package/bin/dashboard/public/assets/index-Ze5h0kXQ.js +2 -0
  67. package/bin/dashboard/public/index.html +14 -0
  68. package/bin/dashboard/server.js +566 -0
  69. package/bin/forge-daemon.sh +463 -0
  70. package/bin/forge-setup.sh +645 -0
  71. package/bin/forge-spawn.sh +164 -0
  72. package/bin/forge.cmd +83 -0
  73. package/bin/forge.sh +533 -0
  74. package/bin/lib/agents.sh +177 -0
  75. package/bin/lib/colors.sh +44 -0
  76. package/bin/lib/config.sh +347 -0
  77. package/bin/lib/constants.sh +241 -0
  78. package/bin/lib/daemon/display.sh +128 -0
  79. package/bin/lib/daemon/notifications.sh +263 -0
  80. package/bin/lib/daemon/routing.sh +77 -0
  81. package/bin/lib/daemon/state.sh +115 -0
  82. package/bin/lib/daemon/sync.sh +95 -0
  83. package/bin/lib/database.sh +310 -0
  84. package/bin/lib/heimdall-setup.js +113 -0
  85. package/bin/lib/heimdall.js +265 -0
  86. package/bin/lib/json.sh +264 -0
  87. package/bin/lib/terminal.js +451 -0
  88. package/bin/lib/util.sh +126 -0
  89. package/bin/lib/vcs.js +349 -0
  90. package/config/agent-manifest.yaml +203 -0
  91. package/config/agents.json +168 -0
  92. package/config/task-template.md +159 -0
  93. package/config/task-types.yaml +106 -0
  94. package/context/agent-status/aegis.json +7 -0
  95. package/context/agent-status/anvil.json +7 -0
  96. package/context/agent-status/architect.json +7 -0
  97. package/context/agent-status/crucible.json +7 -0
  98. package/context/agent-status/ember.json +7 -0
  99. package/context/agent-status/furnace.json +7 -0
  100. package/context/agent-status/loki.json +7 -0
  101. package/context/agent-status/oracle.json +7 -0
  102. package/context/agent-status/pixel.json +7 -0
  103. package/context/agent-status/planning-hub.json +7 -0
  104. package/context/agent-status/scribe.json +7 -0
  105. package/context/agent-status/temper.json +7 -0
  106. package/context/feature-brainstorm.md +426 -0
  107. package/context/forge-state.yaml +19 -0
  108. package/context/modern-conventions.md +129 -0
  109. package/context/project-context-template.md +122 -0
  110. package/context/project-context.md +122 -0
  111. package/docs/TODO.md +150 -0
  112. package/docs/agents.md +409 -0
  113. package/docs/architecture/decisions/ADR-001-daemon-modularization.md +122 -0
  114. package/docs/architecture/vibe-lab-integration.md +684 -0
  115. package/docs/architecture.md +194 -0
  116. package/docs/bmad-gap-analysis-2026-03-31.md +444 -0
  117. package/docs/cleanup-workflow.md +329 -0
  118. package/docs/commands.md +451 -0
  119. package/docs/dashboard-mockup.html +989 -0
  120. package/docs/getting-started.md +261 -0
  121. package/docs/integration/forge-ownership-policy.md +112 -0
  122. package/docs/npm-publishing.md +132 -0
  123. package/docs/roadmap-2026.md +519 -0
  124. package/docs/security.md +144 -0
  125. package/docs/wireframes/dashboard-mvp.md +1164 -0
  126. package/docs/workflows/README.md +32 -0
  127. package/docs/workflows/azure-devops.md +108 -0
  128. package/docs/workflows/bitbucket.md +104 -0
  129. package/docs/workflows/git-only.md +130 -0
  130. package/docs/workflows/gitea.md +168 -0
  131. package/docs/workflows/github.md +103 -0
  132. package/docs/workflows/gitlab.md +105 -0
  133. package/docs/workflows.md +454 -0
  134. package/package.json +73 -0
  135. package/tasks/completed/ARCH-001-duplicate-agent-config.md +121 -0
  136. package/tasks/completed/ARCH-002-mixed-bash-node-implementation.md +88 -0
  137. package/tasks/completed/ARCH-003-worker-loop-hook-duplication.md +77 -0
  138. package/tasks/completed/ARCH-009-test-organization.md +78 -0
  139. package/tasks/completed/ARCH-011-jq-vs-nodejs-json.md +94 -0
  140. package/tasks/completed/ARCH-012-tmp-files-in-root.md +71 -0
  141. package/tasks/completed/ARCH-013-exit-code-constants.md +65 -0
  142. package/tasks/completed/ARCH-014-sed-incompatibility.md +96 -0
  143. package/tasks/completed/ARCH-015-docs-todo-tracking.md +83 -0
  144. package/tasks/completed/BUG-dash-001-tasks-filter-error.md +31 -0
  145. package/tasks/completed/BUG-dash-002-agents-unknown.md +41 -0
  146. package/tasks/completed/CLEAN-001.md +38 -0
  147. package/tasks/completed/CLEAN-002.md +43 -0
  148. package/tasks/completed/CLEAN-003.md +47 -0
  149. package/tasks/completed/CLEAN-004.md +56 -0
  150. package/tasks/completed/CLEAN-005.md +75 -0
  151. package/tasks/completed/CLEAN-006.md +47 -0
  152. package/tasks/completed/CLEAN-007.md +34 -0
  153. package/tasks/completed/CLEAN-008.md +49 -0
  154. package/tasks/completed/CLEAN-012.md +58 -0
  155. package/tasks/completed/CLEAN-013.md +45 -0
  156. package/tasks/completed/FEATURE-001a-dashboard-wireframes.md +162 -0
  157. package/tasks/completed/IMPL-007a-daemon-notifications-module.md +82 -0
  158. package/tasks/completed/IMPL-007b-daemon-sync-module.md +71 -0
  159. package/tasks/completed/IMPL-007c-daemon-state-module.md +80 -0
  160. package/tasks/completed/IMPL-007d-daemon-routing-module.md +77 -0
  161. package/tasks/completed/IMPL-007e-daemon-display-module.md +77 -0
  162. package/tasks/completed/IMPL-007f-daemon-integration.md +124 -0
  163. package/tasks/completed/PLAT-1-heimdall.md +420 -0
  164. package/tasks/completed/SEC-001-sql-injection-fix.md +58 -0
  165. package/tasks/completed/SEC-002-notification-injection-fix.md +45 -0
  166. package/tasks/completed/SEC-003-eval-injection-fix.md +54 -0
  167. package/tasks/completed/SEC-004-pid-race-condition-fix.md +49 -0
  168. package/tasks/completed/SEC-005-worker-loop-path-fix.md +51 -0
  169. package/tasks/completed/SEC-006-eval-agent-names.md +55 -0
  170. package/tasks/completed/SEC-007-spawn-escaping.md +67 -0
  171. package/tasks/completed/TASK-DASH-001-server-infrastructure.md +185 -0
  172. package/tasks/completed/TASK-anvil-001-dashboard-frontend.md +133 -0
  173. package/tasks/completed/review-bmad-aegis.md +89 -0
  174. package/tasks/completed/review-bmad-anvil.md +80 -0
  175. package/tasks/completed/review-bmad-crucible.md +81 -0
  176. package/tasks/completed/review-bmad-ember.md +90 -0
  177. package/tasks/completed/review-bmad-furnace.md +79 -0
  178. package/tasks/completed/review-bmad-pixel.md +82 -0
  179. package/tasks/completed/review-bmad-scribe.md +92 -0
  180. package/tasks/completed/review-bmad-sentinel.md +83 -0
  181. package/tasks/pending/ARCH-004-git-bash-detection-duplication.md +72 -0
  182. package/tasks/pending/ARCH-005-missing-src-directory.md +95 -0
  183. package/tasks/pending/ARCH-006-task-template-location.md +64 -0
  184. package/tasks/pending/ARCH-008-forge-master-vs-hub.md +81 -0
  185. package/tasks/pending/ARCH-010-missing-index-files.md +84 -0
  186. package/tasks/pending/CLEAN-009.md +31 -0
  187. package/tasks/pending/CLEAN-010.md +30 -0
  188. package/tasks/pending/CLEAN-011.md +30 -0
  189. package/tasks/pending/CLEAN-014.md +32 -0
  190. package/tasks/pending/DESIGN-dash-001-layout-review.md +45 -0
  191. package/tasks/pending/FEATURE-001-dashboard-mvp.md +268 -0
  192. package/tasks/review/ARCH-007-daemon-monolith.md +162 -0
  193. package/tasks/review/bmad-review-aegis.md +349 -0
  194. package/tasks/review/bmad-review-anvil.md +259 -0
  195. package/tasks/review/bmad-review-crucible.md +277 -0
  196. package/tasks/review/bmad-review-ember.md +307 -0
  197. package/tasks/review/bmad-review-furnace.md +285 -0
  198. package/tasks/review/bmad-review-pixel.md +329 -0
  199. package/tasks/review/bmad-review-scribe.md +361 -0
  200. package/tasks/review/bmad-review-sentinel.md +242 -0
  201. package/tasks/review/task-001.md +78 -0
@@ -0,0 +1,90 @@
1
+ ---
2
+ id: review-bmad-ember
3
+ title: "BMAD vs Vibe Forge: DevOps & Infrastructure Review"
4
+ type: review
5
+ priority: high
6
+ status: completed
7
+ assigned_to: ember
8
+ blocked_by: []
9
+ depends_on: []
10
+ created: 2026-03-31T00:00:00-05:00
11
+ updated: 2026-03-31T00:00:00-05:00
12
+ estimated_complexity: medium
13
+ epic: BMAD-REVIEW
14
+ ---
15
+
16
+ # Context
17
+
18
+ ## Background
19
+ We are doing a comprehensive comparison of Vibe Forge (this framework) against BMAD-METHOD (https://github.com/bmad-code-org/BMAD-METHOD) to identify gaps and improvements to bring into Vibe Forge.
20
+
21
+ You are Ember - the DevOps/infrastructure specialist. Your job is to review BOTH frameworks through the lens of: CI/CD integration, deployment tooling, infrastructure-as-code support, automation quality, and how well each framework handles operational concerns.
22
+
23
+ ## Your Review Focus
24
+ 1. **CI/CD** - What GitHub Actions / CI workflows does Vibe Forge provide vs BMAD? What's missing?
25
+ 2. **Daemon architecture** - Review /bin/forge-daemon.sh in depth. How robust is it? What does BMAD's equivalent look like?
26
+ 3. **Cross-platform support** - How well does each framework handle Windows/Mac/Linux? What breaks?
27
+ 4. **Automation quality** - Review the forge shell scripts for robustness, error handling, idempotency.
28
+ 5. **Monitoring** - Does BMAD provide better monitoring/observability into agent activity?
29
+ 6. **Container support** - Does BMAD have Docker/container integration? Should Vibe Forge?
30
+ 7. **Environment management** - How does each framework handle different environments (dev/staging/prod)?
31
+ 8. **Release automation** - Compare Herald's capabilities to BMAD's release tooling.
32
+
33
+ ## Files to Read
34
+ - /agents/ember/personality.md (your own definition)
35
+ - /agents/herald/personality.md
36
+ - /bin/forge-daemon.sh
37
+ - /bin/forge.sh
38
+ - /bin/forge-setup.sh
39
+ - /.github/workflows/ (existing CI config)
40
+ - /bin/lib/ (all lib scripts)
41
+ - Then fetch and read BMAD: https://github.com/bmad-code-org/BMAD-METHOD
42
+
43
+ ---
44
+
45
+ # Acceptance Criteria
46
+
47
+ - [ ] Read all relevant scripts and CI configs
48
+ - [ ] Fetch and review BMAD repo
49
+ - [ ] Identify daemon/orchestration improvements
50
+ - [ ] Assess CI/CD gaps
51
+ - [ ] Write findings to tasks/review/bmad-review-ember.md
52
+
53
+ ---
54
+
55
+ # Agent Instructions
56
+
57
+ Ember: Infrastructure-first. Automate everything repeatable. Look at what Vibe Forge's operational story is vs BMAD's. What would break in production? What needs monitoring? What can't be repeated reliably?
58
+
59
+ **Boundaries:**
60
+ - DO read: all scripts, CI configs, BMAD repo (via web fetch)
61
+ - DO write: tasks/review/bmad-review-ember.md
62
+ - DO NOT modify: any framework files
63
+
64
+ **On Completion:**
65
+ 1. Write your findings to tasks/review/bmad-review-ember.md
66
+ 2. Move this file to /tasks/completed/
67
+
68
+ ---
69
+
70
+ # Output Expected
71
+
72
+ - [ ] tasks/review/bmad-review-ember.md created with findings
73
+ - [ ] Daemon robustness assessment
74
+ - [ ] CI/CD and automation gap analysis
75
+
76
+ ---
77
+
78
+ # Completion Summary
79
+ ```yaml
80
+ completed_by: ember
81
+ completed_at: 2026-03-31T00:00:00Z
82
+ files_created:
83
+ - tasks/review/bmad-review-ember.md
84
+ notes: >
85
+ Reviewed forge-daemon.sh, forge.sh, forge-setup.sh, all CI workflows,
86
+ bin/lib/constants.sh, bin/lib/database.sh. Fetched BMAD-METHOD v6.2.2.
87
+ Identified 13 actionable gaps across CI/CD, daemon robustness, and
88
+ cross-platform support. P1 items include macOS date bug, Windows stat bug,
89
+ dead status_history wiring, and missing .nvmrc.
90
+ ```
@@ -0,0 +1,79 @@
1
+ ---
2
+ id: review-bmad-furnace
3
+ title: "BMAD vs Vibe Forge: Backend/Infrastructure Review"
4
+ type: review
5
+ priority: high
6
+ status: pending
7
+ assigned_to: furnace
8
+ blocked_by: []
9
+ depends_on: []
10
+ created: 2026-03-31T00:00:00-05:00
11
+ updated: 2026-03-31T00:00:00-05:00
12
+ estimated_complexity: medium
13
+ epic: BMAD-REVIEW
14
+ ---
15
+
16
+ # Context
17
+
18
+ ## Background
19
+ We are doing a comprehensive comparison of Vibe Forge (this framework) against BMAD-METHOD (https://github.com/bmad-code-org/BMAD-METHOD) to identify gaps and improvements to bring into Vibe Forge.
20
+
21
+ You are Furnace - the backend dev. Your job is to review BOTH frameworks through the lens of: backend agent capabilities, API/service project support, data flow, task system internals, and how well each framework supports backend-heavy projects.
22
+
23
+ ## Your Review Focus
24
+ 1. **Backend agent** - Compare your own personality/capabilities vs BMAD's equivalent. What does BMAD's backend agent do that yours doesn't?
25
+ 2. **Task data model** - How does Vibe Forge's task format (config/task-template.md) compare to BMAD's? What metadata is missing? What's better?
26
+ 3. **API/service project scaffolding** - Does BMAD provide better templates or patterns for backend projects?
27
+ 4. **Data flow between agents** - How does each framework handle agent-to-agent data passing? What's more robust?
28
+ 5. **Error handling patterns** - Does BMAD have opinions on how agents should handle failures, blockers, and edge cases?
29
+ 6. **Daemon/orchestration** - Compare Vibe Forge's daemon (bin/forge-daemon.sh) to BMAD's equivalent orchestration. What's missing?
30
+
31
+ ## Files to Read
32
+ - /agents/furnace/personality.md (your own definition)
33
+ - /bin/forge-daemon.sh (orchestration daemon)
34
+ - /config/task-template.md and task-types.yaml
35
+ - /bin/lib/ (all lib scripts)
36
+ - Then fetch and read BMAD: https://github.com/bmad-code-org/BMAD-METHOD
37
+
38
+ ---
39
+
40
+ # Acceptance Criteria
41
+
42
+ - [ ] Read your own personality file and BMAD's equivalent agent
43
+ - [ ] Fetch and review the BMAD repo
44
+ - [ ] Identify 3-5 specific improvements to the task system or backend agent
45
+ - [ ] Evaluate the daemon/orchestration gap
46
+ - [ ] Write findings to tasks/review/bmad-review-furnace.md
47
+
48
+ ---
49
+
50
+ # Agent Instructions
51
+
52
+ Furnace: Think in data flows, error states, and system contracts. Be specific about what's broken or missing vs what just needs improvement. Reference actual files.
53
+
54
+ **Boundaries:**
55
+ - DO read: all agent files, daemon scripts, task templates, BMAD repo (via web fetch)
56
+ - DO write: tasks/review/bmad-review-furnace.md
57
+ - DO NOT modify: any framework files
58
+
59
+ **On Completion:**
60
+ 1. Write your findings to tasks/review/bmad-review-furnace.md
61
+ 2. Move this file to /tasks/completed/
62
+
63
+ ---
64
+
65
+ # Output Expected
66
+
67
+ - [ ] tasks/review/bmad-review-furnace.md created with findings
68
+ - [ ] Task system gap analysis
69
+ - [ ] Daemon/orchestration improvement recommendations
70
+
71
+ ---
72
+
73
+ # Completion Summary
74
+ ```yaml
75
+ completed_by: null
76
+ completed_at: null
77
+ files_created: []
78
+ notes: ""
79
+ ```
@@ -0,0 +1,82 @@
1
+ ---
2
+ id: review-bmad-pixel
3
+ title: "BMAD vs Vibe Forge: UX & User Experience Review"
4
+ type: review
5
+ priority: high
6
+ status: completed
7
+ assigned_to: pixel
8
+ blocked_by: []
9
+ depends_on: []
10
+ created: 2026-03-31T00:00:00-05:00
11
+ updated: 2026-03-31T00:00:00-05:00
12
+ estimated_complexity: medium
13
+ epic: BMAD-REVIEW
14
+ ---
15
+
16
+ # Context
17
+
18
+ ## Background
19
+ We are doing a comprehensive comparison of Vibe Forge (this framework) against BMAD-METHOD (https://github.com/bmad-code-org/BMAD-METHOD) to identify gaps and improvements to bring into Vibe Forge.
20
+
21
+ You are Pixel - the UX specialist. Your job is to review BOTH frameworks through the lens of: developer experience, user flows, clarity of mental models, how intuitive each framework is to use, and how well each framework supports UX-focused projects.
22
+
23
+ ## Your Review Focus
24
+ 1. **Developer experience (DX)** - How does it feel to use each framework day-to-day? What friction exists?
25
+ 2. **Mental model clarity** - Do the agent names, roles, and interactions make intuitive sense? Which framework's mental model is easier to grasp?
26
+ 3. **Command design** - Compare the CLI UX of both frameworks. What's more intuitive?
27
+ 4. **Dashboard UX** - How well does Vibe Forge's dashboard serve users? What does BMAD provide for visibility?
28
+ 5. **Onboarding flow** - Which framework gets you productive faster without confusion?
29
+ 6. **Error messages and feedback** - How well does each framework communicate state, errors, and progress to the developer?
30
+ 7. **Agent personality UX** - Do the agent personalities in each framework create a pleasant working experience?
31
+ 8. **UX project support** - Does BMAD have better support for UX/design work than Vibe Forge?
32
+
33
+ ## Files to Read
34
+ - /agents/pixel/personality.md (your own definition)
35
+ - /agents/planning-hub/personality.md (hub interaction design)
36
+ - /bin/dashboard/ (current dashboard)
37
+ - /README.md
38
+ - Then fetch and read BMAD: https://github.com/bmad-code-org/BMAD-METHOD
39
+
40
+ ---
41
+
42
+ # Acceptance Criteria
43
+
44
+ - [ ] Read your own personality and the hub personality
45
+ - [ ] Fetch and review BMAD repo
46
+ - [ ] Map out the user flow for both frameworks
47
+ - [ ] Identify top UX friction points in Vibe Forge
48
+ - [ ] Write findings to tasks/review/bmad-review-pixel.md
49
+
50
+ ---
51
+
52
+ # Agent Instructions
53
+
54
+ Pixel: Think like the developer using the framework, not the developer building it. Every click, command, and interaction is a UX decision. Where does each framework confuse or delight?
55
+
56
+ **Boundaries:**
57
+ - DO read: all agent files, dashboard, README, BMAD repo (via web fetch)
58
+ - DO write: tasks/review/bmad-review-pixel.md
59
+ - DO NOT modify: any framework files
60
+
61
+ **On Completion:**
62
+ 1. Write your findings to tasks/review/bmad-review-pixel.md
63
+ 2. Move this file to /tasks/completed/
64
+
65
+ ---
66
+
67
+ # Output Expected
68
+
69
+ - [ ] tasks/review/bmad-review-pixel.md created with findings
70
+ - [ ] DX comparison
71
+ - [ ] Top friction points and recommendations
72
+
73
+ ---
74
+
75
+ # Completion Summary
76
+ ```yaml
77
+ completed_by: pixel
78
+ completed_at: 2026-03-31T00:00:00Z
79
+ files_created:
80
+ - tasks/review/bmad-review-pixel.md
81
+ notes: "Comprehensive UX/DX comparison of BMAD vs Vibe Forge. Fetched live BMAD repo. Identified P0 README agent name inconsistency. Key recommendation: build forge-help command and celebrate the dashboard as hero feature."
82
+ ```
@@ -0,0 +1,92 @@
1
+ ---
2
+ id: review-bmad-scribe
3
+ title: "BMAD vs Vibe Forge: Documentation Quality Review"
4
+ type: review
5
+ priority: high
6
+ status: pending
7
+ assigned_to: scribe
8
+ blocked_by: []
9
+ depends_on: []
10
+ created: 2026-03-31T00:00:00-05:00
11
+ updated: 2026-03-31T00:00:00-05:00
12
+ estimated_complexity: medium
13
+ epic: BMAD-REVIEW
14
+ ---
15
+
16
+ # Context
17
+
18
+ ## Background
19
+ We are doing a comprehensive comparison of Vibe Forge (this framework) against BMAD-METHOD (https://github.com/bmad-code-org/BMAD-METHOD) to identify gaps and improvements to bring into Vibe Forge.
20
+
21
+ You are Scribe - the documentation specialist. Your job is to review BOTH frameworks through the lens of: documentation quality, onboarding experience, template completeness, and how well each framework communicates its concepts.
22
+
23
+ ## Your Review Focus
24
+ 1. **Onboarding** - How does a new developer get started with each framework? What's the first-run experience?
25
+ 2. **README quality** - Compare READMEs. Which is clearer, more complete, better structured?
26
+ 3. **Agent documentation** - How well are the agents documented? Do users know what each agent does and when to use it?
27
+ 4. **Template completeness** - Compare the task template, context templates, and any other templates. What's missing in Vibe Forge?
28
+ 5. **Example projects** - Does BMAD provide examples that Vibe Forge doesn't?
29
+ 6. **Concept documentation** - Does BMAD explain its methodology more clearly than Vibe Forge?
30
+ 7. **In-code documentation** - Compare inline comments and docstrings between the frameworks.
31
+ 8. **Context template** - Compare /context/project-context-template.md to BMAD's equivalent. What questions does BMAD ask that Vibe Forge doesn't?
32
+
33
+ ## Files to Read
34
+ - /README.md
35
+ - /context/project-context-template.md
36
+ - /config/task-template.md
37
+ - /agents/scribe/personality.md (your own definition)
38
+ - /docs/ (any existing docs)
39
+ - Then fetch and read BMAD: https://github.com/bmad-code-org/BMAD-METHOD
40
+
41
+ ---
42
+
43
+ # Acceptance Criteria
44
+
45
+ - [x] Read Vibe Forge's documentation completely
46
+ - [x] Fetch and review BMAD's documentation
47
+ - [x] Identify 5+ specific documentation improvements
48
+ - [x] Compare template quality and completeness
49
+ - [x] Write findings to tasks/review/bmad-review-scribe.md
50
+
51
+ ---
52
+
53
+ # Agent Instructions
54
+
55
+ Scribe: Think about the newcomer experience. If someone had never used either framework, which would get them productive faster? What confusion would each cause? Documentation is teaching - evaluate how well each framework teaches.
56
+
57
+ **Boundaries:**
58
+ - DO read: all docs, templates, README files, BMAD repo (via web fetch)
59
+ - DO write: tasks/review/bmad-review-scribe.md
60
+ - DO NOT modify: any framework files
61
+
62
+ **On Completion:**
63
+ 1. Write your findings to tasks/review/bmad-review-scribe.md
64
+ 2. Move this file to /tasks/completed/
65
+
66
+ ---
67
+
68
+ # Output Expected
69
+
70
+ - [x] tasks/review/bmad-review-scribe.md created with findings
71
+ - [x] Onboarding experience comparison
72
+ - [x] Template improvement recommendations
73
+
74
+ ---
75
+
76
+ # Completion Summary
77
+ ```yaml
78
+ completed_by: scribe
79
+ completed_at: 2026-03-31T06:30:00Z
80
+ duration_minutes: 35
81
+ files_created:
82
+ - tasks/review/bmad-review-scribe.md
83
+ notes: >
84
+ Reviewed README, getting-started.md, agents.md, commands.md, architecture.md,
85
+ project-context-template.md, task-template.md, and scribe personality.md.
86
+ Fetched and analyzed BMAD-METHOD GitHub repo structure, README, workflow map,
87
+ agent definitions, and docs organization. Identified 12 specific improvements
88
+ across 4 priority levels. Key finding: 25-point documentation quality gap,
89
+ concentrated in methodology docs, context template quality, and missing
90
+ root-level files (CONTRIBUTING.md, CHANGELOG.md).
91
+ ready_for_review: true
92
+ ```
@@ -0,0 +1,83 @@
1
+ ---
2
+ id: review-bmad-sentinel
3
+ title: "BMAD vs Vibe Forge: Architecture & Code Quality Review"
4
+ type: review
5
+ priority: high
6
+ status: completed
7
+ assigned_to: sentinel
8
+ blocked_by: []
9
+ depends_on: []
10
+ created: 2026-03-31T00:00:00-05:00
11
+ updated: 2026-03-31T00:00:00-05:00
12
+ estimated_complexity: medium
13
+ epic: BMAD-REVIEW
14
+ ---
15
+
16
+ # Context
17
+
18
+ ## Background
19
+ We are doing a comprehensive comparison of Vibe Forge (this framework) against BMAD-METHOD (https://github.com/bmad-code-org/BMAD-METHOD) to identify gaps and improvements to bring into Vibe Forge.
20
+
21
+ You are Sentinel - the code reviewer. Your job is to review BOTH frameworks with adversarial scrutiny: architecture quality, code cleanliness, security posture, agent prompt quality, and overall framework robustness.
22
+
23
+ ## Your Review Focus
24
+ 1. **Architecture** - Is Vibe Forge's architecture sound? What does BMAD do structurally that's better or worse?
25
+ 2. **Prompt engineering quality** - Compare agent personality files side by side. Which are more effective prompts? What techniques does BMAD use that Vibe Forge doesn't?
26
+ 3. **Security** - Are there security issues in Vibe Forge's scripts or agent design that BMAD handles better?
27
+ 4. **Code quality** - Review the bash scripts, node.js code, and configuration files in Vibe Forge for quality issues.
28
+ 5. **Agent boundary enforcement** - Does BMAD do a better job constraining what agents can/can't do?
29
+ 6. **Consistency** - Are the agent personalities consistent with each other? Do they have conflicting instructions?
30
+ 7. **What's missing** - What critical components does BMAD have that Vibe Forge simply doesn't have at all?
31
+
32
+ ## Files to Read
33
+ - ALL files in /agents/ (every personality file)
34
+ - /bin/forge-daemon.sh
35
+ - /bin/cli.js
36
+ - /config/agents.json
37
+ - /config/task-template.md
38
+ - /bin/lib/ (all lib files)
39
+ - Then fetch and read BMAD: https://github.com/bmad-code-org/BMAD-METHOD
40
+
41
+ ---
42
+
43
+ # Acceptance Criteria
44
+
45
+ - [ ] Read ALL agent personality files
46
+ - [ ] Fetch and review the BMAD repo thoroughly
47
+ - [ ] Give an honest architectural verdict on Vibe Forge
48
+ - [ ] Identify top 5 most critical gaps
49
+ - [ ] Write findings to tasks/review/bmad-review-sentinel.md
50
+
51
+ ---
52
+
53
+ # Agent Instructions
54
+
55
+ Sentinel: Don't pull punches. Find problems others rationalized away. Every system hides at least one critical flaw - find Vibe Forge's. Be adversarial toward both frameworks equally.
56
+
57
+ **Boundaries:**
58
+ - DO read: everything in the repo, BMAD repo (via web fetch)
59
+ - DO write: tasks/review/bmad-review-sentinel.md
60
+ - DO NOT modify: any framework files
61
+
62
+ **On Completion:**
63
+ 1. Write your findings to tasks/review/bmad-review-sentinel.md
64
+ 2. Move this file to /tasks/completed/
65
+
66
+ ---
67
+
68
+ # Output Expected
69
+
70
+ - [ ] tasks/review/bmad-review-sentinel.md created with findings
71
+ - [ ] Honest architectural assessment
72
+ - [ ] Top critical gaps ranked by impact
73
+
74
+ ---
75
+
76
+ # Completion Summary
77
+ ```yaml
78
+ completed_by: sentinel
79
+ completed_at: 2026-03-31T00:00:00Z
80
+ files_created:
81
+ - tasks/review/bmad-review-sentinel.md
82
+ notes: "14 issues found (5 critical, 5 important, 4 minor). Top critical: eval injection risk, design alias collision, missing planning pipeline, no token management, constants.sh sync drift."
83
+ ```
@@ -0,0 +1,72 @@
1
+ ---
2
+ id: ARCH-004
3
+ title: "Consolidate Git Bash detection logic"
4
+ type: architecture
5
+ priority: low
6
+ assigned_to: architect
7
+ created_at: 2026-01-15T17:00:00Z
8
+ created_by: architect-review
9
+ ---
10
+
11
+ ## Summary
12
+ Git Bash path detection is implemented in four different places with slightly different logic and paths checked.
13
+
14
+ ## Current State
15
+ Git Bash detection exists in:
16
+
17
+ 1. **bin/cli.js** - getBashPath() function (lines 105-136)
18
+ - Checks 3 hardcoded paths
19
+ - Uses `where git` fallback
20
+ - Returns null if not found
21
+
22
+ 2. **bin/forge.cmd** - Batch script (lines 42-74)
23
+ - Checks 4 hardcoded paths (different from cli.js)
24
+ - Uses `where git` fallback
25
+ - Shows error if not found
26
+
27
+ 3. **bin/forge-setup.sh** - find_git_bash() function (lines 59-134)
28
+ - Checks 6+ paths including $LOCALAPPDATA
29
+ - Uses `where git` fallback
30
+ - Offers to install via winget
31
+
32
+ 4. **bin/lib/terminal.js** - findGitBash() function (lines 195-223)
33
+ - Checks 3 hardcoded paths
34
+ - Uses `where git` fallback
35
+ - Returns null if not found
36
+
37
+ Problems:
38
+ - Different paths checked in each implementation
39
+ - Logic duplicated 4 times
40
+ - Different fallback behaviors
41
+ - D: drive paths only in some implementations
42
+ - $LOCALAPPDATA only in some implementations
43
+
44
+ ## Proposed State
45
+ Single shared implementation:
46
+
47
+ 1. Create `bin/lib/git-bash.js` with comprehensive path detection
48
+ 2. Export for use in cli.js and terminal.js
49
+ 3. Provide bash-callable interface for shell scripts
50
+ 4. Or: store detected path in config, read from all scripts
51
+
52
+ ## Affected Files
53
+ - G:\dev\vibe-forge\bin\cli.js
54
+ - G:\dev\vibe-forge\bin\forge.cmd
55
+ - G:\dev\vibe-forge\bin\forge-setup.sh
56
+ - G:\dev\vibe-forge\bin\lib\terminal.js
57
+
58
+ ## Migration/Remediation Steps
59
+ 1. Create unified git-bash.js module with all known paths
60
+ 2. Export as CLI: `node git-bash.js` -> outputs path
61
+ 3. Update cli.js to use shared module
62
+ 4. Update terminal.js to use shared module
63
+ 5. Update forge-setup.sh to call Node.js module
64
+ 6. Update forge.cmd to read from config (set during init)
65
+ 7. Ensure all 6+ paths are checked consistently
66
+
67
+ ## Acceptance Criteria
68
+ - [ ] Single source of truth for Git Bash detection
69
+ - [ ] All known paths (C:, D:, LOCALAPPDATA) checked consistently
70
+ - [ ] Detection works from bash and Node.js
71
+ - [ ] All tests passing
72
+ - [ ] Windows functionality unchanged
@@ -0,0 +1,95 @@
1
+ ---
2
+ id: ARCH-005
3
+ title: "Establish proper source code organization with src/ directory"
4
+ type: architecture
5
+ priority: low
6
+ assigned_to: architect
7
+ created_at: 2026-01-15T17:00:00Z
8
+ created_by: architect-review
9
+ ---
10
+
11
+ ## Summary
12
+ The codebase lacks a conventional src/ directory structure. All source files are in bin/ or bin/lib/, mixing executable entry points with library code.
13
+
14
+ ## Current State
15
+ Current structure:
16
+ ```
17
+ bin/
18
+ cli.js <- Entry point
19
+ forge.sh <- Entry point
20
+ forge.cmd <- Entry point
21
+ forge-setup.sh <- Could be library
22
+ forge-spawn.sh <- Could be library
23
+ forge-daemon.sh <- Could be library
24
+ lib/
25
+ colors.sh <- Library
26
+ constants.sh <- Library
27
+ config.sh <- Library
28
+ agents.sh <- Library
29
+ database.sh <- Library
30
+ terminal.js <- Library
31
+ ```
32
+
33
+ Problems:
34
+ - Entry points mixed with implementation files
35
+ - No clear distinction between bin/ (executables) and src/ (source)
36
+ - .gitignore references src/ as a tool internal (line 232) but no src/ exists
37
+ - Node convention is bin/ for CLI entry points, src/ for implementation
38
+
39
+ ## Proposed State
40
+ Reorganize to:
41
+ ```
42
+ bin/
43
+ cli.js <- Entry point (thin wrapper)
44
+ forge <- Symlink or wrapper to src/cli/forge.sh
45
+ src/
46
+ cli/
47
+ forge.sh <- Main CLI implementation
48
+ setup.sh <- Setup logic
49
+ spawn.sh <- Spawn logic
50
+ daemon.sh <- Daemon logic
51
+ lib/
52
+ colors.sh <- Shared utilities
53
+ constants.sh <- Constants
54
+ config.sh <- Config utilities
55
+ agents.sh <- Agent utilities
56
+ database.sh <- DB utilities
57
+ terminal.js <- Terminal utilities
58
+ git-bash.js <- Git bash detection
59
+ ```
60
+
61
+ Or for Node.js migration:
62
+ ```
63
+ bin/
64
+ vibe-forge.js <- CLI entry point
65
+ src/
66
+ cli/
67
+ index.js <- Command routing
68
+ init.js <- Init command
69
+ start.js <- Start command
70
+ spawn.js <- Spawn command
71
+ lib/
72
+ config.js
73
+ agents.js
74
+ terminal.js
75
+ ```
76
+
77
+ ## Affected Files
78
+ - All files in G:\dev\vibe-forge\bin\
79
+ - G:\dev\vibe-forge\package.json (files array)
80
+
81
+ ## Migration/Remediation Steps
82
+ 1. Create src/ directory
83
+ 2. Move bin/lib/* to src/lib/
84
+ 3. Update imports/sources in bin/*.sh scripts
85
+ 4. Update package.json files array if needed
86
+ 5. Ensure tests still work
87
+ 6. Update documentation
88
+
89
+ ## Acceptance Criteria
90
+ - [ ] Clear separation between entry points and implementation
91
+ - [ ] src/ directory exists with organized code
92
+ - [ ] bin/ contains only entry point wrappers
93
+ - [ ] All imports updated
94
+ - [ ] Tests passing
95
+ - [ ] Documentation updated
@@ -0,0 +1,64 @@
1
+ ---
2
+ id: ARCH-006
3
+ title: "Move task-template.md to templates directory"
4
+ type: architecture
5
+ priority: low
6
+ assigned_to: architect
7
+ created_at: 2026-01-15T17:00:00Z
8
+ created_by: architect-review
9
+ ---
10
+
11
+ ## Summary
12
+ Task template is stored in config/ but is not a configuration file - it's a template. Should be in a dedicated templates directory.
13
+
14
+ ## Current State
15
+ ```
16
+ config/
17
+ agents.json <- Configuration
18
+ agent-manifest.yaml <- Configuration (or docs)
19
+ task-types.yaml <- Configuration
20
+ task-template.md <- Template (not config!)
21
+ ```
22
+
23
+ The task-template.md is referenced from:
24
+ - .claude/commands/forge.md (line 124): `@_vibe-forge/config/task-template.md`
25
+
26
+ ## Proposed State
27
+ Create templates/ directory:
28
+ ```
29
+ config/
30
+ agents.json
31
+ task-types.yaml
32
+ templates/
33
+ task-template.md
34
+ project-context-template.md <- Move from context/
35
+ ```
36
+
37
+ Or alternatively, rename to config/templates/:
38
+ ```
39
+ config/
40
+ agents.json
41
+ task-types.yaml
42
+ templates/
43
+ task.md
44
+ project-context.md
45
+ ```
46
+
47
+ ## Affected Files
48
+ - G:\dev\vibe-forge\config\task-template.md
49
+ - G:\dev\vibe-forge\context\project-context-template.md
50
+ - G:\dev\vibe-forge\.claude\commands\forge.md
51
+
52
+ ## Migration/Remediation Steps
53
+ 1. Create templates/ directory
54
+ 2. Move config/task-template.md to templates/
55
+ 3. Move context/project-context-template.md to templates/
56
+ 4. Update reference in .claude/commands/forge.md
57
+ 5. Update any other references (forge-setup.sh uses context template)
58
+ 6. Update package.json files array if needed
59
+
60
+ ## Acceptance Criteria
61
+ - [ ] Templates in dedicated templates/ directory
62
+ - [ ] All references updated
63
+ - [ ] Functionality unchanged
64
+ - [ ] Package includes templates directory