@su-record/vibe 2.5.2 → 2.5.3

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.
@@ -272,27 +272,36 @@ Read ~/.claude/vibe/languages/typescript-react.md
272
272
  3. ✅ Language guide copied (step 2.5)
273
273
  4. ✅ Core requirements collected
274
274
 
275
- **→ IMMEDIATELY run orchestrator research. NO EXCEPTIONS.**
275
+ **→ IMMEDIATELY run orchestrator research via Bash. NO EXCEPTIONS.**
276
276
 
277
- **Execution via Orchestrator (4 agents + Multi-LLM in parallel):**
277
+ **🚨 MANDATORY: Use Bash tool to call orchestrator**
278
+
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):**
278
283
  ```bash
279
284
  node -e "import('@su-record/vibe/orchestrator').then(o => o.research('[FEATURE]', ['[STACK1]', '[STACK2]']).then(r => console.log(r.content[0].text)))"
280
285
  ```
281
286
 
282
- **Example:**
287
+ **Example (copy and run via Bash tool):**
283
288
  ```bash
284
289
  # 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
- **What runs in parallel (180s timeout each):**
289
-
290
- | Agent | Role | Tools |
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 |
293
+ **What runs in parallel (via orchestrator):**
294
+
295
+ | Component | Role | Source |
296
+ |-----------|------|--------|
297
+ | Claude Agent: `best-practices-agent` | Best practices for [feature] + [stack] | WebSearch |
298
+ | Claude Agent: `framework-docs-agent` | Latest docs via context7 | context7 MCP |
299
+ | Claude Agent: `codebase-patterns-agent` | Similar patterns in existing codebase | Glob, Grep |
300
+ | Claude Agent: `security-advisory-agent` | Security advisories for [feature] | WebSearch |
301
+ | **GPT: Best Practices** | Architecture patterns, code conventions | GPT API |
302
+ | **GPT: Security** | CVE database, vulnerability details | GPT API |
303
+ | **Gemini: Best Practices** | Latest trends, framework updates | Gemini API |
304
+ | **Gemini: Security** | Latest security advisories, patches | Gemini API |
296
305
 
297
306
  #### 3.1 Multi-LLM Research Enhancement (v2.5.0)
298
307
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework with 35+ integrated tools",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",