@su-record/vibe 2.5.3 → 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 +15 -11
- 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,25 +279,20 @@ 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
|
|
276
|
-
|
|
277
|
-
**🚨 MANDATORY: Use Bash tool to call orchestrator**
|
|
282
|
+
**→ IMMEDIATELY execute this EXACT Bash command (replace placeholders):**
|
|
278
283
|
|
|
279
|
-
❌ **FORBIDDEN:** Using Task tool to spawn agents directly
|
|
280
|
-
✅ **REQUIRED:** Use Bash tool to run the orchestrator command below
|
|
281
|
-
|
|
282
|
-
**Execution via Bash (REQUIRED):**
|
|
283
284
|
```bash
|
|
284
285
|
node -e "import('@su-record/vibe/orchestrator').then(o => o.research('[FEATURE]', ['[STACK1]', '[STACK2]']).then(r => console.log(r.content[0].text)))"
|
|
285
286
|
```
|
|
286
287
|
|
|
287
|
-
**
|
|
288
|
+
**Concrete example - copy, modify, and run via Bash tool:**
|
|
288
289
|
```bash
|
|
289
|
-
# After confirming: passkey auth + React + Supabase
|
|
290
290
|
node -e "import('@su-record/vibe/orchestrator').then(o => o.research('passkey authentication', ['React', 'Supabase']).then(r => console.log(r.content[0].text)))"
|
|
291
291
|
```
|
|
292
292
|
|
|
293
|
-
**
|
|
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:**
|
|
294
296
|
|
|
295
297
|
| Component | Role | Source |
|
|
296
298
|
|-----------|------|--------|
|
|
@@ -303,6 +305,8 @@ node -e "import('@su-record/vibe/orchestrator').then(o => o.research('passkey au
|
|
|
303
305
|
| **Gemini: Best Practices** | Latest trends, framework updates | Gemini API |
|
|
304
306
|
| **Gemini: Security** | Latest security advisories, patches | Gemini API |
|
|
305
307
|
|
|
308
|
+
**🚨 IF YOU USE TASK TOOL INSTEAD OF BASH, GPT/GEMINI WILL NOT BE CALLED! 🚨**
|
|
309
|
+
|
|
306
310
|
#### 3.1 Multi-LLM Research Enhancement (v2.5.0)
|
|
307
311
|
|
|
308
312
|
**vibe = Quality Assurance Framework**
|