@su-record/vibe 1.0.14 → 1.0.15

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.
@@ -7,7 +7,9 @@
7
7
  "Bash(git stash:*)",
8
8
  "Bash(curl:*)",
9
9
  "Bash(python3:*)",
10
- "Bash(npm search:*)"
10
+ "Bash(npm search:*)",
11
+ "Bash(npx @su-record/vibe@latest update:*)",
12
+ "Bash(pnpm install)"
11
13
  ],
12
14
  "deny": [],
13
15
  "ask": []
package/bin/vibe CHANGED
@@ -307,13 +307,12 @@ function setupCollaboratorAutoInstall(projectRoot) {
307
307
  let modified = false;
308
308
 
309
309
  // 기존 devDependencies에서 @su-record/vibe 제거 (npm install 블로킹 원인)
310
- // vibe는 전역 설치로만 사용해야 함
311
310
  if (pkg.devDependencies && pkg.devDependencies['@su-record/vibe']) {
312
311
  delete pkg.devDependencies['@su-record/vibe'];
313
312
  modified = true;
314
313
  }
315
314
 
316
- // 기존 postinstall/prepare에서 vibe update 제거 (CI/prd 블로킹 문제)
315
+ // 기존 postinstall/prepare에서 vibe update 제거 (레거시 정리)
317
316
  if (pkg.scripts) {
318
317
  const oldPatterns = [
319
318
  /\s*&&\s*npx @su-record\/vibe update[^&|;]*/g,
@@ -341,7 +340,7 @@ function setupCollaboratorAutoInstall(projectRoot) {
341
340
 
342
341
  if (modified) {
343
342
  fs.writeFileSync(packageJsonPath, JSON.stringify(pkg, null, 2) + '\n');
344
- log(' ✅ package.json 정리 완료 (vibe 관련 스크립트/의존성 제거)\n');
343
+ log(' ✅ package.json 정리 완료 (레거시 vibe 설정 제거)\n');
345
344
  }
346
345
  } catch (e) {
347
346
  log(' ⚠️ package.json 수정 실패: ' + e.message + '\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"