@su-record/vibe 2.8.35 → 2.8.37

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.
@@ -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.35",
4
- "description": "AI Coding Framework for Claude Code — 49 agents, 41+ tools, multi-LLM orchestration",
3
+ "version": "2.8.37",
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": {