@su-record/vibe 2.8.36 → 2.8.38

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/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.5+-blue)](https://www.typescriptlang.org/)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
8
 
9
- **One install adds 56 agents, 36 skills, multi-LLM orchestration, and automated quality gates to your AI coding workflow.**
9
+ **One install adds 56 agents, 45 skills, multi-LLM orchestration, and automated quality gates to your AI coding workflow.**
10
10
 
11
11
  Works with Claude Code, Codex, Cursor, and Gemini CLI.
12
12
 
@@ -131,13 +131,17 @@ Event Content, Event Image, Event Speaker, Event Ops, Event Comms, Event Schedul
131
131
 
132
132
  ---
133
133
 
134
- ## Skills (36)
134
+ ## Skills (45)
135
135
 
136
- Domain-specific skill modules auto-installed based on detected stack.
136
+ Domain-specific skill modules auto-installed based on detected stack. Classified into 3 tiers to prevent context overload.
137
137
 
138
- **Core (15):** Core Capabilities, Parallel Research, Commit Push PR, Git Worktree, Handoff, Priority Todos, Tool Fallback, Context7, Tech Debt, Characterization Test, Agents MD, Claude MD Guide, Exec Plan, Arch Guard, Capability Loop
138
+ **Core (4):** Tech Debt, Characterization Test, Arch Guard, Exec Plan
139
139
 
140
- **Design (7):** Frontend Design, UI/UX Pro Max, Design Teach, Design Audit, Design Critique, Design Polish, Design Normalize
140
+ **Standard (11):** Parallel Research, Handoff, Priority Todos, Agents MD, Claude MD Guide, Capability Loop, Design Teach, Vibe Figma, Vibe Figma Extract, Vibe Figma Convert, Vibe Docs
141
+
142
+ **Optional (4):** Commit Push PR, Git Worktree, Tool Fallback, Context7
143
+
144
+ **Design (8):** UI/UX Pro Max, Design Audit, Design Critique, Design Polish, Design Normalize, Design Distill, Brand Assets, SEO Checklist
141
145
 
142
146
  **Domain (3):** Commerce Patterns, E2E Commerce, Video Production
143
147
 
@@ -145,7 +149,9 @@ Domain-specific skill modules auto-installed based on detected stack.
145
149
 
146
150
  **Event (3):** Event Planning, Event Comms, Event Ops
147
151
 
148
- **Stack-Specific (5):** TypeScript Advanced Types, Vercel React Best Practices, SEO Checklist, Brand Assets, Design Distill
152
+ **Stack-Specific (2):** TypeScript Advanced Types, Vercel React Best Practices
153
+
154
+ **Figma Pipeline (7):** Figma Rules, Figma Pipeline, Figma Frame, Figma Style, Figma Analyze, Figma Consolidate, Figma Codegen
149
155
 
150
156
  ### External Skills (skills.sh)
151
157
 
@@ -262,7 +268,7 @@ const runner = skills.resolve('review');
262
268
 
263
269
  ---
264
270
 
265
- ## Hooks (16 scripts)
271
+ ## Hooks (21 scripts)
266
272
 
267
273
  | Event | Script | Role |
268
274
  |-------|--------|------|
@@ -272,9 +278,11 @@ const runner = skills.resolve('review');
272
278
  | PostToolUse | `post-edit.js` | Git index update |
273
279
  | UserPromptSubmit | `prompt-dispatcher.js` | Command routing |
274
280
  | UserPromptSubmit | `keyword-detector.js` | Magic keyword detection |
281
+ | UserPromptSubmit | `llm-orchestrate.js` | Multi-LLM dispatch |
275
282
  | Notification | `context-save.js` | Auto-save at 80/90/95% context |
283
+ | Notification | `stop-notify.js` | Session end notification |
276
284
 
277
- Additional: `llm-orchestrate.js`, `codex-review-gate.js`, `codex-detect.js`, `sentinel-guard.js`, `skill-injector.js`, `evolution-engine.js`, `hud-status.js`, `stop-notify.js`
285
+ Additional: `codex-review-gate.js`, `codex-detect.js`, `sentinel-guard.js`, `skill-injector.js`, `evolution-engine.js`, `hud-status.js`, `auto-commit.js`, `auto-format.js`, `auto-test.js`, `command-log.js`, `pr-test-gate.js`, `figma-extract.js`
278
286
 
279
287
  ---
280
288
 
@@ -397,6 +405,10 @@ vibe figma status|logout # Token management
397
405
  vibe telegram setup|chat|status
398
406
  vibe slack setup|channel|status
399
407
 
408
+ # Diagnostics
409
+ vibe config show # Unified config view (global + project)
410
+ vibe stats [--week|--quality] # Usage telemetry summary
411
+
400
412
  # Other
401
413
  vibe env import [path] # Migrate .env → config.json
402
414
  vibe help / version
@@ -178,7 +178,7 @@ function parseAnalyzeImageArgs(args) {
178
178
  // CLI Provider Functions
179
179
  // ============================================
180
180
 
181
- const CLI_TIMEOUT_MS = 60000;
181
+ const CLI_TIMEOUT_MS = 180000;
182
182
  const CLI_FALLBACK_TIMEOUT_MS = 30000;
183
183
  const IS_WINDOWS = os.platform() === 'win32';
184
184
 
@@ -205,7 +205,7 @@ function callCodexCli(prompt, sysPrompt, jsonMode, model, timeoutMs) {
205
205
  const fullPrompt = buildCliPrompt(prompt, sysPrompt, jsonMode);
206
206
  const outputFile = path.join(os.tmpdir(), `vibe-codex-${crypto.randomUUID()}.txt`);
207
207
  // stdin pipe로 프롬프트 전달 (shell escaping 이슈 회피)
208
- const args = ['exec', '-m', model, '--sandbox', 'read-only', '--ephemeral', '-o', outputFile, '-'];
208
+ const args = ['exec', '-m', model, '--sandbox', 'read-only', '--ephemeral', '-c', 'model_reasoning_effort="medium"', '-o', outputFile, '-'];
209
209
 
210
210
  // config에 저장된 API key를 환경변수로 전달 (임베딩과 동일한 키 사용)
211
211
  const vibeConfig = readVibeConfig();
@@ -219,8 +219,7 @@ function callCodexCli(prompt, sysPrompt, jsonMode, model, timeoutMs) {
219
219
  timeout: effectiveTimeout,
220
220
  env,
221
221
  });
222
- proc.stdin.write(fullPrompt);
223
- proc.stdin.end();
222
+ proc.stdin.end(fullPrompt);
224
223
 
225
224
  let stderr = '';
226
225
  proc.stderr.on('data', (d) => { stderr += d.toString(); });
@@ -255,8 +254,7 @@ function callGeminiCli(prompt, sysPrompt, jsonMode, model, timeoutMs) {
255
254
  stdio: ['pipe', 'pipe', 'pipe'],
256
255
  timeout: effectiveTimeout,
257
256
  });
258
- proc.stdin.write(fullPrompt);
259
- proc.stdin.end();
257
+ proc.stdin.end(fullPrompt);
260
258
 
261
259
  let stdout = '';
262
260
  let stderr = '';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.8.36",
4
- "description": "AI Coding Framework for Claude Code — 49 agents, 41+ tools, multi-LLM orchestration",
3
+ "version": "2.8.38",
4
+ "description": "AI Coding Framework for Claude Code — 56 agents, 45 skills, multi-LLM orchestration",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",
7
7
  "exports": {