solmate-skills 1.0.0

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.
Files changed (54) hide show
  1. package/AGENTS.md +90 -0
  2. package/README.md +42 -0
  3. package/bin/cli.js +85 -0
  4. package/design-md/README.md +34 -0
  5. package/design-md/SKILL.md +172 -0
  6. package/design-md/examples/DESIGN.md +154 -0
  7. package/dev-conventions/SKILL.md +305 -0
  8. package/enhance-prompt/README.md +34 -0
  9. package/enhance-prompt/SKILL.md +204 -0
  10. package/enhance-prompt/references/KEYWORDS.md +114 -0
  11. package/implementation-workflow/SKILL.md +131 -0
  12. package/init-skills.sh +41 -0
  13. package/manage-collaboration/SKILL.md +50 -0
  14. package/manage-docs/SKILL.md +389 -0
  15. package/manage-skills/SKILL.md +52 -0
  16. package/obsidian-sync/SKILL.md +44 -0
  17. package/old_AGENTS.md +124 -0
  18. package/package.json +31 -0
  19. package/react-components/README.md +36 -0
  20. package/react-components/SKILL.md +47 -0
  21. package/react-components/examples/gold-standard-card.tsx +80 -0
  22. package/react-components/package.json +16 -0
  23. package/react-components/resources/architecture-checklist.md +15 -0
  24. package/react-components/resources/component-template.tsx +37 -0
  25. package/react-components/resources/stitch-api-reference.md +14 -0
  26. package/react-components/resources/style-guide.json +27 -0
  27. package/react-components/scripts/fetch-stitch.sh +30 -0
  28. package/react-components/scripts/validate.js +68 -0
  29. package/remotion/README.md +105 -0
  30. package/remotion/SKILL.md +393 -0
  31. package/remotion/examples/WalkthroughComposition.tsx +78 -0
  32. package/remotion/examples/screens.json +56 -0
  33. package/remotion/resources/composition-checklist.md +124 -0
  34. package/remotion/resources/screen-slide-template.tsx +123 -0
  35. package/remotion/scripts/download-stitch-asset.sh +38 -0
  36. package/shadcn-ui/README.md +248 -0
  37. package/shadcn-ui/SKILL.md +326 -0
  38. package/shadcn-ui/examples/auth-layout.tsx +177 -0
  39. package/shadcn-ui/examples/data-table.tsx +313 -0
  40. package/shadcn-ui/examples/form-pattern.tsx +177 -0
  41. package/shadcn-ui/resources/component-catalog.md +481 -0
  42. package/shadcn-ui/resources/customization-guide.md +516 -0
  43. package/shadcn-ui/resources/migration-guide.md +463 -0
  44. package/shadcn-ui/resources/setup-guide.md +412 -0
  45. package/shadcn-ui/scripts/verify-setup.sh +134 -0
  46. package/stitch-loop/README.md +54 -0
  47. package/stitch-loop/SKILL.md +203 -0
  48. package/stitch-loop/examples/SITE.md +73 -0
  49. package/stitch-loop/examples/next-prompt.md +25 -0
  50. package/stitch-loop/resources/baton-schema.md +61 -0
  51. package/stitch-loop/resources/site-template.md +104 -0
  52. package/verify-docs/SKILL.md +34 -0
  53. package/verify-drizzle-schema/SKILL.md +44 -0
  54. package/verify-implementation/SKILL.md +39 -0
@@ -0,0 +1,131 @@
1
+ ---
2
+ name: implementation-workflow
3
+ description: Guides the full implementation lifecycle from planning through PR. Use when implementing a new feature, planning implementation, before committing or creating a PR, or when the user asks for plan review, implementation review, deployment readiness check, or to follow the 18-step workflow (18단계). Ensures plan validation, implementation quality, side-effect checks, and deployment-ready quality.
4
+ ---
5
+
6
+ # Implementation Workflow (18 Steps)
7
+
8
+ Follow this workflow for feature implementation and significant code changes. Complete each phase before advancing; use the checklists to avoid skipping steps.
9
+
10
+ ---
11
+
12
+ ## Phase 1: Plan (Steps 1–4)
13
+
14
+ ### Step 1. 계획 수립
15
+ - 요구사항·목적을 문서 또는 이슈 기준으로 정리한다.
16
+ - 변경할 파일·추가할 컴포넌트·API·DB 영향 범위를 나열한다.
17
+ - 체크: [ ] 목적이 명확한가? [ ] 영향 범위가 정리되었는가?
18
+
19
+ ### Step 2. 계획 검토
20
+ - 계획이 요구사항과 일치하는지, 누락된 시나리오는 없는지 검토한다.
21
+ - 체크: [ ] 요구사항 커버리지 [ ] 예외/엣지 케이스 고려 여부
22
+
23
+ ### Step 3. 검토 정합성 확인
24
+ - Step 2 검토 결과를 한 번 더 점검한다. "검토가 올바르게 되었는가?"를 질문으로 확인한다.
25
+ - 체크: [ ] 검토 기준이 일관되었는가? [ ] 반대 관점(예: 제거/롤백)도 고려했는가?
26
+
27
+ ### Step 4. 계획 과도성 검토
28
+ - 범위가 과도하게 크지 않은지 확인한다. 필요하면 단계로 나누거나 MVP로 줄인다.
29
+ - 체크: [ ] 한 번에 할 양이 적정한가? [ ] 나누어 진행할 수 있는가?
30
+
31
+ ---
32
+
33
+ ## Phase 2: Implement (Step 5)
34
+
35
+ ### Step 5. 구현
36
+ - 승인된 계획대로 구현한다. AGENTS.md·프로젝트 컨벤션(커밋, Zod, Luxon 등)을 따른다.
37
+ - 체크: [ ] 계획 대비 변경 사항이 일치하는가?
38
+
39
+ ---
40
+
41
+ ## Phase 3: Verify Implementation (Steps 6–10)
42
+
43
+ ### Step 6. 목적 부합 검토
44
+ - 구현이 원래 목적과 요구사항에 맞게 동작하는지 확인한다.
45
+ - 체크: [ ] 핵심 시나리오 동작 [ ] 요구사항 미충족 구간 없음
46
+
47
+ ### Step 7. 버그·크리티컬·보안 검토
48
+ - 잠재적 버그, 크리티컬 이슈, 보안 문제(권한, 입력 검증, 시크릿 노출 등)를 검토한다.
49
+ - 체크: [ ] 에러/엣지 케이스 처리 [ ] 보안·권한 로직 [ ] 민감 데이터 처리
50
+
51
+ ### Step 8. 개선 사항 검토
52
+ - 개선한 부분(리팩터, 성능, UX)이 새 버그나 회귀를 만들지 않았는지 확인한다.
53
+ - 체크: [ ] 개선으로 인한 부작용 없음 [ ] 기존 동작 유지
54
+
55
+ ### Step 9. 과대 함수·파일 분할
56
+ - 매우 큰 함수나 파일이 있으면 단일 책임·가독성 기준으로 적절한 크기로 나눈다.
57
+ - 체크: [ ] 한 파일/함수가 과도하게 길지 않은가? [ ] 분할 시 재사용·테스트 용이성
58
+
59
+ ### Step 10. 기존 코드 통합·재사용 검토
60
+ - 새로 작성한 부분과 기존 코드의 통합 지점을 확인한다. 재사용 가능한 컴포넌트·유틸이 있으면 활용했는지 검토한다.
61
+ - 체크: [ ] 중복 구현 없음 [ ] 기존 패턴·API와 정합성
62
+
63
+ ---
64
+
65
+ ## Phase 4: Side Effects & Cleanup (Steps 11–14)
66
+
67
+ ### Step 11. 사이드 이펙트 확인
68
+ - 변경이 다른 기능·라우트·API·공유 상태에 영향을 주지 않는지 확인한다. 조건문/가드로 격리했는지 점검한다.
69
+ - 체크: [ ] 영향 범위 파악됨 [ ] 의도치 않은 동작 없음
70
+
71
+ ### Step 12. 전체 변경 사항 재검토
72
+ - diff·변경 파일 목록을 기준으로 전체를 한 번 더 훑는다. 누락·과도한 변경이 없는지 확인한다.
73
+ - 체크: [ ] 변경 집합이 목적과 일치 [ ] 불필요한 파일/코드 포함 여부
74
+
75
+ ### Step 13. 불필요 코드 정리
76
+ - 구현 과정에서 불필요해진 코드(주석, 디버그 로그, 사용하지 않는 import/변수)를 제거한다.
77
+ - 체크: [ ] console.log 등 제거 [ ] dead code 제거 [ ] 주석 정리
78
+
79
+ ### Step 14. 코드 품질 검토
80
+ - 가독성, 네이밍, 타입 사용(any 지양), 에러 처리, 테스트 필요 여부를 검토한다.
81
+ - 체크: [ ] 타입·Zod 등 프로젝트 규칙 준수 [ ] 품질이 충분한가?
82
+
83
+ ---
84
+
85
+ ## Phase 5: User Flow & Final Gate (Steps 15–17)
86
+
87
+ ### Step 15. 사용자 사용 흐름 확인
88
+ - 실제 사용 시나리오(진입 경로, 폼 제출, 에러 시 화면 등)에서 문제가 없는지 확인한다.
89
+ - 체크: [ ] 주요 시나리오 E2E 관점 [ ] Empty state·에러 시 UX
90
+
91
+ ### Step 16. 관련 부분 반복 검토
92
+ - 검토 중 발견된 이슈와 연관된 코드·설정·문서를 다시 점검한다. 관련된 부분을 놓치지 않도록 추가로 확인한다.
93
+ - 체크: [ ] 발견 이슈의 연쇄 영향 [ ] 관련 모듈·설정까지 검토
94
+
95
+ ### Step 17. 배포 가능 퀄리티 최종 검토
96
+ - "이대로 배포해도 될 수준인가?"를 한 번 더 검토한다. 1–16단계에서 누락된 항목이 없는지 확인한다.
97
+ - 체크: [ ] 배포 전 필수 조건 충족 [ ] 롤백·모니터링 고려 여부
98
+
99
+ ---
100
+
101
+ ## Phase 6: Ship (Step 18)
102
+
103
+ ### Step 18. 커밋 및 PR 작성
104
+ - 프로젝트 커밋 컨벤션(`type(scope): subject`, 한글, 상세 3줄 이상)에 맞춰 커밋한다.
105
+ - PR에는 변경 목적, 영향 범위, 테스트/검증 방법을 요약해 적는다.
106
+ - 체크: [ ] 커밋 메시지 규칙 준수 [ ] PR 설명으로 리뷰어가 맥락 파악 가능
107
+
108
+ ---
109
+
110
+ ## Quick Checklist (Summary)
111
+
112
+ | # | 단계 | 완료 |
113
+ |---|------|:----:|
114
+ | 1 | 계획 수립 | [ ] |
115
+ | 2 | 계획 검토 | [ ] |
116
+ | 3 | 검토 정합성 확인 | [ ] |
117
+ | 4 | 계획 과도성 검토 | [ ] |
118
+ | 5 | 구현 | [ ] |
119
+ | 6 | 목적 부합 검토 | [ ] |
120
+ | 7 | 버그·크리티컬·보안 검토 | [ ] |
121
+ | 8 | 개선 사항 검토 | [ ] |
122
+ | 9 | 과대 함수·파일 분할 | [ ] |
123
+ | 10 | 기존 코드 통합·재사용 검토 | [ ] |
124
+ | 11 | 사이드 이펙트 확인 | [ ] |
125
+ | 12 | 전체 변경 사항 재검토 | [ ] |
126
+ | 13 | 불필요 코드 정리 | [ ] |
127
+ | 14 | 코드 품질 검토 | [ ] |
128
+ | 15 | 사용자 사용 흐름 확인 | [ ] |
129
+ | 16 | 관련 부분 반복 검토 | [ ] |
130
+ | 17 | 배포 가능 퀄리티 최종 검토 | [ ] |
131
+ | 18 | 커밋 및 PR 작성 | [ ] |
package/init-skills.sh ADDED
@@ -0,0 +1,41 @@
1
+ #!/bin/bash
2
+
3
+ # Antigravity Skills Global Setup Script
4
+ # Usage: Run this in a new project root to link global skills.
5
+
6
+ GLOBAL_BASE="/Users/namhyeongseog/Documents/solmate-skills"
7
+ LOCAL_DIR=".agent/skills"
8
+
9
+ # Ensure local skill directory exists
10
+ mkdir -p "$LOCAL_DIR"
11
+
12
+ # Get list of all subdirectories (skills) in GLOBAL_BASE, excluding the directory itself
13
+ SKILLS=($(find "$GLOBAL_BASE" -maxdepth 1 -type d -not -path "$GLOBAL_BASE" -exec basename {} \;))
14
+
15
+ echo "🚀 Linking Global Antigravity Skills..."
16
+
17
+ for skill in "${SKILLS[@]}"; do
18
+ if [ -d "$GLOBAL_BASE/$skill" ]; then
19
+ if [ -L "$LOCAL_DIR/$skill" ] || [ -e "$LOCAL_DIR/$skill" ]; then
20
+ rm -rf "$LOCAL_DIR/$skill"
21
+ fi
22
+ ln -s "$GLOBAL_BASE/$skill" "$LOCAL_DIR/$skill"
23
+ echo "✅ Linked Skill: $skill"
24
+ else
25
+ echo "⚠️ Warning: Global skill '$skill' not found in $GLOBAL_BASE"
26
+ fi
27
+ done
28
+
29
+ # Link AGENTS.md to Root
30
+ echo "🚀 Linking Global AGENTS.md..."
31
+ if [ -f "$GLOBAL_BASE/AGENTS.md" ]; then
32
+ if [ -L "AGENTS.md" ] || [ -f "AGENTS.md" ]; then
33
+ rm -f "AGENTS.md"
34
+ fi
35
+ ln -s "$GLOBAL_BASE/AGENTS.md" "AGENTS.md"
36
+ echo "✅ Linked: AGENTS.md"
37
+ else
38
+ echo "⚠️ Warning: Global AGENTS.md not found in $GLOBAL_BASE"
39
+ fi
40
+
41
+ echo "✨ All set! Your project is now powered by Antigravity's global skills."
@@ -0,0 +1,50 @@
1
+ ---
2
+ name: manage-collaboration
3
+ description: Manages AI-Human synergy and repository-specific collaboration protocols (Team Lead/Member). Use this to ensure correct branching, role-based decision making, and adherence to "Human + AI" team standards.
4
+ ---
5
+
6
+ # Collaboration Management Skill (Master)
7
+
8
+ This skill enforces high-performance collaboration standards, bridging general AI-Human synergy with project-specific documentation.
9
+
10
+ ## 1. Core Principles
11
+
12
+ ### 1.1. Role-Based Adherence
13
+ The AI must identify its current role and follow relevant project guides:
14
+ - **Member Role**: Follow branching (`feat/`, `fix/`), PR templates, and Git conventions.
15
+ - **Lead Role**: Enforce architecture standards, review plans, and oversee project health.
16
+
17
+ ### 1.2. Self-Reflection & Approval
18
+ Before any tool call modifying files, the AI must verify:
19
+ - "Have I explained this to the user?"
20
+ - "Do I have explicit approval?"
21
+ - "Is this change 'Elegant' and necessary?"
22
+
23
+ ## 2. Project-Specific Links (Standard Paths)
24
+
25
+ The AI MUST check for and follow these documents if they exist in the repository:
26
+ - **Primary Team Member Guide**: `docs/03_Technical_Specs/11_COLLABORATION_GUIDE.md`
27
+ - **Primary Team Lead Guide**: `docs/03_Technical_Specs/12_TEAM_LEAD_GUIDE.md`
28
+ - **Strategic Policy**: `AGENTS.md`
29
+
30
+ ## 3. Operational Protocols
31
+
32
+ ### 3.1. Clean Context Strategy
33
+ Apply the "Subagent Strategy" to keep the main context clean:
34
+ - **Delegation**: Offload research/analysis to Browser/Thinking tools.
35
+ - **Aggregation**: Return only summarized, high-value insights to the main chat.
36
+
37
+ ### 3.2. 자가개선 루프 (Self-Improvement)
38
+ - Maintain `tasks/lessons.md` to capture patterns and avoid repeating mistakes.
39
+ - Reflect on lessons at the start of each task.
40
+
41
+ ### 3.3. Git Workflow
42
+ - **Branching**: Branch from `main` using `type/scope` (e.g., `feat/auth`).
43
+ - **Commits**: Use Conventional Commits in Korean (`type: 설명`).
44
+ - **PRs**: Ensure at least one human review approved before considering a feature "Merged."
45
+
46
+ ## 4. Verification Baseline
47
+
48
+ 1. "Does this match the Team Lead's quality standard?"
49
+ 2. "Have I followed the Git protocol defined in the project's Guide?"
50
+ 3. "Are the results verified with terminal logs or browser tests?"
@@ -0,0 +1,389 @@
1
+ ---
2
+ name: manage-docs
3
+ description: Create and manage project documentation according to the 365 Principle (3 Investor Lenses, 6 Rubrics, 5 Documentation Layers) with mandatory cross-layer context linking. Use when the user asks to document features, update documentation, create spec files, or manage project docs. Always include "Related Documents" sections to maintain context continuity across layers.
4
+ ---
5
+
6
+ # Documentation Management Skill
7
+
8
+ This skill helps you maintain the project's documentation structure, ensuring consistency and adherence to the **365 Principle**.
9
+
10
+ > **365 Principle** -- 프로젝트 품질과 시장 경쟁력을 보장하는 통합 프레임워크.
11
+ >
12
+ > | 숫자 | 의미 | 내용 |
13
+ > | :--- | :--- | :--- |
14
+ > | **3** | Investor Lenses | Leverage, Realistic Money Flow, Defensibility |
15
+ > | **6** | Global Rubric | Functionality, Impact, Novelty, UX, Open-source, Business Plan |
16
+ > | **5** | Documentation Layers | Concept_Design, UI_Screens, Technical_Specs, Logic_Progress, QA_Validation |
17
+
18
+ ## 0. Global Rubric (6 Core Criteria)
19
+
20
+ All projects should be designed and validated against these 6 criteria to ensure high quality and market competitiveness.
21
+
22
+ 1. **Functionality**: 실제로 돌아가는가? 코드가 깔끔한가? (MVP 작동 여부 및 코드 품질)
23
+ 2. **Potential Impact**: TAM(시장 규모)이 큰가? 생태계 기여도는? (성장 가능성 및 기여도)
24
+ 3. **Novelty**: 기존에 없던 접근인가? 차별점이 명확한가? (참신함 및 고유 가치)
25
+ 4. **UX**: 성능을 UX로 전환했는가? (400ms 반응성, 저렴한 비용 등 체감 성능)
26
+ 5. **Open-source**: 다른 빌더가 쓸 수 있는가? (Composability 및 협업 가능성)
27
+ 6. **Business Plan**: 지속 가능한 수익 모델이 있는가? (수익성 및 생존 모델)
28
+
29
+ ## 1. 규칙
30
+
31
+ 1. 이모지 금지. 전문적이고 명확한 텍스트로만 소통한다.
32
+ 2. 문서를 독단적으로 작성하지 않는다. 초안 작성 전, 반드시 사용자에게 핵심 질문을 던지고 답변을 바탕으로 작성한다 (Ask before Write).
33
+ 3. 기존 문서가 있으면 반드시 먼저 읽고, 컨텍스트와 스타일을 유지하며 업데이트한다. 덮어쓰지 않는다.
34
+
35
+ ## 2. 5-Layer 구조 (폴더명 / 역할)
36
+
37
+ | 순번 | 폴더명 | 역할 |
38
+ | :--- | :--- | :--- |
39
+ | 1 | `docs/01_Concept_Design/` | 컨셉 가이드. 비전, 상세 기능 정의(Product Specs), 비즈니스 전략. |
40
+ | 2 | `docs/02_UI_Screens/` | UI/UX 설계. 디자인 시스템/UI 가이드(UI Design), 화면 흐름(Screen Flow), 프로토타입 리뷰. |
41
+ | 3 | `docs/03_Technical_Specs/` | 기술 명세. 데이터·API 약속, DB 스키마·구현 가이드. |
42
+ | 4 | `docs/04_Logic_Progress/` | 로직·진행. 실행 로드맵(Roadmap), 백로그(Backlog), 비즈니스 로직·상태 관리·알고리즘. |
43
+ | 5 | `docs/05_QA_Validation/` | QA·검증. 테스트 시나리오, QA 체크리스트, 시스템 검증. |
44
+
45
+ | Layer | Directory | Purpose (EN) | Examples |
46
+ | :--- | :--- | :--- | :--- |
47
+ | Concept_Design | `docs/01_Concept_Design/` | Planning, Purpose, Core Specs. | `00_COLLABORATION_GUIDE.md`, `01_VISION_CORE.md`, `02_PRODUCT_SPECS.md` |
48
+ | UI_Screens | `docs/02_UI_Screens/` | UI Design System, screen flows. | `00_SCREEN_FLOW.md`, `01_UI_DESIGN.md` |
49
+ | Technical_Specs | `docs/03_Technical_Specs/` | Data, API, implementation specs. | `01_DB_SCHEMA.md`, `02_API_SPECS.md` |
50
+ | Logic_Progress | `docs/04_Logic_Progress/` | Roadmap, Backlog, business rules. | `00_ROADMAP.md`, `01_BACKLOG.md` |
51
+ | QA_Validation | `docs/05_QA_Validation/` | Test scenarios, QA checklists, validation. | `01_TEST_SCENARIOS.md`, `02_QA_CHECKLIST.md` |
52
+
53
+ ### 2.1. Layer Roles & Context Flow
54
+
55
+ **Concept & Design (01_Concept_Design/)**:
56
+ - **Role**: 프로젝트의 비전, 목적, 전략, 디자인 원칙 정의
57
+ - **Context Flow**: Concept_Design -> UI_Screens (디자인 가이드라인 제공), Concept_Design -> Technical_Specs (기능 명세 기반 제공)
58
+
59
+ **UI Screens (02_UI_Screens/)**:
60
+ - **Role**: UI 프로토타입 리뷰 및 사용자 플로우 검증 (페이지별 완성된 모습 확인)
61
+ - **Context Flow**: UI_Screens <- Concept_Design (디자인 시스템 참조), UI_Screens -> Technical_Specs (구현 명세 요구사항 도출)
62
+
63
+ **Technical Specs (03_Technical_Specs/)**:
64
+ - **Role**: 기술 명세 및 구현 가이드라인 정의 (데이터, API 등 기술적 약속)
65
+ - **Context Flow**: Technical_Specs <- Concept_Design (기능 명세 기반), Technical_Specs <- UI_Screens (UI 요구사항 반영), Technical_Specs -> Logic_Progress (비즈니스 로직 설계 기반)
66
+
67
+ **Logic & Progress (04_Logic_Progress/)**:
68
+ - **Role**: 백로그(진행 상태)와 비즈니스 로직, 상태 관리, 알고리즘 설계
69
+ - **Context Flow**: Logic_Progress <- Technical_Specs (데이터 모델 및 API 명세 참조), Logic_Progress <- UI_Screens (UI 인터랙션 요구사항 반영), Logic_Progress -> QA_Validation (테스트 시나리오 기반)
70
+
71
+ **QA & Validation (05_QA_Validation/)**:
72
+ - **Role**: 테스트 케이스 및 QA 기준 정의 (시스템 검증)
73
+ - **Context Flow**: QA_Validation <- 모든 상위 레이어 (Concept_Design, UI_Screens, Technical_Specs, Logic_Progress 참조하여 테스트 시나리오 작성)
74
+
75
+ ## 3. 레이어 판별 (어디에 둘지)
76
+
77
+ - 기획·제품 정의 -> **01_Concept_Design**
78
+ - UI 디자인·프로토타입·화면 흐름 -> **02_UI_Screens**
79
+ - 상세 구현 명세 (특히 DB, API, Pipeline) -> **03_Technical_Specs**
80
+ - 실행 로드맵·백로그·비즈니스 로직 -> **04_Logic_Progress**
81
+ - 테스트 계획·QA 보고 -> **05_QA_Validation**
82
+
83
+ ## 4. 파일 작성 규칙
84
+
85
+ ### 네이밍
86
+ 파일명 앞에 2자리 순번을 붙인다: `01_VISION_CORE.md`, `02_API_SPECS.md`
87
+
88
+ ### 메타데이터 (필수)
89
+ 모든 문서 최상단:
90
+ ```markdown
91
+ # [Document Title]
92
+ > Created: YYYY-MM-DD HH:mm
93
+ > Last Updated: YYYY-MM-DD HH:mm
94
+ ```
95
+
96
+ ### Rubric-First Writing
97
+ Every document, regardless of the layer, should include specific points related to the **6 Core Rubrics** where relevant. For example, a Logic doc should mention **UX (Latency)** and **Functionality (Edge cases)**.
98
+
99
+ ### Related Documents 섹션 (필수)
100
+ 모든 문서 끝에 관련 문서 링크를 포함한다. 상대 경로를 사용하고, 관계를 간략히 설명한다.
101
+
102
+ ```markdown
103
+ ## X. Related Documents
104
+ - **Layer Name**: [Document Title](./relative/path.md) - 관계 설명
105
+ ```
106
+
107
+ 링크 규칙:
108
+ - 같은 레이어: `./02_LEAN_CANVAS.md`
109
+ - 다른 레이어: `../01_Concept_Design/03_PRODUCT_SPECS.md`
110
+ - 특정 섹션 참조 시 Section 번호 명시
111
+
112
+ ## 5. Interactive Process (Ask before Write & Ask before Code)
113
+
114
+ **CRITICAL**: Do NOT generate a full document based on assumptions. Do NOT start coding based on documents alone. Follow this mandatory **2-Step Questioning Workflow**:
115
+
116
+ 1. **Step 1 -- Project Definition Questions**: Ask Phase 1/2 questions at the start of the project.
117
+ 2. **Step 2 -- Document Creation**: Create/update documents based on Step 1 answers.
118
+ 3. **Step 3 -- Pre-Code Final Verification**: **Crucial Step.** Before any code is written, perform a second round of inquiry focused on implementation details (Folder structure, specific patterns, edge cases, error handling).
119
+ 4. **Step 4 -- Implementation**: Proceed with coding only after explicitly confirming with the user that all technical decisions are settled.
120
+
121
+ **[Interactive Process - Phase-based Questions]**
122
+
123
+ 1. **Why (Problem & Goal)**: What is the core problem? How does the world change if we succeed? What are short/long-term goals?
124
+ 2. **Who (Target User)**: Who is the core customer? What are their pain points? How do they solve this now?
125
+ 3. **What (Value & Differentiation)**: What is our Unique Value Proposition? Why would they pay/use us over competitors? (**Novelty Check**)
126
+ 4. **How (Feasibility)**: What must be in MVP (v1.0)? Platform constraints (Web/Mobile)? Legal/Security concerns? (**Functionality Check**)
127
+ 5. **Distribution Strategy**: Output format (Responsive Web/PWA/App)? Hosting Platform (Vercel/Netlify)? Domain strategy? (**Impact Check**)
128
+ 6. **Global Layout & Brand Consistency**: Discuss the standard **Header and Footer** early. What links, logo, and legal information must be present on every page? If the product will offer an **AI / assistant** (e.g. "Ask AI" or concierge), where should the entry point live (floating button, header icon, dedicated screen, sidebar panel) and on which pages?
129
+
130
+ ### Phase 2 -- Business Model Deep-dive (Pitch Deck, Monetization Strategy 작성 시 필수)
131
+ 7. **User Spending Path (The "Winning" Journey)**: '끝내주는 기술'보다 중요한 것은 '유저가 실제로 돈을 쓰는 경로'입니다. 유저가 지갑을 여는 결정적 순간(Moment of Truth)은 언제입니까? 프라이버시와 결제 레일이 이 경로를 어떻게 보호합니까? (**Business Plan Check - CRITICAL**)
132
+ 8. **Privacy as a TAM Expander**: 프라이버시가 없으면 시장 자체가 열리지 않습니다. 유저가 안심하고 '진실'을 이야기하게 만드는 장치는 무엇입니까? 이것이 어떻게 잠재적 시장 규모(TAM)를 확장합니까? (**Privacy & Strategy Check**)
133
+ 9. **Company-like Infrastructure (The 'Company' Smell)**: 단순한 '툴'을 넘어 하나의 '경제 체계'를 지원하는 인프라를 갖추었습니까? 다른 빌더나 AI 에이전트가 우리 위에서 활동하거나 결제할 수 있는 구조(예: x402, MCP 등)가 설계되어 있습니까? (**Scalability & Infra Check**)
134
+ 10. **Action-to-Transaction Flow (Consumer Pattern)**: 유저의 자연스러운 '행동'이 어떻게 즉각적인 '거래'로 연결됩니까? 고속/저수수료 인프라를 활용하여 결제 허들을 제거하고 대중 UX를 확보했습니까? (**Consumer UX & Monetization Check**)
135
+ 11. **Technical Necessity (The "Why this Stack?" Question)**: 선택한 기술 스택(AI, DB, 네트워크 등)이 '필연적'입니까? "단순히 성능이 좋아서"가 아니라, "우리의 핵심 기능은 이 기술의 특정 속성(예: 400ms 지연시간, 안정성 등) 없이는 작동하지 않는다"는 것을 증명할 수 있습니까? (**Engineering Strategy Check**)
136
+
137
+ ### Phase 3 -- Pitch & Strategy (투자자 대면, 경쟁 제출 준비 시 필수)
138
+ 12. **Long-term Vision vs. Incremental Execution**: 이것은 '2주짜리 프로젝트'입니까, 아니면 '2년짜리 비즈니스'입니까? 지금 당장 완벽하게 작동하는 '단 하나의 핵심 기능'에서 시작하여, 거대한 비전으로 나아가는 단계별 실행 전략이 기록되어 있습니까? 각 단계별로 참조할 기술 명세 문서(Layer 3) 링크가 포함되어 있습니까? (**Execution Roadmap Check - Connectivity Mandate**)
139
+ 13. **Aesthetics & First Impression ("있어보이니즘")**: 같은 기능이라도 프리미엄 UI는 가치를 50% 이상 높입니다. 첫 인상에서 유저를 압도할 수 있는 시각적 디테일과 UX 완성도를 갖추었습니까? (**UX/UI Premium Check**)
140
+ 14. **Pitch Readiness (3-minute Storytelling)**: 1,500개 이상의 경쟁작 사이에서 3분 안에 팀/문제/타겟/비전/검증을 명확히 전달할 수 있는 '피치 덱' 관점의 요약이 포함되어 있습니까? 6개 루브릭 중 최소 4개 이상이 승리 전략으로 포함되었습니까? (**Strategic Pitch Check**)
141
+ 15. **The 3 Investor Lenses (Scale & Moat)**: 투자자의 관점에서 다음 3가지를 증명했습니까?
142
+ - **Leverage**: 내가 커질 때 생태계도 함께 커지는가?
143
+ - **Realistic Money Flow**: "어떻게 돈 벌어?"라는 질문에 군더더기 없이 짧게 답할 수 있는가?
144
+ - **Defensibility**: 시간이 흐를수록 경쟁자가 따라오기 힘든 '우리만의 해자(Moat)'는 무엇인가?
145
+ 16. **The Future Weapon (6-18 Months Vision)**: 단순한 현재 기능 구현을 넘어, 6~18개월 뒤에 우리가 어떤 강력한 무기로 시장에서 싸우고 있을지 상상이 됩니까? (**Future Strategy Check**)
146
+
147
+ ### Specs Phase (DB_SCHEMA, API_SPECS 작성 전 필수)
148
+ 1. **Tech Stack & Architecture**: Which Framework? Which DB? ORM? Auth method? (**Open-source/Composability Check**)
149
+ 2. **Data Models & Relationships**: Which entities are core? Key relationships? Store media in DB or Storage? (**Functionality Check**)
150
+ 3. **API Strategy & Edge Cases**: REST or GraphQL? How to handle failures, retries, rate limits? Multi-currency or multi-language logic? (**Engineering Strategy Check**)
151
+ 4. **Performance & UX Goals**: What are the target latency times (e.g., 400ms)? How to simplify the user journey? Caching strategy? (**UX Check**)
152
+
153
+ ### Logic Phase (BACKLOG, coding 시작 전 필수)
154
+ 1. **Project Initialization**: Use CLI presets or manual setup?
155
+ 2. **UI Theme Strategy**: Pre-defined theme vs Custom Brand Colors? Font choice?
156
+ 3. **Folder Structure**: Feature-based vs Type-based?
157
+
158
+ ### Dev Phase (DEVELOPMENT_PRINCIPLES 작성/갱신 시 필수)
159
+ 개발 원칙·컨벤션 문서를 작성하기 전에, 현재 코드베이스를 분석하고 아래 4개 영역을 사용자와 확인한다.
160
+
161
+ 1. **Architecture (구조)**: 현재 폴더 구조는? import 규칙(path alias vs relative)은? server/client 경계 분리 방식은? 변경이 필요한가, 현행 유지인가?
162
+ 2. **Patterns (패턴)**: 상태 관리 전략(loader/action only vs 전역 상태)은? 에러 처리 패턴(throw Response vs return error)은? 컴포넌트 구성 규칙(함수형 전용, Props 타이핑)은?
163
+ 3. **Standards (기준)**: TypeScript strict 모드 유지 여부? 스타일링 규칙(디자인 토큰 vs 임의 값)? 인증/인가 패턴? 커밋 컨벤션?
164
+ 4. **Tooling (도구)**: 린터/포매터 설정 현황? 테스트 프레임워크? 환경변수 검증 방식? CI/CD?
165
+ 5. **Git 제외 대상 (`.gitignore`)**: 아래 파일/디렉토리는 로컬 전용이며 Git에 커밋하지 않는다.
166
+
167
+ | 대상 | 사유 |
168
+ |:---|:---|
169
+ | `.agent/` | AI 에이전트 스킬 정의 (로컬 워크플로우 설정) |
170
+ | `.claude/` | Claude Code 커맨드 및 설정 (개인 환경) |
171
+ | `.cursor/` | Cursor IDE 에이전트 및 설정 (로컬 워크플로우) |
172
+ | `.vscode/` | VS Code 에디터 설정 (개인 환경) |
173
+ | `AGENTS.md` | AI 에이전트 행동 규칙 (로컬 전용) |
174
+ | `CLAUDE.md` | Claude Code 프로젝트 컨텍스트 (로컬 전용) |
175
+
176
+ > **DESIGN.md**와 **docs/** 디렉토리는 프로젝트 공유 자산이므로 Git에 포함한다.
177
+
178
+ **비일관성 처리 원칙**: 코드베이스에서 비일관성(예: import 경로 혼용)이 발견되면, 하나의 기준을 선택하고 원칙으로 명시한다. 기존 코드는 점진적 리팩토링 대상으로 표기한다.
179
+
180
+ **[TODO] 항목**: 현재 미구현이나 향후 적용할 원칙은 `[TODO]` 태그와 우선순위(High/Medium/Low)를 명시한다.
181
+
182
+ **대상 문서**: `docs/03_Technical_Specs/00_DEVELOPMENT_PRINCIPLES.md`
183
+
184
+ ### QA Phase (필수 포함 항목)
185
+ 1. **Global Rubric Scorecard**: Evaluation against the 6 criteria. (Goal: Coverage of 4+)
186
+ 2. **Originality & Ethics Check**: Ensure the work is original and not a derivative copy.
187
+
188
+ ## 6. Templates
189
+
190
+ ### (A) Concept & Design Templates (`docs/01_Concept_Design/`)
191
+ Required Documents:
192
+ 1. **`00_COLLABORATION_GUIDE.md`**: AI-Human Synergy Standards.
193
+ 2. **`01_VISION_CORE.md`**: Core Values, Target Audience.
194
+ 3. **`02_LEAN_CANVAS.md`**: Problem, Solution, UVP, Metrics.
195
+ 4. **`03_PRODUCT_SPECS.md`**: MVP Definition, NFR.
196
+
197
+ ### (B) UI Screens Template (`docs/02_UI_Screens/`)
198
+ Required Documents:
199
+ 1. **`00_SCREEN_FLOW.md`**: Full User Journey.
200
+ 2. **`01_UI_DESIGN.md`**: Design System (Color, Typography, Layout).
201
+ 3. **`XX_PROTOTYPE_REVIEW.md`**: Specific Page Feedback.
202
+
203
+ ```markdown
204
+ # [Title: Lean Canvas / Product Specs / Roadmap]
205
+ > Created: [YYYY-MM-DD HH:mm]
206
+ > Last Updated: [YYYY-MM-DD HH:mm]
207
+
208
+ [Document content...]
209
+
210
+ ## X. Related Documents
211
+ - **Concept_Design**: [Vision & Core Values](./01_VISION_CORE.md) - 프로젝트 비전 및 타겟 오디언스
212
+ - **Concept_Design**: [Lean Canvas](./02_LEAN_CANVAS.md) - 비즈니스 모델 및 수익 구조
213
+ - **Concept_Design**: [Roadmap](./04_ROADMAP.md) - 단계별 실행 계획
214
+ ```
215
+
216
+ ### (B) UI Screens Template (`docs/02_UI_Screens/`)
217
+ Used for: Prototype Review, Screen Flow, UI Feedback
218
+
219
+ ```markdown
220
+ # [Prototype Name] Review
221
+ > Created: [YYYY-MM-DD HH:mm]
222
+ > Last Updated: [YYYY-MM-DD HH:mm]
223
+
224
+ ## 1. Prototype Link/Screenshot
225
+ (Attach image or link to the working prototype)
226
+
227
+ ## 2. Key User Flows
228
+ (Describe the flow demonstrated in this prototype)
229
+
230
+ ## 3. Feedback & Improvements
231
+ (What needs to be changed before implementation?)
232
+
233
+ ## 4. Related Documents
234
+ - **Concept_Design**: [Product Specs](../01_Concept_Design/03_PRODUCT_SPECS.md) - 해당 페이지 사이트맵 및 사용자 플로우
235
+ - **Concept_Design**: [UI Design](../01_Concept_Design/05_UI_DESIGN.md) - 디자인 시스템 및 컴포넌트 가이드라인
236
+ - **Prototype**: [Previous/Next Prototype](./XX_PREVIOUS_REVIEW.md) - 이전/다음 단계 프로토타입
237
+ ```
238
+
239
+ ### (C) Technical Specs Template (`docs/03_Technical_Specs/`)
240
+ Used for: Feature Specs, API Design, Database Schema
241
+
242
+ ```markdown
243
+ # [Feature Name] Specification
244
+ > Created: [YYYY-MM-DD HH:mm]
245
+ > Last Updated: [YYYY-MM-DD HH:mm]
246
+
247
+ [Document content...]
248
+
249
+ ## X. Related Documents
250
+ - **Concept_Design**: [Product Specs](../01_Concept_Design/03_PRODUCT_SPECS.md) - 기능 명세 및 사이트맵
251
+ - **UI_Screens**: [Related UI Review](../02_UI_Screens/XX_REVIEW.md) - 관련 UI 프로토타입
252
+ - **Technical_Specs**: [Database Schema](./01_DB_SCHEMA.md) - 데이터 모델 설계
253
+ - **Logic_Progress**: [Related Logic Design](../04_Logic_Progress/XX_LOGIC.md) - 비즈니스 로직 설계
254
+ ```
255
+
256
+ ### (D) Logic & Progress Template (`docs/04_Logic_Progress/`)
257
+ Used for: Executional Roadmap, Backlog, Business Rules
258
+
259
+ Required Documents:
260
+ 1. **`00_ROADMAP.md`**: Now / Next / Later Strategy (Mandatory: Link to Layer 3 Tech Specs).
261
+ 2. **`01_BACKLOG.md`**: Kanban Board (Current, Upcoming, Completed).
262
+ 3. **`02_ROADMAP_BACKLOG_SYNC.md`**: Rules for keeping Roadmap and Backlog updated.
263
+ 4. **Specific Logic Docs**: (e.g., `03_BOOKING_STATE_MACHINE.md`)
264
+
265
+ ```markdown
266
+ # 00_ROADMAP
267
+ ## 1. Development Phases
268
+ ### Phase X: [Phase Name]
269
+ * [ ] Task 1 (Context: [Relate to Layer 3 Spec](../03_Technical_Specs/XX_SPEC.md))
270
+ ```
271
+
272
+ ```markdown
273
+ # [Logic Name] Design
274
+ > Created: [YYYY-MM-DD HH:mm]
275
+ > Last Updated: [YYYY-MM-DD HH:mm]
276
+
277
+ ## 1. Context
278
+ (Why is this logic needed? Which UI interacts with it?)
279
+
280
+ **관련 UI**: [UI Component Name] -> [Next Component] -> [Final Component]
281
+
282
+ ## 2. Business Rules
283
+ - [ ] Rule 1: (e.g., Cancellation is free until 24 hours before)
284
+ - [ ] Rule 2: (e.g., Login required for payment)
285
+
286
+ ## 3. Data Flow & State
287
+ (How does data move? State machine diagram if needed)
288
+
289
+ ## 4. Algorithm / Pseudo-code
290
+ (Step-by-step logic description)
291
+
292
+ ## 5. Related Documents
293
+ - **Concept_Design**: [Product Specs](../01_Concept_Design/03_PRODUCT_SPECS.md) - 관련 기능 명세
294
+ - **UI_Screens**: [Related UI Review](../02_UI_Screens/XX_REVIEW.md) - 관련 UI 프로토타입
295
+ - **Technical_Specs**: [Database Schema](../03_Technical_Specs/01_DB_SCHEMA.md) - 데이터 모델 참조
296
+ - **Technical_Specs**: [API Specs](../03_Technical_Specs/02_API_SPECS.md) - API 엔드포인트 참조
297
+ - **QA_Validation**: [Test Scenarios](../05_QA_Validation/01_TEST_SCENARIOS.md) - 관련 테스트 케이스
298
+ ```
299
+
300
+ ### (E) QA & Validation Template (`docs/05_QA_Validation/`)
301
+ Used for: Test Plans, Checklists, Bug Reports
302
+
303
+ ```markdown
304
+ # Test Report / Plan: [Feature Name]
305
+ > Created: [YYYY-MM-DD HH:mm]
306
+ > Last Updated: [YYYY-MM-DD HH:mm]
307
+
308
+ ## 1. Rubric Validation (Mandatory Check)
309
+ 이 기능이 안티그래비티 글로벌 루브릭 6가지 기준을 충족하는지 검증합니다.
310
+
311
+ | Criterion | Status (Pass/Fail) | Specific Evidence / Metrics |
312
+ | :--- | :---: | :--- |
313
+ | **Functionality** | | MVP 기능 작동 여부 및 린트/타입 에러 부재 |
314
+ | **Potential Impact** | | 생태계 기여 및 데이터 확장성 확인 |
315
+ | **Novelty** | | 기존 기능 대비 차별적 가치 증명 |
316
+ | **UX** | | 응답 속도(400ms) 및 인터랙션 매끄러움 |
317
+ | **Open-source** | | 모듈 간 결합성 및 재사용 가능성 |
318
+ | **Business Plan** | | 기능 구현이 수익 모델/지속성에 기여하는가 |
319
+
320
+ ## 2. Test Scenarios & Results
321
+ (Detailed test cases and results)
322
+
323
+ ## 3. Related Documents
324
+ - **Concept_Design**: [Product Specs](../01_Concept_Design/03_PRODUCT_SPECS.md) - 테스트 대상 기능 명세
325
+ - **UI_Screens**: [Related UI Review](../02_UI_Screens/XX_REVIEW.md) - 테스트 대상 UI 프로토타입
326
+ - **Technical_Specs**: [Database Schema](../03_Technical_Specs/01_DB_SCHEMA.md) - 데이터베이스 테스트 참조
327
+ - **Technical_Specs**: [API Specs](../03_Technical_Specs/02_API_SPECS.md) - API 테스트 참조
328
+ - **Logic_Progress**: [Related Logic Design](../04_Logic_Progress/XX_LOGIC.md) - 비즈니스 로직 테스트 참조
329
+ - **QA_Validation**: [QA Checklist](./02_QA_CHECKLIST.md) - 릴리스 기준 및 체크리스트
330
+ ```
331
+
332
+ ## 7. Context Linking & Cross-References
333
+
334
+ **CRITICAL**: Every document MUST maintain context continuity with related documents across layers.
335
+
336
+ ### 7.1. Linking Rules by Layer
337
+
338
+ **Concept_Design**: 같은 레이어 문서들 (Vision -> Lean Canvas -> Product Specs -> Roadmap -> UI Design 순서) + 관련 UI_Screens/Technical_Specs (있을 경우)
339
+
340
+ **UI_Screens**: Concept_Design (Product Specs, UI Design) + 이전/다음 UI_Screens + Technical_Specs/Logic_Progress (있을 경우)
341
+
342
+ **Technical_Specs**: Concept_Design + UI_Screens + 다른 Technical_Specs (DB <-> API <-> Storage) + Logic_Progress (있을 경우)
343
+
344
+ **Logic_Progress**: Concept_Design + UI_Screens + Technical_Specs (DB, API) + QA_Validation (있을 경우)
345
+
346
+ **QA_Validation**: 모든 상위 레이어 참조
347
+
348
+ ### 7.2. Link Path Format
349
+
350
+ - **Use relative paths**: Always use relative paths from the current document
351
+ - **Be specific**: Include section references when linking to specific parts (e.g., "Section 3.A.1")
352
+ - **Describe relationship**: Always include a brief description of why the link is relevant
353
+
354
+ Path Examples:
355
+ - Same layer: `./02_LEAN_CANVAS.md`
356
+ - Parent layer: `../01_Concept_Design/03_PRODUCT_SPECS.md`
357
+ - Child layer: `../02_UI_Screens/00_LANDING_PAGE_REVIEW.md`
358
+ - Sibling layer: `../03_Technical_Specs/01_DB_SCHEMA.md`
359
+
360
+ ### 7.3. Context Continuity Checklist
361
+
362
+ When creating or updating a document, verify:
363
+ - [ ] All relevant Foundation documents are linked (if applicable)
364
+ - [ ] Related Prototype documents are linked (if exist)
365
+ - [ ] Related Specs documents are linked (if exist)
366
+ - [ ] Related Logic documents are linked (if exist)
367
+ - [ ] Related Test documents are linked (if exist)
368
+ - [ ] Links use relative paths correctly
369
+ - [ ] Each link includes a brief description of the relationship
370
+ - [ ] Section references are included when linking to specific parts
371
+
372
+ ## 8. 실행 절차
373
+
374
+ 1. 사용자 요청에서 대상 레이어를 판별한다
375
+ 2. 해당 디렉터리의 기존 문서를 확인한다
376
+ 3. 기존 문서가 있으면 읽어서 컨텍스트를 파악한다
377
+ 4. 레이어에 맞는 질문을 사용자에게 던진다 (Phase별 단계적 질문)
378
+ 5. 답변을 바탕으로 문서를 작성/수정한다 (Rubric-First Writing)
379
+ 6. Related Documents 섹션을 반드시 포함한다
380
+ 7. Last Updated 타임스탬프를 갱신한다
381
+
382
+ ## 9. Best Practices
383
+
384
+ - **Keep it minimal**: Don't write fluff. Be precise.
385
+ - **Maintain context continuity**: Always include "Related Documents" section to link across layers.
386
+ - **Update the Map**: If you add a major new document, consider updating `docs/01_Concept_Design/04_ROADMAP.md` or a central index if one exists.
387
+ - **Preserve existing content**: When updating documents, read existing files first and maintain context and style. Do not overwrite unnecessarily.
388
+ - **Follow Interactive Process**: Always ask users key questions before creating documents. Never generate documents based solely on assumptions.
389
+ - **Update Last Updated date**: When modifying a document, update the "Last Updated" timestamp in the metadata header.
@@ -0,0 +1,52 @@
1
+ ---
2
+ name: manage-skills
3
+ description: 세션 변경사항을 분석하여 검증 스킬 누락을 탐지합니다. 기존 스킬을 동적으로 탐색하고, 새 스킬을 생성하거나 기존 스킬을 업데이트합니다.
4
+ disable-model-invocation: true
5
+ argument-hint: "[선택사항: 특정 스킬 이름 또는 집중할 영역]"
6
+ ---
7
+
8
+ # 세션 기반 스킬 유지보수 (Template)
9
+
10
+ ## 목적
11
+
12
+ 현재 세션에서 변경된 내용을 분석하여 검증 스킬의 드리프트를 탐지하고 수정합니다:
13
+
14
+ 1. **커버리지 누락** — 어떤 verify 스킬에서도 참조하지 않는 변경된 파일
15
+ 2. **유효하지 않은 참조** — 삭제되거나 이동된 파일을 참조하는 스킬
16
+ 3. **누락된 검사** — 기존 검사에서 다루지 않는 새로운 패턴/규칙
17
+ 4. **오래된 값** — 더 이상 일치하지 않는 설정값 또는 탐지 명령어
18
+
19
+ ## 실행 시점
20
+
21
+ - 새로운 패턴이나 규칙을 도입하는 기능을 구현한 후
22
+ - 기존 verify 스킬을 수정하고 일관성을 점검하고 싶을 때
23
+ - PR 전에 verify 스킬이 변경된 영역을 커버하는지 확인할 때
24
+
25
+ ## 등록된 검증 스킬
26
+
27
+ 현재 프로젝트에 등록된 검증 스킬 목록입니다. 새 스킬 생성/삭제 시 이 목록을 업데이트합니다.
28
+
29
+ | 스킬 | 설명 | 커버 파일 패턴 |
30
+ |------|------|---------------|
31
+ | `verify-*` | (동적 탐색 수행) | (동적 탐색 수행) |
32
+
33
+ ## 워크플로우
34
+
35
+ ### Step 0: 동적 스킬 탐색
36
+
37
+ 프로젝트에서 기존 `verify-*` 스킬을 자동으로 검색합니다.
38
+
39
+ ### Step 1: 세션 변경사항 분석 (git diff)
40
+ ### Step 2: 탐색된 스킬과 변경 파일 매핑
41
+ ### Step 3: 영향받은 스킬의 커버리지 갭 분석
42
+ ### Step 4: CREATE vs UPDATE 결정 (사용자 승인 필수)
43
+ ### Step 5: 기존 스킬 업데이트
44
+ ### Step 6: 새 스킬 생성 (TEMPLATE 활용)
45
+ ### Step 7: 검증 및 동기화 (AGENTS.md 등)
46
+
47
+ ## 품질 기준
48
+
49
+ - **코드베이스의 실제 파일 경로** 사용
50
+ - **작동하는 탐지 명령어** (grep/glob) 포함
51
+ - **PASS/FAIL 기준** 명시
52
+ - **최소 2-3개의 현실적인 예외(Exceptions)** 포함