vibe-forge 0.8.2 → 0.8.5
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.
- package/.claude/commands/clear-attention.md +63 -63
- package/.claude/commands/compact-context.md +52 -52
- package/.claude/commands/need-help.md +77 -77
- package/.claude/commands/update-status.md +64 -64
- package/.claude/commands/worker-loop.md +106 -106
- package/.claude/scripts/setup-worker-loop.sh +45 -45
- package/LICENSE +21 -21
- package/README.md +211 -211
- package/bin/cli.js +127 -33
- package/bin/dashboard/api/agents.js +333 -333
- package/bin/dashboard/api/dispatch.js +507 -507
- package/bin/dashboard/api/tasks.js +416 -416
- package/bin/dashboard/public/assets/index-Dm2PgE2m.js +2 -0
- package/bin/dashboard/public/index.html +13 -13
- package/bin/dashboard/server.js +574 -645
- package/config/agent-manifest.yaml +237 -237
- package/config/agents.json +207 -207
- package/config/task-types.yaml +111 -111
- package/context/agent-overrides/README.md +41 -41
- package/context/architecture.md +42 -42
- package/context/modern-conventions.md +129 -129
- package/docs/agents.md +473 -473
- package/docs/architecture.md +194 -194
- package/docs/commands.md +451 -451
- package/docs/security.md +195 -195
- package/package.json +2 -3
- package/src/lib/database.sh +1 -1
- package/bin/dashboard/public/assets/index-BpHfsx1r.js +0 -2
package/config/agents.json
CHANGED
|
@@ -1,207 +1,207 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_comment": "SINGLE SOURCE OF TRUTH for agent configuration. Used by bash scripts via load_agents_from_json() and Node.js directly. See config/agent-manifest.yaml for rich documentation (non-normative).",
|
|
3
|
-
"version": "1.1.0",
|
|
4
|
-
"agents": {
|
|
5
|
-
"hub": {
|
|
6
|
-
"name": "Planning Hub",
|
|
7
|
-
"icon": "⚒️",
|
|
8
|
-
"role": "Chief Orchestrator",
|
|
9
|
-
"aliases": ["planning", "master", "forge-master"],
|
|
10
|
-
"type": "core",
|
|
11
|
-
"persistent": true,
|
|
12
|
-
"terminal_tab": 1,
|
|
13
|
-
"personality_file": "agents/planning-hub/personality.md",
|
|
14
|
-
"tab_color": "#FF6B35",
|
|
15
|
-
"description": "Task distribution, progress tracking, agent coordination",
|
|
16
|
-
"task_types": ["planning", "coordination", "orchestration"]
|
|
17
|
-
},
|
|
18
|
-
"temper": {
|
|
19
|
-
"name": "Temper",
|
|
20
|
-
"icon": "⚖️",
|
|
21
|
-
"role": "Code Reviewer",
|
|
22
|
-
"aliases": ["review", "reviewer", "cr"],
|
|
23
|
-
"type": "core",
|
|
24
|
-
"persistent": true,
|
|
25
|
-
"terminal_tab": 5,
|
|
26
|
-
"personality_file": "agents/temper/personality.md",
|
|
27
|
-
"tab_color": "#8B5CF6",
|
|
28
|
-
"description": "Quality gates, code review, PR approval",
|
|
29
|
-
"task_types": ["review", "pr", "quality"]
|
|
30
|
-
},
|
|
31
|
-
"anvil": {
|
|
32
|
-
"name": "Anvil",
|
|
33
|
-
"icon": "🔨",
|
|
34
|
-
"role": "Frontend Developer",
|
|
35
|
-
"aliases": ["frontend", "ui", "fe"],
|
|
36
|
-
"type": "worker",
|
|
37
|
-
"persistent": true,
|
|
38
|
-
"terminal_tab": 2,
|
|
39
|
-
"personality_file": "agents/anvil/personality.md",
|
|
40
|
-
"tab_color": "#3B82F6",
|
|
41
|
-
"description": "UI components, React/Vue/Blazor, CSS, client-side logic",
|
|
42
|
-
"task_types": ["frontend", "component", "ui", "styling", "blazor"]
|
|
43
|
-
},
|
|
44
|
-
"furnace": {
|
|
45
|
-
"name": "Furnace",
|
|
46
|
-
"icon": "🔥",
|
|
47
|
-
"role": "Backend Developer",
|
|
48
|
-
"aliases": ["backend", "api", "be"],
|
|
49
|
-
"type": "worker",
|
|
50
|
-
"persistent": true,
|
|
51
|
-
"terminal_tab": 3,
|
|
52
|
-
"personality_file": "agents/furnace/personality.md",
|
|
53
|
-
"tab_color": "#EF4444",
|
|
54
|
-
"description": "API endpoints, database, server logic, .NET/Node.js services",
|
|
55
|
-
"task_types": ["backend", "api", "database", "service", "dotnet"]
|
|
56
|
-
},
|
|
57
|
-
"crucible": {
|
|
58
|
-
"name": "Crucible",
|
|
59
|
-
"icon": "🧪",
|
|
60
|
-
"role": "Tester / QA",
|
|
61
|
-
"aliases": ["test", "testing", "qa", "tester"],
|
|
62
|
-
"type": "worker",
|
|
63
|
-
"persistent": true,
|
|
64
|
-
"terminal_tab": 4,
|
|
65
|
-
"personality_file": "agents/crucible/personality.md",
|
|
66
|
-
"tab_color": "#10B981",
|
|
67
|
-
"description": "Test writing, bug hunting, quality validation, xUnit/NUnit/Jest",
|
|
68
|
-
"task_types": ["test", "qa", "bugfix", "e2e", "xunit"]
|
|
69
|
-
},
|
|
70
|
-
"scribe": {
|
|
71
|
-
"name": "Scribe",
|
|
72
|
-
"icon": "📜",
|
|
73
|
-
"role": "Documentation Specialist",
|
|
74
|
-
"aliases": ["docs", "documentation", "doc"],
|
|
75
|
-
"type": "worker",
|
|
76
|
-
"persistent": false,
|
|
77
|
-
"personality_file": "agents/scribe/personality.md",
|
|
78
|
-
"tab_color": "#F59E0B",
|
|
79
|
-
"description": "Docs, README, API documentation, inline comments",
|
|
80
|
-
"task_types": ["docs", "readme", "api-docs", "comments"]
|
|
81
|
-
},
|
|
82
|
-
"herald": {
|
|
83
|
-
"name": "Herald",
|
|
84
|
-
"icon": "📯",
|
|
85
|
-
"role": "Release Manager",
|
|
86
|
-
"aliases": ["release", "deploy", "deployment"],
|
|
87
|
-
"type": "worker",
|
|
88
|
-
"persistent": false,
|
|
89
|
-
"personality_file": "agents/herald/personality.md",
|
|
90
|
-
"tab_color": "#EC4899",
|
|
91
|
-
"description": "Versioning, changelog, deployment, release notes",
|
|
92
|
-
"task_types": ["release", "deploy", "changelog", "version"]
|
|
93
|
-
},
|
|
94
|
-
"ember": {
|
|
95
|
-
"name": "Ember",
|
|
96
|
-
"icon": "⚙️",
|
|
97
|
-
"role": "DevOps Engineer",
|
|
98
|
-
"aliases": ["devops", "ops", "infra", "infrastructure"],
|
|
99
|
-
"type": "specialist",
|
|
100
|
-
"persistent": false,
|
|
101
|
-
"personality_file": "agents/ember/personality.md",
|
|
102
|
-
"tab_color": "#F97316",
|
|
103
|
-
"description": "Infrastructure, CI/CD, Docker, Azure, .NET deployment",
|
|
104
|
-
"task_types": ["devops", "infra", "ci-cd", "docker", "azure"]
|
|
105
|
-
},
|
|
106
|
-
"aegis": {
|
|
107
|
-
"name": "Aegis",
|
|
108
|
-
"icon": "🔒",
|
|
109
|
-
"role": "Security Specialist",
|
|
110
|
-
"aliases": ["security", "sec", "appsec"],
|
|
111
|
-
"type": "specialist",
|
|
112
|
-
"persistent": false,
|
|
113
|
-
"personality_file": "agents/aegis/personality.md",
|
|
114
|
-
"tab_color": "#06B6D4",
|
|
115
|
-
"description": "Security audit, vulnerability assessment, hardening",
|
|
116
|
-
"task_types": ["security", "audit", "vulnerability"],
|
|
117
|
-
"requires_approval": true
|
|
118
|
-
},
|
|
119
|
-
"slag": {
|
|
120
|
-
"name": "Slag",
|
|
121
|
-
"icon": "💀",
|
|
122
|
-
"role": "Red Team Lead",
|
|
123
|
-
"aliases": ["redteam", "red-team", "pentest", "offensive"],
|
|
124
|
-
"type": "specialist",
|
|
125
|
-
"persistent": false,
|
|
126
|
-
"personality_file": "agents/slag/personality.md",
|
|
127
|
-
"tab_color": "#DC2626",
|
|
128
|
-
"description": "Offensive security, OWASP testing, engagement lead, attack simulation",
|
|
129
|
-
"task_types": ["redteam", "pentest", "offensive-security"],
|
|
130
|
-
"requires_approval": true
|
|
131
|
-
},
|
|
132
|
-
"flux": {
|
|
133
|
-
"name": "Flux",
|
|
134
|
-
"icon": "⚡",
|
|
135
|
-
"role": "Red Team Operator",
|
|
136
|
-
"aliases": ["infra-sec", "supply-chain", "chaos"],
|
|
137
|
-
"type": "specialist",
|
|
138
|
-
"persistent": false,
|
|
139
|
-
"personality_file": "agents/flux/personality.md",
|
|
140
|
-
"tab_color": "#B91C1C",
|
|
141
|
-
"description": "Infrastructure security, dependency CVEs, CI/CD attacks, chaos testing",
|
|
142
|
-
"task_types": ["redteam", "infra-security", "supply-chain", "chaos"],
|
|
143
|
-
"requires_approval": true
|
|
144
|
-
},
|
|
145
|
-
"architect": {
|
|
146
|
-
"name": "Architect",
|
|
147
|
-
"icon": "🏛️",
|
|
148
|
-
"role": "System Architect",
|
|
149
|
-
"aliases": ["arch", "sage"],
|
|
150
|
-
"type": "advisor",
|
|
151
|
-
"persistent": false,
|
|
152
|
-
"personality_file": "agents/architect/personality.md",
|
|
153
|
-
"tab_color": "#6366F1",
|
|
154
|
-
"description": "System design, technical decisions, architecture review",
|
|
155
|
-
"task_types": ["architecture", "design", "tech-debt"]
|
|
156
|
-
},
|
|
157
|
-
"pixel": {
|
|
158
|
-
"name": "Pixel",
|
|
159
|
-
"icon": "🎨",
|
|
160
|
-
"role": "UX Designer",
|
|
161
|
-
"aliases": ["ux", "ui-design", "user-experience"],
|
|
162
|
-
"type": "specialist",
|
|
163
|
-
"persistent": false,
|
|
164
|
-
"personality_file": "agents/pixel/personality.md",
|
|
165
|
-
"tab_color": "#D946EF",
|
|
166
|
-
"description": "User experience, interaction design, wireframes, accessibility",
|
|
167
|
-
"task_types": ["ux", "wireframe", "design", "accessibility", "user-research"]
|
|
168
|
-
},
|
|
169
|
-
"oracle": {
|
|
170
|
-
"name": "Oracle",
|
|
171
|
-
"icon": "🔮",
|
|
172
|
-
"role": "Product Owner / Requirements Analyst",
|
|
173
|
-
"aliases": ["product", "po", "requirements", "req", "analyst"],
|
|
174
|
-
"type": "advisor",
|
|
175
|
-
"persistent": false,
|
|
176
|
-
"personality_file": "agents/oracle/personality.md",
|
|
177
|
-
"tab_color": "#FBBF24",
|
|
178
|
-
"description": "Product requirements, epics, user stories, acceptance criteria, research",
|
|
179
|
-
"task_types": ["product", "requirements", "epics", "stories", "research", "planning"]
|
|
180
|
-
},
|
|
181
|
-
"loki": {
|
|
182
|
-
"name": "Loki",
|
|
183
|
-
"icon": "🎭",
|
|
184
|
-
"role": "Lateral Thinker, Assumption Challenger",
|
|
185
|
-
"aliases": ["trickster", "contrarian", "challenge", "brainstorm"],
|
|
186
|
-
"type": "advisor",
|
|
187
|
-
"persistent": false,
|
|
188
|
-
"personality_file": "agents/loki/personality.md",
|
|
189
|
-
"tab_color": "#7C3AED",
|
|
190
|
-
"description": "Challenges assumptions, lateral thinking, brainstorm provocations",
|
|
191
|
-
"task_types": ["brainstorm", "design-review", "planning", "postmortem"]
|
|
192
|
-
},
|
|
193
|
-
"crucible-x": {
|
|
194
|
-
"name": "Crucible-X",
|
|
195
|
-
"icon": "🔥🧪",
|
|
196
|
-
"role": "Adversarial Reviewer",
|
|
197
|
-
"aliases": ["adversarial", "break-it", "breaker", "cx"],
|
|
198
|
-
"type": "specialist",
|
|
199
|
-
"persistent": false,
|
|
200
|
-
"personality_file": "agents/crucible-x/personality.md",
|
|
201
|
-
"tab_color": "#DC2626",
|
|
202
|
-
"description": "Adversarial testing, edge case discovery, failing test generation",
|
|
203
|
-
"task_types": ["adversarial-review", "security-test", "edge-case"],
|
|
204
|
-
"requires_approval": false
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"_comment": "SINGLE SOURCE OF TRUTH for agent configuration. Used by bash scripts via load_agents_from_json() and Node.js directly. See config/agent-manifest.yaml for rich documentation (non-normative).",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"agents": {
|
|
5
|
+
"hub": {
|
|
6
|
+
"name": "Planning Hub",
|
|
7
|
+
"icon": "⚒️",
|
|
8
|
+
"role": "Chief Orchestrator",
|
|
9
|
+
"aliases": ["planning", "master", "forge-master"],
|
|
10
|
+
"type": "core",
|
|
11
|
+
"persistent": true,
|
|
12
|
+
"terminal_tab": 1,
|
|
13
|
+
"personality_file": "agents/planning-hub/personality.md",
|
|
14
|
+
"tab_color": "#FF6B35",
|
|
15
|
+
"description": "Task distribution, progress tracking, agent coordination",
|
|
16
|
+
"task_types": ["planning", "coordination", "orchestration"]
|
|
17
|
+
},
|
|
18
|
+
"temper": {
|
|
19
|
+
"name": "Temper",
|
|
20
|
+
"icon": "⚖️",
|
|
21
|
+
"role": "Code Reviewer",
|
|
22
|
+
"aliases": ["review", "reviewer", "cr"],
|
|
23
|
+
"type": "core",
|
|
24
|
+
"persistent": true,
|
|
25
|
+
"terminal_tab": 5,
|
|
26
|
+
"personality_file": "agents/temper/personality.md",
|
|
27
|
+
"tab_color": "#8B5CF6",
|
|
28
|
+
"description": "Quality gates, code review, PR approval",
|
|
29
|
+
"task_types": ["review", "pr", "quality"]
|
|
30
|
+
},
|
|
31
|
+
"anvil": {
|
|
32
|
+
"name": "Anvil",
|
|
33
|
+
"icon": "🔨",
|
|
34
|
+
"role": "Frontend Developer",
|
|
35
|
+
"aliases": ["frontend", "ui", "fe"],
|
|
36
|
+
"type": "worker",
|
|
37
|
+
"persistent": true,
|
|
38
|
+
"terminal_tab": 2,
|
|
39
|
+
"personality_file": "agents/anvil/personality.md",
|
|
40
|
+
"tab_color": "#3B82F6",
|
|
41
|
+
"description": "UI components, React/Vue/Blazor, CSS, client-side logic",
|
|
42
|
+
"task_types": ["frontend", "component", "ui", "styling", "blazor"]
|
|
43
|
+
},
|
|
44
|
+
"furnace": {
|
|
45
|
+
"name": "Furnace",
|
|
46
|
+
"icon": "🔥",
|
|
47
|
+
"role": "Backend Developer",
|
|
48
|
+
"aliases": ["backend", "api", "be"],
|
|
49
|
+
"type": "worker",
|
|
50
|
+
"persistent": true,
|
|
51
|
+
"terminal_tab": 3,
|
|
52
|
+
"personality_file": "agents/furnace/personality.md",
|
|
53
|
+
"tab_color": "#EF4444",
|
|
54
|
+
"description": "API endpoints, database, server logic, .NET/Node.js services",
|
|
55
|
+
"task_types": ["backend", "api", "database", "service", "dotnet"]
|
|
56
|
+
},
|
|
57
|
+
"crucible": {
|
|
58
|
+
"name": "Crucible",
|
|
59
|
+
"icon": "🧪",
|
|
60
|
+
"role": "Tester / QA",
|
|
61
|
+
"aliases": ["test", "testing", "qa", "tester"],
|
|
62
|
+
"type": "worker",
|
|
63
|
+
"persistent": true,
|
|
64
|
+
"terminal_tab": 4,
|
|
65
|
+
"personality_file": "agents/crucible/personality.md",
|
|
66
|
+
"tab_color": "#10B981",
|
|
67
|
+
"description": "Test writing, bug hunting, quality validation, xUnit/NUnit/Jest",
|
|
68
|
+
"task_types": ["test", "qa", "bugfix", "e2e", "xunit"]
|
|
69
|
+
},
|
|
70
|
+
"scribe": {
|
|
71
|
+
"name": "Scribe",
|
|
72
|
+
"icon": "📜",
|
|
73
|
+
"role": "Documentation Specialist",
|
|
74
|
+
"aliases": ["docs", "documentation", "doc"],
|
|
75
|
+
"type": "worker",
|
|
76
|
+
"persistent": false,
|
|
77
|
+
"personality_file": "agents/scribe/personality.md",
|
|
78
|
+
"tab_color": "#F59E0B",
|
|
79
|
+
"description": "Docs, README, API documentation, inline comments",
|
|
80
|
+
"task_types": ["docs", "readme", "api-docs", "comments"]
|
|
81
|
+
},
|
|
82
|
+
"herald": {
|
|
83
|
+
"name": "Herald",
|
|
84
|
+
"icon": "📯",
|
|
85
|
+
"role": "Release Manager",
|
|
86
|
+
"aliases": ["release", "deploy", "deployment"],
|
|
87
|
+
"type": "worker",
|
|
88
|
+
"persistent": false,
|
|
89
|
+
"personality_file": "agents/herald/personality.md",
|
|
90
|
+
"tab_color": "#EC4899",
|
|
91
|
+
"description": "Versioning, changelog, deployment, release notes",
|
|
92
|
+
"task_types": ["release", "deploy", "changelog", "version"]
|
|
93
|
+
},
|
|
94
|
+
"ember": {
|
|
95
|
+
"name": "Ember",
|
|
96
|
+
"icon": "⚙️",
|
|
97
|
+
"role": "DevOps Engineer",
|
|
98
|
+
"aliases": ["devops", "ops", "infra", "infrastructure"],
|
|
99
|
+
"type": "specialist",
|
|
100
|
+
"persistent": false,
|
|
101
|
+
"personality_file": "agents/ember/personality.md",
|
|
102
|
+
"tab_color": "#F97316",
|
|
103
|
+
"description": "Infrastructure, CI/CD, Docker, Azure, .NET deployment",
|
|
104
|
+
"task_types": ["devops", "infra", "ci-cd", "docker", "azure"]
|
|
105
|
+
},
|
|
106
|
+
"aegis": {
|
|
107
|
+
"name": "Aegis",
|
|
108
|
+
"icon": "🔒",
|
|
109
|
+
"role": "Security Specialist",
|
|
110
|
+
"aliases": ["security", "sec", "appsec"],
|
|
111
|
+
"type": "specialist",
|
|
112
|
+
"persistent": false,
|
|
113
|
+
"personality_file": "agents/aegis/personality.md",
|
|
114
|
+
"tab_color": "#06B6D4",
|
|
115
|
+
"description": "Security audit, vulnerability assessment, hardening",
|
|
116
|
+
"task_types": ["security", "audit", "vulnerability"],
|
|
117
|
+
"requires_approval": true
|
|
118
|
+
},
|
|
119
|
+
"slag": {
|
|
120
|
+
"name": "Slag",
|
|
121
|
+
"icon": "💀",
|
|
122
|
+
"role": "Red Team Lead",
|
|
123
|
+
"aliases": ["redteam", "red-team", "pentest", "offensive"],
|
|
124
|
+
"type": "specialist",
|
|
125
|
+
"persistent": false,
|
|
126
|
+
"personality_file": "agents/slag/personality.md",
|
|
127
|
+
"tab_color": "#DC2626",
|
|
128
|
+
"description": "Offensive security, OWASP testing, engagement lead, attack simulation",
|
|
129
|
+
"task_types": ["redteam", "pentest", "offensive-security"],
|
|
130
|
+
"requires_approval": true
|
|
131
|
+
},
|
|
132
|
+
"flux": {
|
|
133
|
+
"name": "Flux",
|
|
134
|
+
"icon": "⚡",
|
|
135
|
+
"role": "Red Team Operator",
|
|
136
|
+
"aliases": ["infra-sec", "supply-chain", "chaos"],
|
|
137
|
+
"type": "specialist",
|
|
138
|
+
"persistent": false,
|
|
139
|
+
"personality_file": "agents/flux/personality.md",
|
|
140
|
+
"tab_color": "#B91C1C",
|
|
141
|
+
"description": "Infrastructure security, dependency CVEs, CI/CD attacks, chaos testing",
|
|
142
|
+
"task_types": ["redteam", "infra-security", "supply-chain", "chaos"],
|
|
143
|
+
"requires_approval": true
|
|
144
|
+
},
|
|
145
|
+
"architect": {
|
|
146
|
+
"name": "Architect",
|
|
147
|
+
"icon": "🏛️",
|
|
148
|
+
"role": "System Architect",
|
|
149
|
+
"aliases": ["arch", "sage"],
|
|
150
|
+
"type": "advisor",
|
|
151
|
+
"persistent": false,
|
|
152
|
+
"personality_file": "agents/architect/personality.md",
|
|
153
|
+
"tab_color": "#6366F1",
|
|
154
|
+
"description": "System design, technical decisions, architecture review",
|
|
155
|
+
"task_types": ["architecture", "design", "tech-debt"]
|
|
156
|
+
},
|
|
157
|
+
"pixel": {
|
|
158
|
+
"name": "Pixel",
|
|
159
|
+
"icon": "🎨",
|
|
160
|
+
"role": "UX Designer",
|
|
161
|
+
"aliases": ["ux", "ui-design", "user-experience"],
|
|
162
|
+
"type": "specialist",
|
|
163
|
+
"persistent": false,
|
|
164
|
+
"personality_file": "agents/pixel/personality.md",
|
|
165
|
+
"tab_color": "#D946EF",
|
|
166
|
+
"description": "User experience, interaction design, wireframes, accessibility",
|
|
167
|
+
"task_types": ["ux", "wireframe", "design", "accessibility", "user-research"]
|
|
168
|
+
},
|
|
169
|
+
"oracle": {
|
|
170
|
+
"name": "Oracle",
|
|
171
|
+
"icon": "🔮",
|
|
172
|
+
"role": "Product Owner / Requirements Analyst",
|
|
173
|
+
"aliases": ["product", "po", "requirements", "req", "analyst"],
|
|
174
|
+
"type": "advisor",
|
|
175
|
+
"persistent": false,
|
|
176
|
+
"personality_file": "agents/oracle/personality.md",
|
|
177
|
+
"tab_color": "#FBBF24",
|
|
178
|
+
"description": "Product requirements, epics, user stories, acceptance criteria, research",
|
|
179
|
+
"task_types": ["product", "requirements", "epics", "stories", "research", "planning"]
|
|
180
|
+
},
|
|
181
|
+
"loki": {
|
|
182
|
+
"name": "Loki",
|
|
183
|
+
"icon": "🎭",
|
|
184
|
+
"role": "Lateral Thinker, Assumption Challenger",
|
|
185
|
+
"aliases": ["trickster", "contrarian", "challenge", "brainstorm"],
|
|
186
|
+
"type": "advisor",
|
|
187
|
+
"persistent": false,
|
|
188
|
+
"personality_file": "agents/loki/personality.md",
|
|
189
|
+
"tab_color": "#7C3AED",
|
|
190
|
+
"description": "Challenges assumptions, lateral thinking, brainstorm provocations",
|
|
191
|
+
"task_types": ["brainstorm", "design-review", "planning", "postmortem"]
|
|
192
|
+
},
|
|
193
|
+
"crucible-x": {
|
|
194
|
+
"name": "Crucible-X",
|
|
195
|
+
"icon": "🔥🧪",
|
|
196
|
+
"role": "Adversarial Reviewer",
|
|
197
|
+
"aliases": ["adversarial", "break-it", "breaker", "cx"],
|
|
198
|
+
"type": "specialist",
|
|
199
|
+
"persistent": false,
|
|
200
|
+
"personality_file": "agents/crucible-x/personality.md",
|
|
201
|
+
"tab_color": "#DC2626",
|
|
202
|
+
"description": "Adversarial testing, edge case discovery, failing test generation",
|
|
203
|
+
"task_types": ["adversarial-review", "security-test", "edge-case"],
|
|
204
|
+
"requires_approval": false
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
package/config/task-types.yaml
CHANGED
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
# Vibe Forge Task Types
|
|
2
|
-
# Used by Planning Hub for routing decisions
|
|
3
|
-
|
|
4
|
-
task_types:
|
|
5
|
-
frontend:
|
|
6
|
-
agent: anvil
|
|
7
|
-
description: "UI components, React/Vue/Svelte, CSS, client-side logic"
|
|
8
|
-
file_patterns:
|
|
9
|
-
- "src/components/**"
|
|
10
|
-
- "src/pages/**"
|
|
11
|
-
- "src/styles/**"
|
|
12
|
-
- "*.css"
|
|
13
|
-
- "*.scss"
|
|
14
|
-
|
|
15
|
-
backend:
|
|
16
|
-
agent: furnace
|
|
17
|
-
description: "API endpoints, server logic, database operations"
|
|
18
|
-
file_patterns:
|
|
19
|
-
- "src/api/**"
|
|
20
|
-
- "src/services/**"
|
|
21
|
-
- "src/models/**"
|
|
22
|
-
- "src/middleware/**"
|
|
23
|
-
- "prisma/**"
|
|
24
|
-
|
|
25
|
-
test:
|
|
26
|
-
agent: crucible
|
|
27
|
-
description: "Unit tests, integration tests, E2E tests, bug fixes"
|
|
28
|
-
file_patterns:
|
|
29
|
-
- "**/*.test.ts"
|
|
30
|
-
- "**/*.spec.ts"
|
|
31
|
-
- "tests/**"
|
|
32
|
-
- "e2e/**"
|
|
33
|
-
|
|
34
|
-
docs:
|
|
35
|
-
agent: scribe
|
|
36
|
-
description: "Documentation, README, API docs, inline comments"
|
|
37
|
-
file_patterns:
|
|
38
|
-
- "docs/**"
|
|
39
|
-
- "*.md"
|
|
40
|
-
- "openapi.yaml"
|
|
41
|
-
|
|
42
|
-
review:
|
|
43
|
-
agent: sentinel
|
|
44
|
-
description: "Code review, quality checks, PR review"
|
|
45
|
-
auto_assign: true # All completed tasks auto-route here
|
|
46
|
-
|
|
47
|
-
release:
|
|
48
|
-
agent: herald
|
|
49
|
-
description: "Version bumps, changelog, deployment, release notes"
|
|
50
|
-
file_patterns:
|
|
51
|
-
- "CHANGELOG.md"
|
|
52
|
-
- "package.json (version)"
|
|
53
|
-
- ".github/workflows/**"
|
|
54
|
-
|
|
55
|
-
devops:
|
|
56
|
-
agent: ember
|
|
57
|
-
description: "Infrastructure, CI/CD, Docker, server management"
|
|
58
|
-
file_patterns:
|
|
59
|
-
- "Dockerfile"
|
|
60
|
-
- "docker-compose.yaml"
|
|
61
|
-
- ".github/workflows/**"
|
|
62
|
-
- "terraform/**"
|
|
63
|
-
- "k8s/**"
|
|
64
|
-
|
|
65
|
-
security:
|
|
66
|
-
agent: aegis
|
|
67
|
-
description: "Security audit, vulnerability fixes, auth hardening"
|
|
68
|
-
requires_approval: true # Needs Planning Hub sign-off
|
|
69
|
-
|
|
70
|
-
redteam:
|
|
71
|
-
agent: slag
|
|
72
|
-
description: "Offensive security testing, penetration testing, red team engagements"
|
|
73
|
-
requires_approval: true # All red team actions need sign-off
|
|
74
|
-
|
|
75
|
-
priorities:
|
|
76
|
-
critical:
|
|
77
|
-
sla_hours: 0
|
|
78
|
-
description: "Blocking other work, production issue"
|
|
79
|
-
|
|
80
|
-
high:
|
|
81
|
-
sla_hours: 8
|
|
82
|
-
description: "Sprint commitment, needed today"
|
|
83
|
-
|
|
84
|
-
medium:
|
|
85
|
-
sla_hours: 40
|
|
86
|
-
description: "Sprint goal, this sprint"
|
|
87
|
-
|
|
88
|
-
low:
|
|
89
|
-
sla_hours: null
|
|
90
|
-
description: "Nice to have, when available"
|
|
91
|
-
|
|
92
|
-
complexity:
|
|
93
|
-
trivial:
|
|
94
|
-
estimated_minutes: 15
|
|
95
|
-
description: "Config change, typo fix"
|
|
96
|
-
|
|
97
|
-
low:
|
|
98
|
-
estimated_minutes: 30
|
|
99
|
-
description: "Simple function, minor feature"
|
|
100
|
-
|
|
101
|
-
medium:
|
|
102
|
-
estimated_minutes: 60
|
|
103
|
-
description: "New component, API endpoint"
|
|
104
|
-
|
|
105
|
-
high:
|
|
106
|
-
estimated_minutes: 180
|
|
107
|
-
description: "Complex feature, refactoring"
|
|
108
|
-
|
|
109
|
-
unknown:
|
|
110
|
-
estimated_minutes: null
|
|
111
|
-
description: "Needs investigation"
|
|
1
|
+
# Vibe Forge Task Types
|
|
2
|
+
# Used by Planning Hub for routing decisions
|
|
3
|
+
|
|
4
|
+
task_types:
|
|
5
|
+
frontend:
|
|
6
|
+
agent: anvil
|
|
7
|
+
description: "UI components, React/Vue/Svelte, CSS, client-side logic"
|
|
8
|
+
file_patterns:
|
|
9
|
+
- "src/components/**"
|
|
10
|
+
- "src/pages/**"
|
|
11
|
+
- "src/styles/**"
|
|
12
|
+
- "*.css"
|
|
13
|
+
- "*.scss"
|
|
14
|
+
|
|
15
|
+
backend:
|
|
16
|
+
agent: furnace
|
|
17
|
+
description: "API endpoints, server logic, database operations"
|
|
18
|
+
file_patterns:
|
|
19
|
+
- "src/api/**"
|
|
20
|
+
- "src/services/**"
|
|
21
|
+
- "src/models/**"
|
|
22
|
+
- "src/middleware/**"
|
|
23
|
+
- "prisma/**"
|
|
24
|
+
|
|
25
|
+
test:
|
|
26
|
+
agent: crucible
|
|
27
|
+
description: "Unit tests, integration tests, E2E tests, bug fixes"
|
|
28
|
+
file_patterns:
|
|
29
|
+
- "**/*.test.ts"
|
|
30
|
+
- "**/*.spec.ts"
|
|
31
|
+
- "tests/**"
|
|
32
|
+
- "e2e/**"
|
|
33
|
+
|
|
34
|
+
docs:
|
|
35
|
+
agent: scribe
|
|
36
|
+
description: "Documentation, README, API docs, inline comments"
|
|
37
|
+
file_patterns:
|
|
38
|
+
- "docs/**"
|
|
39
|
+
- "*.md"
|
|
40
|
+
- "openapi.yaml"
|
|
41
|
+
|
|
42
|
+
review:
|
|
43
|
+
agent: sentinel
|
|
44
|
+
description: "Code review, quality checks, PR review"
|
|
45
|
+
auto_assign: true # All completed tasks auto-route here
|
|
46
|
+
|
|
47
|
+
release:
|
|
48
|
+
agent: herald
|
|
49
|
+
description: "Version bumps, changelog, deployment, release notes"
|
|
50
|
+
file_patterns:
|
|
51
|
+
- "CHANGELOG.md"
|
|
52
|
+
- "package.json (version)"
|
|
53
|
+
- ".github/workflows/**"
|
|
54
|
+
|
|
55
|
+
devops:
|
|
56
|
+
agent: ember
|
|
57
|
+
description: "Infrastructure, CI/CD, Docker, server management"
|
|
58
|
+
file_patterns:
|
|
59
|
+
- "Dockerfile"
|
|
60
|
+
- "docker-compose.yaml"
|
|
61
|
+
- ".github/workflows/**"
|
|
62
|
+
- "terraform/**"
|
|
63
|
+
- "k8s/**"
|
|
64
|
+
|
|
65
|
+
security:
|
|
66
|
+
agent: aegis
|
|
67
|
+
description: "Security audit, vulnerability fixes, auth hardening"
|
|
68
|
+
requires_approval: true # Needs Planning Hub sign-off
|
|
69
|
+
|
|
70
|
+
redteam:
|
|
71
|
+
agent: slag
|
|
72
|
+
description: "Offensive security testing, penetration testing, red team engagements"
|
|
73
|
+
requires_approval: true # All red team actions need sign-off
|
|
74
|
+
|
|
75
|
+
priorities:
|
|
76
|
+
critical:
|
|
77
|
+
sla_hours: 0
|
|
78
|
+
description: "Blocking other work, production issue"
|
|
79
|
+
|
|
80
|
+
high:
|
|
81
|
+
sla_hours: 8
|
|
82
|
+
description: "Sprint commitment, needed today"
|
|
83
|
+
|
|
84
|
+
medium:
|
|
85
|
+
sla_hours: 40
|
|
86
|
+
description: "Sprint goal, this sprint"
|
|
87
|
+
|
|
88
|
+
low:
|
|
89
|
+
sla_hours: null
|
|
90
|
+
description: "Nice to have, when available"
|
|
91
|
+
|
|
92
|
+
complexity:
|
|
93
|
+
trivial:
|
|
94
|
+
estimated_minutes: 15
|
|
95
|
+
description: "Config change, typo fix"
|
|
96
|
+
|
|
97
|
+
low:
|
|
98
|
+
estimated_minutes: 30
|
|
99
|
+
description: "Simple function, minor feature"
|
|
100
|
+
|
|
101
|
+
medium:
|
|
102
|
+
estimated_minutes: 60
|
|
103
|
+
description: "New component, API endpoint"
|
|
104
|
+
|
|
105
|
+
high:
|
|
106
|
+
estimated_minutes: 180
|
|
107
|
+
description: "Complex feature, refactoring"
|
|
108
|
+
|
|
109
|
+
unknown:
|
|
110
|
+
estimated_minutes: null
|
|
111
|
+
description: "Needs investigation"
|