@su-record/vibe 1.0.16 → 1.0.18
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/.claude/commands/vibe.analyze.md +4 -0
- package/.claude/commands/vibe.diagram.md +4 -0
- package/.claude/commands/vibe.reason.md +4 -0
- package/.claude/commands/vibe.run.md +4 -0
- package/.claude/commands/vibe.spec.md +4 -0
- package/.claude/commands/vibe.ui.md +4 -0
- package/.claude/commands/vibe.verify.md +4 -0
- package/.claude/settings.local.json +20 -1
- package/bin/vibe +4 -1
- package/package.json +3 -3
- package/templates/hooks-template.json +0 -11
|
@@ -9,7 +9,26 @@
|
|
|
9
9
|
"Bash(python3:*)",
|
|
10
10
|
"Bash(npm search:*)",
|
|
11
11
|
"Bash(npx @su-record/vibe@latest update:*)",
|
|
12
|
-
"Bash(pnpm install)"
|
|
12
|
+
"Bash(pnpm install)",
|
|
13
|
+
"SlashCommand(/vibe.analyze 에이전트 개발)",
|
|
14
|
+
"SlashCommand(/vibe.analyze:*)",
|
|
15
|
+
"Bash(claude --version:*)",
|
|
16
|
+
"Skill(vibe.spec)",
|
|
17
|
+
"Skill(vibe.spec:*)",
|
|
18
|
+
"Bash(NODE_OPTIONS=\"--max-old-space-size=8192\" claude:*)",
|
|
19
|
+
"Skill(vibe.analyze)",
|
|
20
|
+
"Skill(vibe.analyze:*)",
|
|
21
|
+
"Bash(wc:*)",
|
|
22
|
+
"Bash(grep:*)",
|
|
23
|
+
"Bash(claude mcp list:*)",
|
|
24
|
+
"Bash(claude mcp remove:*)",
|
|
25
|
+
"Bash(claude mcp add:*)",
|
|
26
|
+
"Bash(for f in ~/workspace/fallingo/.claude/settings.json ~/workspace/meeting-room-react/.claude/settings.json ~/workspace/meeting-room-api/.claude/settings.json ~/workspace/test-vibe-project/.claude/settings.json ~/workspace/test/.claude/settings.json)",
|
|
27
|
+
"Bash(do)",
|
|
28
|
+
"Bash(if [ -f \"$f\" ])",
|
|
29
|
+
"Bash(then)",
|
|
30
|
+
"Bash(fi)",
|
|
31
|
+
"Bash(done)"
|
|
13
32
|
],
|
|
14
33
|
"deny": [],
|
|
15
34
|
"ask": []
|
package/bin/vibe
CHANGED
|
@@ -16,6 +16,9 @@ const options = {
|
|
|
16
16
|
silent: args.includes('--silent') || args.includes('-s')
|
|
17
17
|
};
|
|
18
18
|
|
|
19
|
+
// 옵션이 아닌 인자들만 필터링 (프로젝트 이름 등)
|
|
20
|
+
const positionalArgs = args.filter(arg => !arg.startsWith('-'));
|
|
21
|
+
|
|
19
22
|
// MCP 설정
|
|
20
23
|
const DEFAULT_MCPS = [
|
|
21
24
|
{ name: 'vibe', type: 'node', local: true },
|
|
@@ -1264,7 +1267,7 @@ function showVersion() {
|
|
|
1264
1267
|
// 메인 라우터
|
|
1265
1268
|
switch (command) {
|
|
1266
1269
|
case 'init':
|
|
1267
|
-
init(
|
|
1270
|
+
init(positionalArgs[1]); // 옵션 제외한 인자 사용
|
|
1268
1271
|
break;
|
|
1269
1272
|
|
|
1270
1273
|
case 'update':
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@su-record/vibe",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vibe": "./bin/vibe"
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"node": ">=18.0.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@su-record/hi-ai": "latest"
|
|
34
|
+
"@su-record/hi-ai": "latest",
|
|
35
|
+
"typescript": "^5.9.3"
|
|
35
36
|
},
|
|
36
|
-
"devDependencies": {},
|
|
37
37
|
"files": [
|
|
38
38
|
"bin/",
|
|
39
39
|
".claude/",
|
|
@@ -88,17 +88,6 @@
|
|
|
88
88
|
}
|
|
89
89
|
]
|
|
90
90
|
}
|
|
91
|
-
],
|
|
92
|
-
"UserPromptSubmit": [
|
|
93
|
-
{
|
|
94
|
-
"matcher": ".*",
|
|
95
|
-
"hooks": [
|
|
96
|
-
{
|
|
97
|
-
"type": "prompt",
|
|
98
|
-
"prompt": "세션 시작 시: mcp__vibe__start_session을 호출하여 이전 세션 컨텍스트를 복원하세요. 저장된 메모리와 미완료 작업을 확인하세요."
|
|
99
|
-
}
|
|
100
|
-
]
|
|
101
|
-
}
|
|
102
91
|
]
|
|
103
92
|
}
|
|
104
93
|
}
|