@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.
- package/README.md +20 -8
- package/dist/infra/lib/browser/capture.d.ts +26 -0
- package/dist/infra/lib/browser/capture.d.ts.map +1 -0
- package/dist/infra/lib/browser/capture.js +115 -0
- package/dist/infra/lib/browser/capture.js.map +1 -0
- package/dist/infra/lib/browser/compare.d.ts +19 -0
- package/dist/infra/lib/browser/compare.d.ts.map +1 -0
- package/dist/infra/lib/browser/compare.js +133 -0
- package/dist/infra/lib/browser/compare.js.map +1 -0
- package/dist/infra/lib/browser/index.d.ts +5 -0
- package/dist/infra/lib/browser/index.d.ts.map +1 -0
- package/dist/infra/lib/browser/index.js +4 -0
- package/dist/infra/lib/browser/index.js.map +1 -0
- package/dist/infra/lib/browser/launch.d.ts +19 -0
- package/dist/infra/lib/browser/launch.d.ts.map +1 -0
- package/dist/infra/lib/browser/launch.js +59 -0
- package/dist/infra/lib/browser/launch.js.map +1 -0
- package/dist/infra/lib/browser/types.d.ts +103 -0
- package/dist/infra/lib/browser/types.d.ts.map +1 -0
- package/dist/infra/lib/browser/types.js +8 -0
- package/dist/infra/lib/browser/types.js.map +1 -0
- package/hooks/scripts/llm-orchestrate.js +4 -6
- package/package.json +2 -2
- package/skills/vibe.figma/SKILL.md +649 -107
- package/skills/vibe.figma.convert/SKILL.md +139 -161
- package/skills/vibe.figma.extract/SKILL.md +86 -40
|
@@ -178,7 +178,7 @@ function parseAnalyzeImageArgs(args) {
|
|
|
178
178
|
// CLI Provider Functions
|
|
179
179
|
// ============================================
|
|
180
180
|
|
|
181
|
-
const CLI_TIMEOUT_MS =
|
|
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.
|
|
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.
|
|
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.
|
|
4
|
-
"description": "AI Coding Framework for Claude Code —
|
|
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": {
|