vibe-forge 0.4.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/.claude/commands/clear-attention.md +63 -63
  2. package/.claude/commands/compact-context.md +52 -0
  3. package/.claude/commands/configure-vcs.md +102 -102
  4. package/.claude/commands/forge.md +218 -171
  5. package/.claude/commands/need-help.md +77 -77
  6. package/.claude/commands/update-status.md +64 -64
  7. package/.claude/commands/worker-loop.md +106 -106
  8. package/.claude/hooks/worker-loop.js +217 -187
  9. package/.claude/scripts/setup-worker-loop.sh +45 -45
  10. package/.claude/settings.json +89 -0
  11. package/LICENSE +21 -21
  12. package/README.md +253 -232
  13. package/agents/aegis/personality.md +303 -269
  14. package/agents/anvil/personality.md +278 -240
  15. package/agents/architect/personality.md +260 -234
  16. package/agents/crucible/personality.md +362 -309
  17. package/agents/crucible-x/personality.md +210 -0
  18. package/agents/ember/personality.md +293 -265
  19. package/agents/flux/personality.md +248 -0
  20. package/agents/furnace/personality.md +342 -291
  21. package/agents/herald/personality.md +249 -247
  22. package/agents/loki/personality.md +108 -0
  23. package/agents/oracle/personality.md +284 -0
  24. package/agents/pixel/personality.md +140 -0
  25. package/agents/planning-hub/personality.md +473 -251
  26. package/agents/scribe/personality.md +253 -251
  27. package/agents/slag/personality.md +268 -0
  28. package/agents/temper/personality.md +270 -0
  29. package/bin/cli.js +372 -325
  30. package/bin/dashboard/api/agents.js +333 -0
  31. package/bin/dashboard/api/dispatch.js +507 -0
  32. package/bin/dashboard/api/tasks.js +416 -0
  33. package/bin/dashboard/public/assets/index-BpHfsx1r.js +2 -0
  34. package/bin/dashboard/public/assets/index-QODv4Zn9.css +1 -0
  35. package/bin/dashboard/public/index.html +14 -0
  36. package/bin/dashboard/server.js +645 -0
  37. package/bin/forge-daemon.sh +477 -851
  38. package/bin/forge-setup.sh +661 -645
  39. package/bin/forge-spawn.sh +164 -164
  40. package/bin/forge.cmd +83 -83
  41. package/bin/forge.sh +566 -387
  42. package/bin/lib/agents.sh +177 -177
  43. package/bin/lib/check-aliases.js +50 -0
  44. package/bin/lib/colors.sh +44 -44
  45. package/bin/lib/config.sh +347 -313
  46. package/bin/lib/constants.sh +241 -206
  47. package/bin/lib/daemon/budgets.sh +107 -0
  48. package/bin/lib/daemon/dependencies.sh +146 -0
  49. package/bin/lib/daemon/display.sh +128 -0
  50. package/bin/lib/daemon/notifications.sh +273 -0
  51. package/bin/lib/daemon/routing.sh +93 -0
  52. package/bin/lib/daemon/state.sh +163 -0
  53. package/bin/lib/daemon/sync.sh +103 -0
  54. package/bin/lib/database.sh +357 -305
  55. package/bin/lib/frontmatter.js +106 -0
  56. package/bin/lib/heimdall-setup.js +113 -0
  57. package/bin/lib/heimdall.js +265 -0
  58. package/bin/lib/json.sh +264 -258
  59. package/bin/lib/terminal.js +452 -446
  60. package/bin/lib/util.sh +126 -126
  61. package/bin/lib/vcs.js +349 -349
  62. package/config/agent-manifest.yaml +237 -243
  63. package/config/agents.json +207 -132
  64. package/config/task-template.md +159 -87
  65. package/config/task-types.yaml +111 -106
  66. package/config/templates/handoff-template.md +40 -0
  67. package/context/agent-overrides/README.md +41 -0
  68. package/context/architecture.md +42 -0
  69. package/context/modern-conventions.md +129 -129
  70. package/context/project-context-template.md +122 -122
  71. package/docs/agents.md +473 -409
  72. package/docs/architecture.md +194 -162
  73. package/docs/commands.md +451 -388
  74. package/docs/security.md +195 -144
  75. package/package.json +77 -50
  76. package/.claude/settings.local.json +0 -33
  77. package/agents/forge-master/capabilities.md +0 -144
  78. package/agents/forge-master/context-template.md +0 -128
  79. package/agents/forge-master/personality.md +0 -138
  80. package/agents/sentinel/personality.md +0 -194
  81. package/context/forge-state.yaml +0 -19
  82. package/docs/TODO.md +0 -150
  83. package/docs/getting-started.md +0 -243
  84. package/docs/npm-publishing.md +0 -95
  85. package/docs/workflows/README.md +0 -32
  86. package/docs/workflows/azure-devops.md +0 -108
  87. package/docs/workflows/bitbucket.md +0 -104
  88. package/docs/workflows/git-only.md +0 -130
  89. package/docs/workflows/gitea.md +0 -168
  90. package/docs/workflows/github.md +0 -103
  91. package/docs/workflows/gitlab.md +0 -105
  92. package/docs/workflows.md +0 -454
  93. package/tasks/completed/ARCH-001-duplicate-agent-config.md +0 -121
  94. package/tasks/completed/ARCH-002-mixed-bash-node-implementation.md +0 -88
  95. package/tasks/completed/ARCH-003-worker-loop-hook-duplication.md +0 -77
  96. package/tasks/completed/ARCH-009-test-organization.md +0 -78
  97. package/tasks/completed/ARCH-011-jq-vs-nodejs-json.md +0 -94
  98. package/tasks/completed/ARCH-012-tmp-files-in-root.md +0 -71
  99. package/tasks/completed/ARCH-013-exit-code-constants.md +0 -65
  100. package/tasks/completed/ARCH-014-sed-incompatibility.md +0 -96
  101. package/tasks/completed/ARCH-015-docs-todo-tracking.md +0 -83
  102. package/tasks/completed/CLEAN-001.md +0 -38
  103. package/tasks/completed/CLEAN-003.md +0 -47
  104. package/tasks/completed/CLEAN-004.md +0 -56
  105. package/tasks/completed/CLEAN-005.md +0 -75
  106. package/tasks/completed/CLEAN-006.md +0 -47
  107. package/tasks/completed/CLEAN-007.md +0 -34
  108. package/tasks/completed/CLEAN-008.md +0 -49
  109. package/tasks/completed/CLEAN-012.md +0 -58
  110. package/tasks/completed/CLEAN-013.md +0 -45
  111. package/tasks/completed/SEC-001-sql-injection-fix.md +0 -58
  112. package/tasks/completed/SEC-002-notification-injection-fix.md +0 -45
  113. package/tasks/completed/SEC-003-eval-injection-fix.md +0 -54
  114. package/tasks/completed/SEC-004-pid-race-condition-fix.md +0 -49
  115. package/tasks/completed/SEC-005-worker-loop-path-fix.md +0 -51
  116. package/tasks/completed/SEC-006-eval-agent-names.md +0 -55
  117. package/tasks/completed/SEC-007-spawn-escaping.md +0 -67
  118. package/tasks/pending/ARCH-004-git-bash-detection-duplication.md +0 -72
  119. package/tasks/pending/ARCH-005-missing-src-directory.md +0 -95
  120. package/tasks/pending/ARCH-006-task-template-location.md +0 -64
  121. package/tasks/pending/ARCH-007-daemon-monolith.md +0 -91
  122. package/tasks/pending/ARCH-008-forge-master-vs-hub.md +0 -81
  123. package/tasks/pending/ARCH-010-missing-index-files.md +0 -84
  124. package/tasks/pending/CLEAN-002.md +0 -29
  125. package/tasks/pending/CLEAN-009.md +0 -31
  126. package/tasks/pending/CLEAN-010.md +0 -30
  127. package/tasks/pending/CLEAN-011.md +0 -30
  128. package/tasks/pending/CLEAN-014.md +0 -32
  129. package/tasks/review/task-001.md +0 -78
package/README.md CHANGED
@@ -1,232 +1,253 @@
1
- # Vibe Forge ⚒️
2
-
3
- A multi-agent development orchestration system for terminal-native vibe coding.
4
-
5
- ## Vision
6
-
7
- Vibe Forge transforms your terminal into a collaborative AI development environment. Multiple Claude agents - each with distinct personalities and specializations - work together to build software, coordinated through a file-based task system.
8
-
9
- ```
10
- ┌─────────────────────────────────────────────────────────────────┐
11
- │ PLANNING HUB │
12
- │ (Your main terminal session) │
13
- │ │
14
- │ You + Sage (Architect) + Oracle (Analyst) + Quartermaster (PM)
15
- └─────────────────────────────────────────────────────────────────┘
16
-
17
-
18
- ┌─────────────────────────────────────────────────────────────────┐
19
- FORGE MASTER ⚒️
20
- │ Task Distribution & Orchestration │
21
- └─────────────────────────────────────────────────────────────────┘
22
-
23
- ┌────────────┬───────┴───────┬────────────┐
24
- ▼ ▼ ▼ ▼
25
- ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐
26
- │ Anvil │ │ Furnace │ │Crucible │ │Sentinel │
27
- │ 🔨 │ │ 🔥 │ │ 🧪 │ │ 🛡️ │
28
- │Frontend │ │ Backend │ │ Testing │ │ Review │
29
- └─────────┘ └─────────┘ └─────────┘ └─────────┘
30
- ```
31
-
32
- ## Key Features
33
-
34
- - **Personality-driven agents** - Each agent has a distinct voice, expertise, and decision-making style
35
- - **File-based task coordination** - Reliable, debuggable, no WebSocket complexity
36
- - **Token-efficient design** - Context stored locally, minimal wire traffic
37
- - **Terminal-native** - Built for Windows Terminal, works with any terminal supporting tabs
38
-
39
- ## Agents
40
-
41
- ### Core Agents (Always Running)
42
-
43
- | Agent | Icon | Role |
44
- |-------|------|------|
45
- | Forge Master | ⚒️ | Chief Orchestrator - distributes tasks, tracks progress |
46
- | Sentinel | 🛡️ | Code Reviewer - quality gates, adversarial review |
47
-
48
- ### Worker Agents (Per-Task)
49
-
50
- | Agent | Icon | Role |
51
- |-------|------|------|
52
- | Anvil | 🔨 | Frontend Dev - components, UI, styling |
53
- | Furnace | 🔥 | Backend Dev - APIs, database, services |
54
- | Crucible | 🧪 | Tester/QA - tests, bug hunting |
55
- | Scribe | 📜 | Documentation - docs, README, API specs |
56
- | Herald | 📯 | Release Manager - versioning, deployment |
57
-
58
- ### Planning Hub Agents (Your Terminal)
59
-
60
- | Agent | Icon | Role |
61
- |-------|------|------|
62
- | Sage | 🏛️ | System Architect |
63
- | Oracle | 🔮 | Requirements Analyst |
64
- | Quartermaster | 📋 | Product Manager |
65
-
66
- ### Specialists (On-Demand)
67
-
68
- | Agent | Icon | Role |
69
- |-------|------|------|
70
- | Architect | 🏛️ | System Architect |
71
- | Ember | ⚙️ | DevOps/Infrastructure |
72
- | Aegis | 🔒 | Security Specialist |
73
-
74
- ## Project Structure
75
-
76
- ```
77
- vibe-forge/
78
- ├── agents/ # Agent definitions
79
- │ ├── forge-master/
80
- │ │ ├── personality.md # Identity, voice, principles
81
- │ │ ├── capabilities.md # Commands, tools, decisions
82
- │ │ └── context-template.md # Session startup context
83
- │ ├── sentinel/
84
- │ ├── anvil/
85
- │ ├── furnace/
86
- │ ├── crucible/
87
- │ └── ...
88
- ├── tasks/ # Task lifecycle folders
89
- │ ├── pending/ # New tasks waiting for pickup
90
- │ ├── in-progress/ # Currently being worked on
91
- │ ├── completed/ # Done, ready for review
92
- │ ├── review/ # Under Sentinel review
93
- │ ├── approved/ # Passed review
94
- ├── needs-changes/ # Review feedback to address
95
- └── merged/ # Archive
96
- ├── specs/ # Planning documents
97
- │ ├── epics/
98
- │ └── stories/
99
- ├── context/ # Shared context files
100
- │ ├── project-context.md # Tech stack, patterns, rules
101
- └── forge-state.yaml # Current forge status
102
- └── config/ # Configuration
103
- ├── agents.json # Agent roster (source of truth)
104
- ├── agent-manifest.yaml # Agent documentation (non-normative)
105
- ├── task-template.md # Task file template
106
- └── task-types.yaml # Task routing rules
107
- ```
108
-
109
- ## Task Lifecycle
110
-
111
- ```
112
- ┌─────────┐ ┌─────────────┐ ┌───────────┐ ┌────────┐
113
- pending │ -> │ in-progress │ -> │ completed │ -> │ review │
114
- └─────────┘ └─────────────┘ └───────────┘ └────────┘
115
-
116
- ┌──────────────┐
117
- needs-changes│ <────────────────┤
118
- └──────────────┘ │
119
- │ │
120
- ▼ ▼
121
- ┌─────────────┐ ┌──────────┐
122
- in-progress │ │ approved
123
- └─────────────┘ └──────────┘
124
-
125
-
126
- ┌─────────┐
127
- │ merged │
128
- └─────────┘
129
- ```
130
-
131
- ## Getting Started
132
-
133
- ### Prerequisites
134
-
135
- - Claude Code CLI ([install](https://claude.ai/download))
136
- - Windows Terminal (recommended) or any terminal with tabs
137
- - Node.js 16+ (for npx installer)
138
- - Git
139
-
140
- ### Quick Start
141
-
142
- ```bash
143
- # In your project directory
144
- npx vibe-forge init
145
- ```
146
-
147
- This will:
148
-
149
- 1. Clone Vibe Forge into `_vibe-forge/`
150
- 2. Detect your platform and terminal
151
- 3. Set up the daemon and configuration
152
- 4. Create a project context file
153
-
154
- Then start the Planning Hub:
155
-
156
- ```bash
157
- cd _vibe-forge
158
- ./bin/forge.sh
159
- ```
160
-
161
- ### Manual Setup
162
-
163
- If you prefer not to use npx:
164
-
165
- ```bash
166
- # Clone into your project
167
- git clone https://github.com/SpasticPalate/vibe-forge.git _vibe-forge
168
-
169
- # Run setup
170
- cd _vibe-forge
171
- ./bin/forge-setup.sh
172
-
173
- # Start the Planning Hub
174
- ./bin/forge.sh
175
- ```
176
-
177
- ### Updating
178
-
179
- ```bash
180
- npx vibe-forge update
181
- ```
182
-
183
- ## Slash Commands
184
-
185
- When using Claude Code inside your project, use the `/forge` command:
186
-
187
- ```
188
- /forge - Start the Planning Hub (default)
189
- /forge status - Show status dashboard
190
- /forge spawn <agent> - Spawn worker in new terminal
191
- /forge task [desc] - Create a new task
192
- /forge help - Show available commands
193
- ```
194
-
195
- Agents (with aliases):
196
-
197
- | Agent | Aliases | Role |
198
- |-------|---------|------|
199
- | anvil | frontend, ui, fe | Frontend Developer |
200
- | furnace | backend, api, be | Backend Developer |
201
- | crucible | test, testing, qa | Tester / QA |
202
- | sentinel | review, reviewer, cr | Code Reviewer |
203
- | scribe | docs, documentation | Documentation |
204
- | herald | release, deploy | Release Manager |
205
- | ember | devops, ops, infra | DevOps |
206
- | aegis | security, sec, appsec | Security |
207
-
208
- Use either the forge name or any alias: `/forge spawn frontend` or `/forge spawn anvil`
209
-
210
- ## Token Efficiency
211
-
212
- Vibe Forge is designed for minimal token usage:
213
-
214
- 1. **Local context** - Agents read from files, not conversation history
215
- 2. **Task files as truth** - Instructions in files, not repeated in chat
216
- 3. **Reference, don't duplicate** - Point to paths, don't paste contents
217
- 4. **Batch updates** - One status report per cycle, not per task
218
- 5. **Exception-based** - Report problems, not smooth operations
219
-
220
- ## Philosophy
221
-
222
- > "A forge is not a factory. Each piece is crafted with intention."
223
-
224
- Vibe Forge embraces the craft of software development. Each agent brings expertise and personality to their work. The goal isn't maximum automation - it's maximum collaboration between human and AI.
225
-
226
- ## Acknowledgments
227
-
228
- Inspired by BMAD (Business Model-Agnostic Development) methodology and its multi-agent workflow system.
229
-
230
- ## License
231
-
232
- MIT
1
+ # Vibe Forge ⚒️
2
+
3
+ A multi-agent development orchestration system for terminal-native vibe coding.
4
+
5
+ ## Vision
6
+
7
+ Vibe Forge transforms your terminal into a collaborative AI development environment. Multiple Claude agents - each with distinct personalities and specializations - work together to build software, coordinated through a file-based task system.
8
+
9
+ ```
10
+ ┌─────────────────────────────────────────────────────────────────┐
11
+ │ PLANNING HUB │
12
+ │ (Your main terminal session) │
13
+ │ │
14
+ │ You + Architect · Aegis · Ember · Pixel · Oracle
15
+ └─────────────────────────────────────────────────────────────────┘
16
+
17
+
18
+ ┌─────────────────────────────────────────────────────────────────┐
19
+ PLANNING HUB 🔥
20
+ │ Task Distribution & Orchestration │
21
+ └─────────────────────────────────────────────────────────────────┘
22
+
23
+ ┌────────────┬───────┴───────┬────────────┐
24
+ ▼ ▼ ▼ ▼
25
+ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐
26
+ │ Anvil │ │ Furnace │ │Crucible │ │Sentinel │
27
+ │ 🔨 │ │ 🔥 │ │ 🧪 │ │ 🛡️ │
28
+ │Frontend │ │ Backend │ │ Testing │ │ Review │
29
+ └─────────┘ └─────────┘ └─────────┘ └─────────┘
30
+ ```
31
+
32
+ ## Key Features
33
+
34
+ - **Personality-driven agents** - Each agent has a distinct voice, expertise, and decision-making style
35
+ - **File-based task coordination** - Reliable, debuggable, no WebSocket complexity
36
+ - **Token-efficient design** - Context stored locally, minimal wire traffic
37
+ - **Terminal-native** - Built for Windows Terminal, works with any terminal supporting tabs
38
+
39
+ ## Agents
40
+
41
+ ### Core Agents (Always Running)
42
+
43
+ | Agent | Icon | Role |
44
+ |-------|------|------|
45
+ | Planning Hub | 🔥 | Chief Orchestrator - distributes tasks, tracks progress |
46
+ | Sentinel | 🛡️ | Code Reviewer - quality gates, adversarial review |
47
+
48
+ ### Worker Agents (Per-Task)
49
+
50
+ | Agent | Icon | Role |
51
+ |-------|------|------|
52
+ | Anvil | 🔨 | Frontend Dev - components, UI, styling |
53
+ | Furnace | 🔥 | Backend Dev - APIs, database, services |
54
+ | Crucible | 🧪 | Tester/QA - tests, bug hunting |
55
+ | Scribe | 📜 | Documentation - docs, README, API specs |
56
+ | Herald | 📯 | Release Manager - versioning, deployment |
57
+
58
+ ### Planning Hub Voices (Your Terminal)
59
+
60
+ The Planning Hub is a **multi-voice planning session** -- not separate agents. When you run `/forge`, these expert voices collaborate in a single session:
61
+
62
+ | Voice | Icon | Expertise |
63
+ |-------|------|-----------|
64
+ | Forge Master | 🔥 | Orchestration & task coordination |
65
+ | Architect | 🏛️ | Technical design & architecture |
66
+ | Aegis | 🔒 | Security & risk |
67
+ | Ember | ⚙️ | DevOps & infrastructure |
68
+ | Pixel | 🎨 | User experience & design |
69
+ | Oracle | 📊 | Requirements & scope |
70
+ | Crucible | 🧪 | Quality & edge cases |
71
+
72
+ ### Specialists (On-Demand)
73
+
74
+ | Agent | Icon | Role |
75
+ |-------|------|------|
76
+ | Architect | 🏛️ | System Architect |
77
+ | Ember | ⚙️ | DevOps/Infrastructure |
78
+ | Aegis | 🔒 | Security Specialist |
79
+ | Pixel | 🎨 | UX Designer |
80
+ | Oracle | 🔮 | Product Owner / Requirements |
81
+ | Loki | 🎭 | Lateral Thinker, Assumption Challenger |
82
+
83
+ ### Red Team (On-Demand)
84
+
85
+ | Agent | Icon | Role |
86
+ |-------|------|------|
87
+ | Slag | 💀 | Red Team Lead - OWASP, auth attacks, engagement reporting |
88
+ | Flux | ⚡ | Red Team Operator - dependency CVEs, CI/CD, supply chain |
89
+
90
+ ## Project Structure
91
+
92
+ ```
93
+ vibe-forge/
94
+ ├── agents/ # Agent definitions
95
+ ├── planning-hub/
96
+ │ │ ├── personality.md # Identity, voice, principles
97
+ ├── capabilities.md # Commands, tools, decisions
98
+ └── context-template.md # Session startup context
99
+ ├── sentinel/
100
+ │ ├── anvil/
101
+ ├── furnace/
102
+ │ ├── crucible/
103
+ │ └── ...
104
+ ├── tasks/ # Task lifecycle folders
105
+ ├── pending/ # New tasks waiting for pickup
106
+ │ ├── in-progress/ # Currently being worked on
107
+ │ ├── completed/ # Done, ready for review
108
+ │ ├── review/ # Under Sentinel review
109
+ │ ├── approved/ # Passed review
110
+ │ ├── needs-changes/ # Review feedback to address
111
+ │ └── merged/ # Archive
112
+ ├── specs/ # Planning documents
113
+ ├── epics/
114
+ │ └── stories/
115
+ ├── context/ # Shared context files
116
+ ├── project-context.md # Tech stack, patterns, rules
117
+ └── forge-state.yaml # Current forge status
118
+ └── config/ # Configuration
119
+ ├── agents.json # Agent roster (source of truth)
120
+ ├── agent-manifest.yaml # Agent documentation (non-normative)
121
+ ├── task-template.md # Task file template
122
+ └── task-types.yaml # Task routing rules
123
+ ```
124
+
125
+ ## Task Lifecycle
126
+
127
+ ```
128
+ ┌─────────┐ ┌─────────────┐ ┌───────────┐ ┌────────┐
129
+ │ pending │ -> │ in-progress │ -> │ completed │ -> │ review │
130
+ └─────────┘ └─────────────┘ └───────────┘ └────────┘
131
+
132
+ ┌──────────────┐ │
133
+ needs-changes│ <────────────────┤
134
+ └──────────────┘ │
135
+ │ │
136
+ ▼ ▼
137
+ ┌─────────────┐ ┌──────────┐
138
+ │ in-progress │ │ approved │
139
+ └─────────────┘ └──────────┘
140
+
141
+
142
+ ┌─────────┐
143
+ merged │
144
+ └─────────┘
145
+ ```
146
+
147
+ ## Getting Started
148
+
149
+ ### Prerequisites
150
+
151
+ - Claude Code CLI ([install](https://claude.ai/download))
152
+ - Windows Terminal (recommended) or any terminal with tabs
153
+ - Node.js 16+ (for npx installer)
154
+ - Git
155
+
156
+ ### Quick Start
157
+
158
+ ```bash
159
+ # In your project directory
160
+ npx vibe-forge init
161
+ ```
162
+
163
+ This will:
164
+
165
+ 1. Clone Vibe Forge into `_vibe-forge/`
166
+ 2. Detect your platform and terminal
167
+ 3. Set up the daemon and configuration
168
+ 4. Create a project context file
169
+
170
+ Then start the Planning Hub:
171
+
172
+ ```bash
173
+ cd _vibe-forge
174
+ ./bin/forge.sh
175
+ ```
176
+
177
+ ### Manual Setup
178
+
179
+ If you prefer not to use npx:
180
+
181
+ ```bash
182
+ # Clone into your project
183
+ git clone https://github.com/sugar-crash-studios/vibe-forge.git _vibe-forge
184
+
185
+ # Run setup
186
+ cd _vibe-forge
187
+ ./bin/forge-setup.sh
188
+
189
+ # Start the Planning Hub
190
+ ./bin/forge.sh
191
+ ```
192
+
193
+ ### Updating
194
+
195
+ ```bash
196
+ npx vibe-forge update
197
+ ```
198
+
199
+ ## Slash Commands
200
+
201
+ When using Claude Code inside your project, use the `/forge` command:
202
+
203
+ ```
204
+ /forge - Start the Planning Hub (default)
205
+ /forge status - Show status dashboard
206
+ /forge spawn <agent> - Spawn worker in new terminal
207
+ /forge task [desc] - Create a new task
208
+ /forge redteam [scope] - Launch red team engagement
209
+ /forge help - Show available commands
210
+ ```
211
+
212
+ Agents (with aliases):
213
+
214
+ | Agent | Aliases | Role |
215
+ |-------|---------|------|
216
+ | anvil | frontend, ui, fe | Frontend Developer |
217
+ | furnace | backend, api, be | Backend Developer |
218
+ | crucible | test, testing, qa | Tester / QA |
219
+ | sentinel | review, reviewer, cr | Code Reviewer |
220
+ | scribe | docs, documentation | Documentation |
221
+ | herald | release, deploy | Release Manager |
222
+ | ember | devops, ops, infra | DevOps |
223
+ | aegis | security, sec, appsec | Security |
224
+ | slag | redteam, pentest | Red Team Lead |
225
+ | flux | infra-sec, chaos | Red Team Operator |
226
+
227
+ Use either the forge name or any alias: `/forge spawn frontend` or `/forge spawn anvil`
228
+
229
+ Red team engagements: `/forge redteam [scope]`
230
+
231
+ ## Token Efficiency
232
+
233
+ Vibe Forge is designed for minimal token usage:
234
+
235
+ 1. **Local context** - Agents read from files, not conversation history
236
+ 2. **Task files as truth** - Instructions in files, not repeated in chat
237
+ 3. **Reference, don't duplicate** - Point to paths, don't paste contents
238
+ 4. **Batch updates** - One status report per cycle, not per task
239
+ 5. **Exception-based** - Report problems, not smooth operations
240
+
241
+ ## Philosophy
242
+
243
+ > "A forge is not a factory. Each piece is crafted with intention."
244
+
245
+ Vibe Forge embraces the craft of software development. Each agent brings expertise and personality to their work. The goal isn't maximum automation - it's maximum collaboration between human and AI.
246
+
247
+ ## Acknowledgments
248
+
249
+ Inspired by BMAD (Business Model-Agnostic Development) methodology and its multi-agent workflow system.
250
+
251
+ ## License
252
+
253
+ MIT