pai-zero 0.11.0 → 0.11.1

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/README.md CHANGED
@@ -4,6 +4,68 @@
4
4
 
5
5
  ---
6
6
 
7
+ ## 사용자 시나리오
8
+
9
+ ### A. 처음 설치하고 나서
10
+
11
+ ```bash
12
+ npm install -g pai-zero
13
+ pai # ← 환영 화면 + 다음 단계 안내 자동 출력
14
+ ```
15
+
16
+ ### B. 새 프로젝트 시작 (모드 3단계 선택)
17
+
18
+ ```bash
19
+ pai init my-app
20
+ # ? 어떤 수준의 프로젝트인가요?
21
+ # 🧪 prototype 빠른 검증 (아이디어·UI 목업·컨셉 시연)
22
+ # 🔬 poc PoC 웹개발 (동작 데모·기본 기능 구현)
23
+ # 🏭 production 운영 서비스 (테스트·QA·배포·모니터링)
24
+ ```
25
+
26
+ 선택에 따른 플러그인 매트릭스:
27
+
28
+ | 플러그인 | prototype | poc | production |
29
+ |---|:-:|:-:|:-:|
30
+ | github | ✓ | ✓ | ✓ |
31
+ | openspec | ✓ | ✓ | ✓ |
32
+ | roboco | ✓ | ✓ | ✓ |
33
+ | omc | — | ✓ | ✓ |
34
+ | vercel | — | opt | opt |
35
+ | gstack | — | — | ✓ |
36
+ | harness | — | — | ✓ |
37
+ | supabase | — | — | opt |
38
+
39
+ ### C. 기존 PAI 프로젝트에서 재실행
40
+
41
+ ```bash
42
+ pai init # 또는 pai status
43
+ # 현재 모드: prototype
44
+ # ? 어떤 작업을 할까요?
45
+ # 📊 AI 개발 준비도 평가 (pai grade — 6카테고리 점수)
46
+ # ➕ 플러그인 추가·모드 승격 (pai add — prototype → poc → production)
47
+ # 🩺 환경 점검 (pai check — Node/Git/Claude/OMC)
48
+ ```
49
+
50
+ ### D. 모드 승격
51
+
52
+ ```bash
53
+ pai add
54
+ # 현재 모드: prototype
55
+ # 다음 단계: poc
56
+ # 승격 시 추가되는 플러그인: omc, vercel
57
+ # ? poc 수준으로 승격하시겠어요? (y/N)
58
+ ```
59
+
60
+ ### E. CI 품질 게이트
61
+
62
+ ```bash
63
+ pai grade --fail-under 70 --output report.md
64
+ # 70점 미만이면 exit 1 — GitHub Actions에서 PR 블록 가능
65
+ ```
66
+
67
+ ---
68
+
7
69
  ## v0.11 변경 사항 (Breaking)
8
70
 
9
71
  - **OMC 설치 방식 전환**: 기존 `npx -y github:Yeachan-Heo/oh-my-claudecode install` 호출을 제거하고, Claude Code 네이티브 플러그인 마켓플레이스에 등록하는 방식으로 바꿨습니다.