@su-record/vibe 2.4.13 → 2.4.14

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.
@@ -1,29 +1,28 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(npx tsc:*)",
5
- "Bash(npm login:*)",
6
- "Bash(npm whoami:*)",
7
- "Bash(git checkout:*)",
8
- "Bash(where:*)",
9
- "Bash(npm update:*)",
10
- "Bash(vibe --version:*)",
11
- "Bash(vibe upgrade:*)",
12
- "Bash(npm config:*)",
13
- "Bash(claude --version)",
14
- "Bash(claude mcp list:*)",
15
- "Bash(C:Usersendba.localbinclaude.exe --version)",
16
- "Bash(\"C:\\\\Users\\\\endba\\\\.local\\\\bin\\\\claude.exe\" --version)",
17
- "Bash(npm cache clean:*)",
18
- "Bash(git status:*)",
19
- "Bash(gh pr create --repo anthropics/claude-plugins-official --title \"feat: add vibe plugin - SPEC-driven AI coding framework\" --body \"$\\(cat <<''EOF''\n## Plugin: vibe\n\nSPEC-driven AI coding framework for Claude Code with parallel agents, BDD verification, and quality assurance.\n\n### Features\n\n- **12 Slash Commands**: `/vibe.spec`, `/vibe.run`, `/vibe.verify`, `/vibe.review`, `/vibe.reason`, `/vibe.diagram`, and more\n- **16 Specialist Agents**: Security, performance, architecture reviewers + language-specific reviewers \\(Python, TypeScript, React, Rails\\)\n- **ULTRAWORK Pipeline**: Parallel execution with ~50% speed improvement through background agents and phase pipelining\n- **BDD Verification**: Behavior-driven development testing against SPEC requirements\n- **Context7 Integration**: Built-in support for up-to-date documentation lookup\n\n### Workflow\n\n```\n/vibe.spec \"feature\" → /vibe.run \"feature\" → /vibe.verify \"feature\"\n```\n\n### Repository\n\nhttps://github.com/su-record/vibe\n\n### License\n\nMIT\nEOF\n\\)\")",
20
- "Bash(git rev-parse:*)",
21
- "Bash(claude plugin:*)",
22
- "Bash(npm unlink:*)",
23
- "Bash(find:*)",
24
- "Bash(vibe auth status:*)",
25
- "Bash(cd:*)",
26
- "Bash(npm root:*)"
27
- ]
28
- }
29
- }
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(npx tsc:*)",
5
+ "Bash(npm login:*)",
6
+ "Bash(npm whoami:*)",
7
+ "Bash(git checkout:*)",
8
+ "Bash(where:*)",
9
+ "Bash(npm update:*)",
10
+ "Bash(vibe --version:*)",
11
+ "Bash(vibe upgrade:*)",
12
+ "Bash(npm config:*)",
13
+ "Bash(claude --version)",
14
+ "Bash(claude mcp list:*)",
15
+ "Bash(C:Usersendba.localbinclaude.exe --version)",
16
+ "Bash(\"C:\\\\Users\\\\endba\\\\.local\\\\bin\\\\claude.exe\" --version)",
17
+ "Bash(npm cache clean:*)",
18
+ "Bash(git status:*)",
19
+ "Bash(gh pr create --repo anthropics/claude-plugins-official --title \"feat: add vibe plugin - SPEC-driven AI coding framework\" --body \"$\\(cat <<''EOF''\n## Plugin: vibe\n\nSPEC-driven AI coding framework for Claude Code with parallel agents, BDD verification, and quality assurance.\n\n### Features\n\n- **12 Slash Commands**: `/vibe.spec`, `/vibe.run`, `/vibe.verify`, `/vibe.review`, `/vibe.reason`, `/vibe.diagram`, and more\n- **16 Specialist Agents**: Security, performance, architecture reviewers + language-specific reviewers \\(Python, TypeScript, React, Rails\\)\n- **ULTRAWORK Pipeline**: Parallel execution with ~50% speed improvement through background agents and phase pipelining\n- **BDD Verification**: Behavior-driven development testing against SPEC requirements\n- **Context7 Integration**: Built-in support for up-to-date documentation lookup\n\n### Workflow\n\n```\n/vibe.spec \"feature\" → /vibe.run \"feature\" → /vibe.verify \"feature\"\n```\n\n### Repository\n\nhttps://github.com/su-record/vibe\n\n### License\n\nMIT\nEOF\n\\)\")",
20
+ "Bash(git rev-parse:*)",
21
+ "Bash(claude plugin:*)",
22
+ "Bash(npm unlink:*)",
23
+ "Bash(find:*)",
24
+ "Bash(vibe auth status:*)",
25
+ "Bash(cd:*)"
26
+ ]
27
+ }
28
+ }
package/CLAUDE.md CHANGED
@@ -19,6 +19,12 @@ SPEC 주도 AI 코딩 프레임워크 (Claude Code 전용)
19
19
  | 매개변수 | 5개 이하 |
20
20
  | 순환 복잡도 | 10 이하 |
21
21
 
22
+ ### TypeScript 규칙
23
+ - `any` 타입 사용 금지 → `unknown` + 타입 가드 사용
24
+ - `as any` 캐스팅 금지 → 적절한 인터페이스 정의
25
+ - `@ts-ignore` 금지 → 타입 문제 근본 해결
26
+ - 모든 함수에 반환 타입 명시
27
+
22
28
  ### 에러 처리 필수
23
29
  - try-catch 또는 error state 필수
24
30
  - 로딩 상태 처리
package/README.md CHANGED
@@ -179,3 +179,24 @@ Claude: 로그인 기능을 만드시는군요! 몇 가지 질문이 있습니
179
179
  ## 라이선스
180
180
 
181
181
  MIT - [GitHub](https://github.com/su-record/vibe)
182
+
183
+ ## Vibe Setup (AI Coding)
184
+
185
+ 이 프로젝트는 [Vibe](https://github.com/su-record/vibe) AI 코딩 프레임워크를 사용합니다.
186
+
187
+ ### 협업자 설치
188
+
189
+ ```bash
190
+ # 전역 설치 (권장)
191
+ npm install -g @su-record/vibe
192
+ vibe update
193
+
194
+ # 또는 setup 스크립트 실행
195
+ ./.claude/vibe/setup.sh
196
+ ```
197
+
198
+ ### 사용법
199
+
200
+ Claude Code에서 슬래시 커맨드 사용:
201
+ - `/vibe.spec "기능명"` - SPEC 문서 작성
202
+ - `/vibe.run "기능명"` - 구현 실행
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.4.13",
3
+ "version": "2.4.14",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework with 35+ integrated tools",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",