@su-record/vibe 1.2.0 → 1.2.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.
@@ -30,7 +30,9 @@
30
30
  "Bash(fi)",
31
31
  "Bash(done)",
32
32
  "Bash(/Users/grove/workspace/vibe/bin/vibe update:*)",
33
- "Bash(npm show:*)"
33
+ "Bash(npm show:*)",
34
+ "Bash(npm init:*)",
35
+ "Bash(git check-ignore:*)"
34
36
  ],
35
37
  "deny": [],
36
38
  "ask": []
package/CLAUDE.md CHANGED
@@ -67,6 +67,17 @@ SPEC 문서는 AI가 바로 실행 가능한 프롬프트 형태:
67
67
  | `mcp__vibe__auto_save_context` | 현재 상태 저장 |
68
68
  | `mcp__vibe__save_memory` | 중요 결정사항 저장 |
69
69
 
70
+ ## Git Commit 규칙
71
+
72
+ **반드시 포함:**
73
+ - `.claude/` 폴더 전체 (commands, agents, settings.json)
74
+ - `.vibe/rules/`, `.vibe/specs/`, `.vibe/features/`
75
+ - `CLAUDE.md`
76
+
77
+ **제외:**
78
+ - `.claude/settings.local.json` (개인 설정, 자동 제외)
79
+ - `.vibe/mcp/` (node_modules, 자동 제외)
80
+
70
81
  ## Getting Started
71
82
 
72
83
  ```bash
package/README.md CHANGED
@@ -182,25 +182,24 @@ Phase 1 → Phase 2 → Phase 3 → ... → Phase N
182
182
 
183
183
  ```
184
184
  project/
185
- ├── CLAUDE.md # 프로젝트 컨텍스트
186
- ├── .claude/
185
+ ├── CLAUDE.md # 프로젝트 컨텍스트 ← git 공유
186
+ ├── .claude/ # ⚠️ 반드시 git에 커밋 ← git 공유
187
187
  │ ├── commands/ # 슬래시 커맨드 (7개)
188
- │ ├── agents/ # 서브에이전트 (simplifier)
189
- └── settings.json # Hooks 설정
188
+ │ ├── agents/ # 서브에이전트
189
+ ├── settings.json # Hooks 설정
190
+ │ └── settings.local.json # 개인 설정 ← git 제외 (자동)
190
191
  └── .vibe/
191
- ├── config.json # 프로젝트 설정
192
- ├── constitution.md # 프로젝트 원칙
193
- ├── mcp/ # hi-ai MCP (로컬 설치, .gitignore)
194
- ├── rules/ # 코딩 규칙
195
- ├── core/ # 핵심 원칙
196
- │ ├── quality/ # 품질 체크리스트
197
- │ ├── standards/ # 복잡도, 네이밍
198
- │ ├── languages/ # 언어별 규칙
199
- │ └── tools/ # MCP 가이드
200
- ├── specs/ # SPEC 문서들
201
- └── features/ # BDD Feature 파일들
192
+ ├── config.json # 프로젝트 설정 ← git 공유
193
+ ├── constitution.md # 프로젝트 원칙 ← git 공유
194
+ ├── mcp/ # hi-ai MCP git 제외 (node_modules)
195
+ ├── rules/ # 코딩 규칙 ← git 공유
196
+ ├── specs/ # SPEC 문서들 ← git 공유
197
+ └── features/ # BDD Feature 파일들 ← git 공유
202
198
  ```
203
199
 
200
+ > **⚠️ 중요**: `.claude/` 폴더는 팀과 공유해야 합니다. 커밋 시 제외하지 마세요.
201
+ > `settings.local.json`만 개인 설정이므로 자동으로 git에서 제외됩니다.
202
+
204
203
  ---
205
204
 
206
205
  ## SPEC Document (PTCF Structure)
@@ -303,7 +302,7 @@ AI의 역할과 전문성 정의
303
302
  |------|--------|------|
304
303
  | `SessionStart` | 세션 시작 | 이전 컨텍스트 자동 복원 |
305
304
  | `UserPromptSubmit` | `ultrawork`/`ulw` 감지 | 🚀 ULTRAWORK 모드 활성화 |
306
- | `PostToolUse` | Write/Edit 후 | 품질 체크리스트 검토 |
305
+ | `PostToolUse` | Write/Edit 후 | 품질 체크 (멈추지 않음) |
307
306
  | `Notification` | 컨텍스트 70% | 경고 (ULTRAWORK: 자동 저장) |
308
307
  | `Notification` | 컨텍스트 85% | 즉시 저장 + 압축 |
309
308
  | `Notification` | 컨텍스트 95% | 긴급 저장 + 세션 전환 준비 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"
@@ -27,7 +27,7 @@
27
27
  "hooks": [
28
28
  {
29
29
  "type": "prompt",
30
- "prompt": "Review the code you just modified against .vibe/rules/quality/checklist.md. Briefly report any issues found."
30
+ "prompt": "Silently check .vibe/rules/quality/checklist.md. Do NOT stop or report - continue your current task. Only fix critical issues (syntax errors, security vulnerabilities) inline. Minor issues (lint warnings, style) can be addressed at the end of the current phase."
31
31
  }
32
32
  ]
33
33
  }