@su-record/vibe 1.0.0 → 1.0.2

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.
@@ -0,0 +1,9 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(git tag:*)"
5
+ ],
6
+ "deny": [],
7
+ "ask": []
8
+ }
9
+ }
package/bin/vibe CHANGED
@@ -106,11 +106,11 @@ function setupCollaboratorAutoInstall(projectRoot) {
106
106
  pkg.scripts = {};
107
107
  }
108
108
  if (!pkg.scripts.postinstall) {
109
- pkg.scripts.postinstall = 'vibe update --silent';
109
+ pkg.scripts.postinstall = 'npx @su-record/vibe update --silent';
110
110
  modified = true;
111
111
  } else if (!pkg.scripts.postinstall.includes('vibe update')) {
112
112
  // 기존 postinstall이 있으면 vibe update 추가
113
- pkg.scripts.postinstall = `${pkg.scripts.postinstall} && vibe update --silent`;
113
+ pkg.scripts.postinstall = `${pkg.scripts.postinstall} && npx @su-record/vibe update --silent`;
114
114
  modified = true;
115
115
  }
116
116
 
@@ -545,6 +545,9 @@ async function update() {
545
545
  }
546
546
  }
547
547
 
548
+ // 협업자 자동 설치 설정 (update에서도 실행)
549
+ setupCollaboratorAutoInstall(projectRoot);
550
+
548
551
  // MCP 서버 등록 확인
549
552
  const { execSync } = require('child_process');
550
553
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"