@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.
@@ -233,3 +233,7 @@ Claude: 코드 품질 분석을 시작합니다...
233
233
  **개선 제안:**
234
234
  1. src/service.py를 3개 모듈로 분리
235
235
  ```
236
+
237
+ ---
238
+
239
+ ARGUMENTS: $ARGUMENTS
@@ -172,3 +172,7 @@ erDiagram
172
172
  - Mermaid는 GitHub, GitLab, VSCode 등에서 지원됩니다
173
173
  - 복잡한 다이어그램은 수동 조정이 필요할 수 있습니다
174
174
  - 생성된 다이어그램은 `.vibe/diagrams/` 폴더에 저장됩니다
175
+
176
+ ---
177
+
178
+ ARGUMENTS: $ARGUMENTS
@@ -300,3 +300,7 @@ AI: [9단계 프레임워크를 통해 각 옵션의 제약 조건, 위험, 장
300
300
  - [/vibe.analyze](vibe.analyze.md)
301
301
  - [/vibe.spec](vibe.spec.md)
302
302
  - [/vibe.plan](vibe.plan.md)
303
+
304
+ ---
305
+
306
+ ARGUMENTS: $ARGUMENTS
@@ -301,3 +301,7 @@ Phase 2: 게임 로직
301
301
  ```
302
302
  /vibe.verify "벽돌게임"
303
303
  ```
304
+
305
+ ---
306
+
307
+ ARGUMENTS: $ARGUMENTS
@@ -265,3 +265,7 @@ User: 2
265
265
  ```
266
266
  /vibe.run "벽돌게임"
267
267
  ```
268
+
269
+ ---
270
+
271
+ ARGUMENTS: $ARGUMENTS
@@ -131,3 +131,7 @@ Claude: 대시보드 UI 미리보기를 생성합니다...
131
131
  - 복잡한 UI는 여러 번 나누어서 요청하세요
132
132
  - 레이아웃 옵션: `sidebar`, `header-footer`, `grid`, `centered`, `split`
133
133
  - ASCII 아트는 실제 구현 전 빠른 시각화 목적입니다
134
+
135
+ ---
136
+
137
+ ARGUMENTS: $ARGUMENTS
@@ -146,3 +146,7 @@ Scenario 4 수정 필요:
146
146
  ```
147
147
  /vibe.run "기능명" --fix # 실패한 시나리오 수정
148
148
  ```
149
+
150
+ ---
151
+
152
+ ARGUMENTS: $ARGUMENTS
@@ -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(args[1]);
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.16",
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
  }