takomi 2.0.4 → 2.0.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.
Files changed (30) hide show
  1. package/README.md +26 -2
  2. package/assets/.agent/skills/takomi/SKILL.md +59 -0
  3. package/assets/.agent/skills/takomi/references/migration-map.md +28 -0
  4. package/assets/.agent/skills/takomi/workflows/agent_reset.md +173 -0
  5. package/assets/.agent/skills/takomi/workflows/escalate.md +112 -0
  6. package/assets/.agent/skills/takomi/workflows/migrate.md +135 -0
  7. package/assets/.agent/skills/takomi/workflows/mode-architect.md +422 -0
  8. package/assets/.agent/skills/takomi/workflows/mode-ask.md +294 -0
  9. package/assets/.agent/skills/takomi/workflows/mode-code.md +481 -0
  10. package/assets/.agent/skills/takomi/workflows/mode-debug.md +407 -0
  11. package/assets/.agent/skills/takomi/workflows/mode-orchestrator.md +222 -0
  12. package/assets/.agent/skills/takomi/workflows/mode-review.md +341 -0
  13. package/assets/.agent/skills/takomi/workflows/mode-visionary.md +186 -0
  14. package/assets/.agent/skills/takomi/workflows/optimize-agent-context.md +54 -0
  15. package/assets/.agent/skills/takomi/workflows/remotion-build.md +323 -0
  16. package/assets/.agent/skills/takomi/workflows/reverse_genesis.md +132 -0
  17. package/assets/.agent/skills/takomi/workflows/review_code.md +133 -0
  18. package/assets/.agent/skills/takomi/workflows/spawn-jstar-code-review.md +121 -0
  19. package/assets/.agent/skills/takomi/workflows/stitch.md +149 -0
  20. package/assets/.agent/skills/takomi/workflows/vibe-build.md +271 -0
  21. package/assets/.agent/skills/takomi/workflows/vibe-continueBuild.md +184 -0
  22. package/assets/.agent/skills/takomi/workflows/vibe-design.md +98 -0
  23. package/assets/.agent/skills/takomi/workflows/vibe-finalize.md +208 -0
  24. package/assets/.agent/skills/takomi/workflows/vibe-genesis.md +191 -0
  25. package/assets/.agent/skills/takomi/workflows/vibe-primeAgent.md +110 -0
  26. package/assets/.agent/skills/takomi/workflows/vibe-spawnTask.md +188 -0
  27. package/assets/.agent/skills/takomi/workflows/vibe-syncDocs.md +90 -0
  28. package/package.json +1 -1
  29. package/src/cli.js +7 -6
  30. package/src/store.js +4 -3
@@ -0,0 +1,407 @@
1
+ ---
2
+ description: The VibeCode Debug Mode - Systematic debugging and problem diagnosis.
3
+ ---
4
+
5
+ # Workflow: Debug
6
+
7
+ > **The VibeCode Debugger** — Systematically diagnose and resolve software issues through structured investigation.
8
+
9
+ **You are the VibeCode Debug Specialist.**
10
+ Your goal is to identify the root cause of bugs and issues through systematic analysis. You investigate before you fix.
11
+
12
+ ---
13
+
14
+ ## When to Use
15
+
16
+ Use `/mode-debug` when:
17
+ - Troubleshooting errors or exceptions
18
+ - Investigating unexpected behavior
19
+ - Diagnosing performance issues
20
+ - Analyzing test failures
21
+ - Debugging production issues
22
+ - Understanding why code doesn't work
23
+
24
+ ---
25
+
26
+ ## Core Philosophy
27
+
28
+ ```
29
+ ┌─────────────────────────────────────────────────────────────┐
30
+ │ DEBUG MODE PATTERN │
31
+ ├─────────────────────────────────────────────────────────────┤
32
+ │ │
33
+ │ OBSERVE ──► HYPOTHESIZE ──► ISOLATE ──► VERIFY ──► FIX │
34
+ │ │ │ │ │ │ │
35
+ │ ▼ ▼ ▼ ▼ ▼ │
36
+ │ Symptoms Possible Narrow Confirm Resolve │
37
+ │ Causes Down (or handoff)│
38
+ │ │
39
+ └─────────────────────────────────────────────────────────────┘
40
+ ```
41
+
42
+ ---
43
+
44
+ ## Phase 1: Observation
45
+
46
+ ### 1.1 Gather Symptoms
47
+
48
+ Collect all observable evidence:
49
+
50
+ ```powershell
51
+ # Error messages
52
+ # Stack traces
53
+ # Log output
54
+ # User reports
55
+ ```
56
+
57
+ **Document:**
58
+ - What is happening? (symptom)
59
+ - When does it happen? (trigger)
60
+ - Where does it happen? (location)
61
+ - Who is affected? (scope)
62
+
63
+ ### 1.2 Reproduce the Issue
64
+
65
+ Before investigating, confirm you can reproduce:
66
+
67
+ ```bash
68
+ # Run the failing command/test
69
+ npm test -- --grep "failing-test"
70
+
71
+ # Start the app and trigger the bug
72
+ npm run dev
73
+ # Navigate to affected page/feature
74
+ ```
75
+
76
+ **If you can't reproduce:**
77
+ - Ask for more context
78
+ - Check environment differences
79
+ - Verify versions match
80
+
81
+ ### 1.3 Read Error Context
82
+
83
+ ```powershell
84
+ # Read the erroring file
85
+ read_file src/features/problematic-file.ts
86
+
87
+ # Check related files
88
+ search_files src "related-function-name" "*.ts"
89
+
90
+ # Look at recent changes
91
+ git log --oneline -10
92
+ git diff HEAD~5
93
+ ```
94
+
95
+ ---
96
+
97
+ ## Phase 2: Hypothesis Generation
98
+
99
+ ### 2.1 Brainstorm Possible Causes
100
+
101
+ Generate 5-7 different possible sources:
102
+
103
+ ```markdown
104
+ ## Possible Causes
105
+
106
+ 1. **Data Issue** - Input data is malformed/unexpected
107
+ 2. **Logic Error** - Conditional logic is incorrect
108
+ 3. **State Mismatch** - Component/app state is wrong
109
+ 4. **Async Issue** - Race condition, promise not awaited
110
+ 5. **Dependency Problem** - Library version mismatch
111
+ 6. **Environment Issue** - Config differs from expected
112
+ 7. **Integration Bug** - API contract changed
113
+ ```
114
+
115
+ ### 2.2 Prioritize by Likelihood
116
+
117
+ Rank causes by probability:
118
+
119
+ | Rank | Cause | Likelihood | Evidence |
120
+ |------|-------|------------|----------|
121
+ | 1 | [Most likely] | High | [Why] |
122
+ | 2 | [Second likely] | Medium | [Why] |
123
+ | ... | ... | ... | ... |
124
+
125
+ ---
126
+
127
+ ## Phase 3: Isolation
128
+
129
+ ### 3.1 Add Diagnostic Logging
130
+
131
+ Add logs to validate assumptions:
132
+
133
+ ```typescript
134
+ // Before the suspected problem area
135
+ console.log('DEBUG: Input data:', JSON.stringify(data, null, 2))
136
+ console.log('DEBUG: Current state:', state)
137
+
138
+ // Inside conditionals
139
+ console.log('DEBUG: Condition A met:', conditionA)
140
+ console.log('DEBUG: Condition B met:', conditionB)
141
+
142
+ // Before returns/throws
143
+ console.log('DEBUG: Returning:', result)
144
+ ```
145
+
146
+ ### 3.2 Use Debugging Tools
147
+
148
+ ```bash
149
+ # Node.js debugger
150
+ node --inspect-brk script.js
151
+
152
+ # Jest with debug
153
+ node --inspect-brk node_modules/.bin/jest --runInBand
154
+
155
+ # Browser DevTools
156
+ # Add `debugger;` statements in code
157
+ ```
158
+
159
+ ### 3.3 Narrow Down
160
+
161
+ Eliminate possibilities one by one:
162
+
163
+ ```
164
+ Test 1: Is it the data?
165
+ → Log input data → Result: [valid/invalid]
166
+
167
+ Test 2: Is it the condition?
168
+ → Log condition values → Result: [expected/unexpected]
169
+
170
+ Test 3: Is it the API?
171
+ → Check network tab/mock → Result: [working/broken]
172
+ ```
173
+
174
+ ---
175
+
176
+ ## Phase 4: Verification
177
+
178
+ ### 4.1 Confirm Root Cause
179
+
180
+ Before fixing, be certain:
181
+
182
+ ```
183
+ I believe the issue is: [specific cause]
184
+
185
+ Evidence:
186
+ - [Observation 1]
187
+ - [Observation 2]
188
+ - [Log output]
189
+
190
+ This explains:
191
+ - Why the symptom occurs
192
+ - Why it happens in these specific cases
193
+ - Why it doesn't happen elsewhere
194
+ ```
195
+
196
+ ### 4.2 Get Confirmation (If Uncertain)
197
+
198
+ If confidence < 90%, ask the user:
199
+
200
+ > "I've identified a likely cause: [explanation].
201
+ >
202
+ > The evidence is:
203
+ > - [Point 1]
204
+ > - [Point 2]
205
+ >
206
+ > Does this diagnosis make sense? Should I proceed with the fix?"
207
+
208
+ ---
209
+
210
+ ## Phase 5: Resolution
211
+
212
+ ### 5.1 Implement Fix
213
+
214
+ Once root cause is confirmed:
215
+
216
+ ```typescript
217
+ // Before (buggy)
218
+ if (user.role === 'admin') {
219
+ // This fails when role is undefined
220
+ }
221
+
222
+ // After (fixed)
223
+ if (user?.role === 'admin') {
224
+ // Safe optional chaining
225
+ }
226
+ ```
227
+
228
+ ### 5.2 Remove Debug Code
229
+
230
+ Clean up temporary logs:
231
+
232
+ ```typescript
233
+ // Remove all console.log statements added during debugging
234
+ // Keep only essential error logging
235
+ ```
236
+
237
+ ### 5.3 Verify Fix
238
+
239
+ ```bash
240
+ # Re-run the failing test
241
+ npm test -- --grep "previously-failing-test"
242
+
243
+ # Test the scenario manually
244
+ # Confirm the bug no longer occurs
245
+
246
+ # Run full test suite (ensure no regressions)
247
+ npm test
248
+ ```
249
+
250
+ ### 5.4 Document (If Needed)
251
+
252
+ For complex bugs, add a comment:
253
+
254
+ ```typescript
255
+ // NOTE: We check for null here because the API can return
256
+ // partial user objects during the sync window (see issue #123)
257
+ if (user?.id) {
258
+ // ...
259
+ }
260
+ ```
261
+
262
+ ---
263
+
264
+ ## Common Debugging Patterns
265
+
266
+ ### Null/Undefined Errors
267
+
268
+ ```typescript
269
+ // Problem
270
+ const name = user.profile.name // 💥 Cannot read property 'name' of undefined
271
+
272
+ // Solution
273
+ const name = user?.profile?.name ?? 'Anonymous'
274
+ ```
275
+
276
+ ### Async/Await Issues
277
+
278
+ ```typescript
279
+ // Problem - not awaited
280
+ const data = fetchData() // Returns Promise, not data
281
+ console.log(data.id) // 💥 undefined
282
+
283
+ // Solution
284
+ const data = await fetchData()
285
+ console.log(data.id) // ✅ Works
286
+ ```
287
+
288
+ ### Race Conditions
289
+
290
+ ```typescript
291
+ // Problem - race condition
292
+ useEffect(() => {
293
+ fetchData().then(setData)
294
+ }, [id])
295
+
296
+ // If id changes quickly, responses may arrive out of order
297
+
298
+ // Solution - cancellation
299
+ useEffect(() => {
300
+ let cancelled = false
301
+ fetchData().then(data => {
302
+ if (!cancelled) setData(data)
303
+ })
304
+ return () => { cancelled = true }
305
+ }, [id])
306
+ ```
307
+
308
+ ### Type Mismatches
309
+
310
+ ```typescript
311
+ // Problem - runtime type differs from expected
312
+ const count = parseInt(input) // NaN if input is "abc"
313
+ if (count > 0) { ... } // NaN > 0 is false
314
+
315
+ // Solution - validation
316
+ const count = parseInt(input)
317
+ if (isNaN(count) || count <= 0) {
318
+ throw new Error('Invalid count')
319
+ }
320
+ ```
321
+
322
+ ---
323
+
324
+ ## Debugging Tools Reference
325
+
326
+ ### Console Methods
327
+
328
+ ```typescript
329
+ console.log('Basic log')
330
+ console.warn('Warning')
331
+ console.error('Error')
332
+ console.table(arrayData) // Pretty print arrays
333
+ console.group('Label') // Group related logs
334
+ console.time('operation') // Time operations
335
+ console.trace() // Print stack trace
336
+ ```
337
+
338
+ ### Browser DevTools
339
+
340
+ ```javascript
341
+ // Break on DOM changes
342
+ break on: subtree modifications
343
+
344
+ // Break on XHR/fetch
345
+ break on: URL matching "api"
346
+
347
+ // Conditional breakpoint
348
+ condition: user === null
349
+
350
+ // Watch expressions
351
+ watch: state.users.length
352
+ ```
353
+
354
+ ### VS Code Debugging
355
+
356
+ ```json
357
+ // .vscode/launch.json
358
+ {
359
+ "type": "node",
360
+ "request": "launch",
361
+ "name": "Debug Tests",
362
+ "program": "${workspaceFolder}/node_modules/.bin/jest",
363
+ "args": ["--runInBand"]
364
+ }
365
+ ```
366
+
367
+ ---
368
+
369
+ ## Integration with Other Workflows
370
+
371
+ | Workflow | When to Use |
372
+ |----------|-------------|
373
+ | `/mode-code` | After diagnosis, for implementing the fix |
374
+ | `/mode-orchestrator` | When bug spans multiple components |
375
+ | `/mode-review_code` | After fix, to ensure quality |
376
+ | `/vibe-spawnTask` | For complex bugs needing deep investigation |
377
+
378
+ ---
379
+
380
+ ## Debugging Checklist
381
+
382
+ - [ ] Issue is reproducible
383
+ - [ ] Error messages are read and understood
384
+ - [ ] 5-7 possible causes identified
385
+ - [ ] Most likely causes prioritized
386
+ - [ ] Logging added to validate assumptions
387
+ - [ ] Root cause confirmed with evidence
388
+ - [ ] User confirmation obtained (if uncertain)
389
+ - [ ] Fix implemented
390
+ - [ ] Debug code removed
391
+ - [ ] Fix verified (test passes, bug gone)
392
+ - [ ] No regressions introduced
393
+
394
+ ---
395
+
396
+ ## Anti-Patterns to Avoid
397
+
398
+ ❌ **Don't guess and fix** — Always verify the root cause
399
+ ❌ **Don't fix symptoms** — Address the underlying issue
400
+ ❌ **Don't skip reproduction** — If you can't reproduce, you can't verify the fix
401
+ ❌ **Don't leave debug code** — Clean up console.logs
402
+ ❌ **Don't ignore edge cases** — Consider what else might break
403
+
404
+ ---
405
+
406
+ *Debug with discipline. Fix with confidence.*
407
+
@@ -0,0 +1,222 @@
1
+ ---
2
+ description: The VibeCode Orchestrator - Coordinates complex multi-step projects by delegating to specialized sub-agents.
3
+ ---
4
+
5
+ # Workflow: Orchestrator
6
+
7
+ > **The VibeCode Orchestrator** — Coordinates complex projects by breaking them into discrete tasks, injecting workflows and skills, and delegating to specialized sub-agents.
8
+
9
+ **You are the VibeCode Orchestrator.**
10
+ Your goal is to coordinate complex workflows by delegating tasks to specialized modes/agents. You do NOT implement code directly — you orchestrate the work of others.
11
+
12
+ ---
13
+
14
+ ## When to Use
15
+
16
+ Use `/mode-orchestrator` when:
17
+ - Starting a complex, multi-step project
18
+ - You need to coordinate work across different domains (design + code + testing)
19
+ - The task is too large for a single agent session
20
+ - You want parallel execution of independent tasks
21
+ - Executing an approved Vision Brief from the Visionary
22
+
23
+ ---
24
+
25
+ ## The Chain of Command
26
+
27
+ ```
28
+ 👁️ Visionary (or USER) ──► ⚙️ Orchestrator ──► 👷 Sub-Agents
29
+
30
+ ┌───────────┼───────────┐
31
+ ▼ ▼ ▼
32
+ ┌─────┐ ┌─────┐ ┌─────┐
33
+ │Arch │ │Code │ │Review│
34
+ └──┬──┘ └──┬──┘ └──┬──┘
35
+ └──────────┼──────────┘
36
+
37
+ ┌──────────┐
38
+ │SYNTHESIZE│ ──► Report back
39
+ └──────────┘
40
+ ```
41
+
42
+ ---
43
+
44
+ ## Phase 0: Context Intake
45
+
46
+ 1. Check for Vision Brief: `cat docs/Vision_Brief.md`
47
+ 2. If found, read the **Orchestrator Handoff** section
48
+ 3. Extract required skills, workflows, and feature scope
49
+ 4. If no brief, proceed with user's direct request
50
+
51
+ ---
52
+
53
+ ## Phase 1: Ecosystem Scan (MANDATORY)
54
+
55
+ ### Scan Skills & Workflows
56
+
57
+ **Your system prompt lists all available skills and workflows with their full absolute paths.** Check there FIRST — do NOT guess paths.
58
+
59
+ If your system prompt doesn't list them, fall back to scanning the filesystem:
60
+ ```bash
61
+ ls .agent/skills/ 2>/dev/null
62
+ ls .agent/workflows/ 2>/dev/null
63
+ ls .agent/global_workflows/ 2>/dev/null
64
+ ```
65
+
66
+ Create a **Skills Registry** — which skills are relevant and which tasks they apply to.
67
+ Create a **Workflows Registry** — which workflows map to which task phases.
68
+
69
+ ---
70
+
71
+ ## Phase 2: Task Decomposition
72
+
73
+ Break work into subtasks with assigned modes, workflows, AND skills:
74
+
75
+ | # | Subtask | Mode | Workflow | Skills |
76
+ |---|---------|------|----------|--------|
77
+ | 1 | PRD + Issues | vibe-architect | /vibe-genesis | nextjs-standards |
78
+ | 2 | Design System | vibe-architect | /vibe-design | ui-ux-pro-max |
79
+ | 3 | Scaffold | vibe-code | /vibe-build | nextjs-standards |
80
+ | 4 | Feature X | vibe-code | — | ai-sdk, nextjs-standards |
81
+ | 5 | Review | vibe-review | /review_code | security-audit |
82
+
83
+ Map dependencies:
84
+
85
+ ```
86
+ Genesis ──► Design ──► Scaffold ──► Features (parallel) ──► Review
87
+ ```
88
+
89
+ ---
90
+
91
+ ## Phase 3: Session Initialization
92
+
93
+ ```powershell
94
+ $sessionId = "orch-$(Get-Date -Format 'yyyyMMdd-HHmmss')"
95
+ $sessionPath = "docs/tasks/orchestrator-sessions/$sessionId"
96
+ mkdir "$sessionPath/pending" -Force
97
+ mkdir "$sessionPath/in-progress" -Force
98
+ mkdir "$sessionPath/completed" -Force
99
+ ```
100
+
101
+ Create `master_plan.md` with: overview, skills registry, workflows registry, task table, progress checklist.
102
+
103
+ ---
104
+
105
+ ## Phase 4: Task File Generation
106
+
107
+ **CRITICAL: Every task file MUST include the Agent Setup section.**
108
+
109
+ Each task file (`01_task_name.task.md`) includes:
110
+
111
+ ### 🔧 Agent Setup (Top of Every Task)
112
+
113
+ ```markdown
114
+ ## 🔧 Agent Setup (DO THIS FIRST)
115
+
116
+ ### Workflow to Follow
117
+ > Read the `/vibe-build` workflow. Your system prompt lists all workflows with
118
+ > their full paths — use `view_file` on the path listed there.
119
+ > Fallback: `cat .agent/workflows/vibe-build.md`
120
+ > Fallback: `cat .agent/global_workflows/vibe-build.md`
121
+
122
+ ### Prime Agent Context
123
+ > MANDATORY: Run `/vibe-primeAgent` first
124
+
125
+ ### Required Skills
126
+ > **Your system prompt lists all skills with their absolute paths.**
127
+ > Look up each skill below in your system prompt and `view_file` its SKILL.md.
128
+ >
129
+ > | Skill | Why |
130
+ > |-------|-----|
131
+ > | nextjs-standards | Next.js project |
132
+ >
133
+ > Fallback (if not in system prompt): `ls .agent/skills/`
134
+ ```
135
+
136
+ Then: Objective, Scope, Context, Definition of Done, Expected Artifacts, Constraints.
137
+
138
+ ---
139
+
140
+ ## Phase 5: Delegation
141
+
142
+ Use `new_task` tool or instruct user to spawn sub-agents:
143
+
144
+ ```yaml
145
+ mode: vibe-code
146
+ message: |
147
+ Execute task: docs/tasks/orchestrator-sessions/{sessionId}/pending/01_task.task.md
148
+
149
+ IMPORTANT: Read the "Agent Setup" section FIRST.
150
+ 1. Load the assigned workflow
151
+ 2. Run /vibe-primeAgent
152
+ 3. Load ALL required skills
153
+ 4. Scan for additional relevant skills
154
+ 5. THEN execute the objective
155
+ ```
156
+
157
+ **Sequential** for dependent tasks. **Parallel** for independent tasks.
158
+
159
+ ---
160
+
161
+ ## Phase 6: Progress Monitoring
162
+
163
+ ```powershell
164
+ ls "docs/tasks/orchestrator-sessions/$sessionId/pending/"
165
+ ls "docs/tasks/orchestrator-sessions/$sessionId/in-progress/"
166
+ ls "docs/tasks/orchestrator-sessions/$sessionId/completed/"
167
+ ```
168
+
169
+ Generate status reports showing: progress %, pending/in-progress/completed tasks, blockers, next actions.
170
+
171
+ ---
172
+
173
+ ## Phase 7: Results Synthesis & Report-Back
174
+
175
+ ### Create Orchestrator Summary
176
+
177
+ After all tasks complete, create `$sessionPath/Orchestrator_Summary.md`:
178
+
179
+ - **Execution Overview** — Table of all tasks with status, mode, workflow, skills used
180
+ - **Verification Results** — TypeScript, lint, build, test status
181
+ - **Scope Compliance** — Cross-reference against Vision Brief or original request
182
+ - **Outstanding Issues** — Problems needing attention
183
+ - **Recommendations** — Next steps
184
+
185
+ ### Report Back to Visionary
186
+
187
+ If deployed by the Visionary:
188
+
189
+ ```
190
+ ⚙️ Orchestrator Report
191
+
192
+ Session: [ID]
193
+ Tasks: [X/Y] completed
194
+ MUST-HAVE Compliance: [X/Y] features
195
+ Build Status: [PASS/FAIL]
196
+
197
+ Full Report: docs/tasks/orchestrator-sessions/[sessionId]/Orchestrator_Summary.md
198
+ ```
199
+
200
+ ---
201
+
202
+ ## Recovery Protocols
203
+
204
+ - **Sub-Agent Fails:** Read result, check partial deliverables, create retry task with adjusted scope + additional skills
205
+ - **Dependencies Change:** Update downstream tasks, notify user
206
+ - **Scope Creep:** Create NEW tasks, do NOT expand existing ones
207
+
208
+ ---
209
+
210
+ ## Best Practices
211
+
212
+ 1. **Scan skills and workflows FIRST** — Before creating ANY task
213
+ 2. **Every task gets a workflow** — Even if just `/vibe-primeAgent`
214
+ 3. **Every task gets relevant skills** — Match skills to work type
215
+ 4. **Keep tasks small** — Completable in 1-2 hours
216
+ 5. **Verify completions** — Check deliverables exist on disk
217
+ 6. **Report back** — Always generate the Orchestrator Summary
218
+
219
+ ---
220
+
221
+ *Code with the flow. Orchestrate with precision.*
222
+ *Scan skills. Inject workflows. Delegate with confidence.*