@su-record/vibe 2.5.2 → 2.5.4
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/commands/vibe.spec.md +25 -12
- package/package.json +1 -1
package/commands/vibe.spec.md
CHANGED
|
@@ -264,7 +264,14 @@ Read ~/.claude/vibe/languages/typescript-react.md
|
|
|
264
264
|
|
|
265
265
|
### 3. Parallel Research (v2.5.0) - MANDATORY AFTER requirements confirmed
|
|
266
266
|
|
|
267
|
-
|
|
267
|
+
**🚨🚨🚨 ABSOLUTE RULE: YOU MUST USE BASH TOOL FOR RESEARCH 🚨🚨🚨**
|
|
268
|
+
|
|
269
|
+
**STOP! Before doing ANY research, read this carefully:**
|
|
270
|
+
|
|
271
|
+
1. **DO NOT** use Task tool to spawn research agents
|
|
272
|
+
2. **DO NOT** use context7 MCP directly for research
|
|
273
|
+
3. **DO NOT** use WebSearch tool directly for research
|
|
274
|
+
4. **YOU MUST** use Bash tool to call the orchestrator command below
|
|
268
275
|
|
|
269
276
|
**When to trigger:**
|
|
270
277
|
1. ✅ Feature type decided (e.g., "passkey authentication")
|
|
@@ -272,27 +279,33 @@ Read ~/.claude/vibe/languages/typescript-react.md
|
|
|
272
279
|
3. ✅ Language guide copied (step 2.5)
|
|
273
280
|
4. ✅ Core requirements collected
|
|
274
281
|
|
|
275
|
-
**→ IMMEDIATELY
|
|
282
|
+
**→ IMMEDIATELY execute this EXACT Bash command (replace placeholders):**
|
|
276
283
|
|
|
277
|
-
**Execution via Orchestrator (4 agents + Multi-LLM in parallel):**
|
|
278
284
|
```bash
|
|
279
285
|
node -e "import('@su-record/vibe/orchestrator').then(o => o.research('[FEATURE]', ['[STACK1]', '[STACK2]']).then(r => console.log(r.content[0].text)))"
|
|
280
286
|
```
|
|
281
287
|
|
|
282
|
-
**
|
|
288
|
+
**Concrete example - copy, modify, and run via Bash tool:**
|
|
283
289
|
```bash
|
|
284
|
-
# After confirming: passkey auth + React + Supabase
|
|
285
290
|
node -e "import('@su-record/vibe/orchestrator').then(o => o.research('passkey authentication', ['React', 'Supabase']).then(r => console.log(r.content[0].text)))"
|
|
286
291
|
```
|
|
287
292
|
|
|
288
|
-
**
|
|
293
|
+
**WHY: The orchestrator runs 8 parallel research tasks including GPT and Gemini for 3-way validation.**
|
|
294
|
+
|
|
295
|
+
**What the orchestrator runs in parallel:**
|
|
296
|
+
|
|
297
|
+
| Component | Role | Source |
|
|
298
|
+
|-----------|------|--------|
|
|
299
|
+
| Claude Agent: `best-practices-agent` | Best practices for [feature] + [stack] | WebSearch |
|
|
300
|
+
| Claude Agent: `framework-docs-agent` | Latest docs via context7 | context7 MCP |
|
|
301
|
+
| Claude Agent: `codebase-patterns-agent` | Similar patterns in existing codebase | Glob, Grep |
|
|
302
|
+
| Claude Agent: `security-advisory-agent` | Security advisories for [feature] | WebSearch |
|
|
303
|
+
| **GPT: Best Practices** | Architecture patterns, code conventions | GPT API |
|
|
304
|
+
| **GPT: Security** | CVE database, vulnerability details | GPT API |
|
|
305
|
+
| **Gemini: Best Practices** | Latest trends, framework updates | Gemini API |
|
|
306
|
+
| **Gemini: Security** | Latest security advisories, patches | Gemini API |
|
|
289
307
|
|
|
290
|
-
|
|
291
|
-
|-------|------|-------|
|
|
292
|
-
| `best-practices-agent` | Best practices for [feature] + [stack] | WebSearch |
|
|
293
|
-
| `framework-docs-agent` | Latest docs via context7 | context7 MCP |
|
|
294
|
-
| `codebase-patterns-agent` | Similar patterns in existing codebase | Glob, Grep |
|
|
295
|
-
| `security-advisory-agent` | Security advisories for [feature] | WebSearch |
|
|
308
|
+
**🚨 IF YOU USE TASK TOOL INSTEAD OF BASH, GPT/GEMINI WILL NOT BE CALLED! 🚨**
|
|
296
309
|
|
|
297
310
|
#### 3.1 Multi-LLM Research Enhancement (v2.5.0)
|
|
298
311
|
|