@su-record/vibe 1.0.8 → 1.0.9

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.
Files changed (2) hide show
  1. package/bin/vibe +2 -20
  2. package/package.json +1 -1
package/bin/vibe CHANGED
@@ -1022,25 +1022,8 @@ async function update() {
1022
1022
  // 협업자 자동 설치 설정 (update에서도 실행)
1023
1023
  setupCollaboratorAutoInstall(projectRoot);
1024
1024
 
1025
- // MCP 서버 등록 확인
1026
- const { execSync } = require('child_process');
1027
-
1028
- // 1. hi-ai MCP
1029
- const mcpPath = path.join(__dirname, '..', 'node_modules', '@su-record', 'hi-ai', 'dist', 'index.js');
1030
- try {
1031
- execSync(`claude mcp add vibe node "${mcpPath}"`, { stdio: 'pipe' });
1032
- log(' ✅ vibe MCP 등록 완료\n');
1033
- } catch (e) {
1034
- // 이미 등록됨 - silent
1035
- }
1036
-
1037
- // 2. Context7 MCP
1038
- try {
1039
- execSync('claude mcp add context7 -- npx -y @upstash/context7-mcp@latest', { stdio: 'pipe' });
1040
- log(' ✅ Context7 MCP 등록 완료\n');
1041
- } catch (e) {
1042
- // 이미 등록됨 - silent
1043
- }
1025
+ // MCP 서버 등록 확인 (update에서는 스킵 - init에서만 등록)
1026
+ // update는 파일만 업데이트하고, MCP는 이미 등록되어 있다고 가정
1044
1027
 
1045
1028
  const packageJson = require('../package.json');
1046
1029
  log(`
@@ -1051,7 +1034,6 @@ async function update() {
1051
1034
  - 코딩 규칙 (.vibe/rules/)
1052
1035
  - 서브에이전트 (.claude/agents/)
1053
1036
  - Hooks 설정
1054
- - MCP 서버
1055
1037
 
1056
1038
  외부 LLM (선택적):
1057
1039
  vibe gpt <api-key> GPT 활성화 (아키텍처/디버깅)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"