moai-adk 0.4.0__py3-none-any.whl → 0.4.1__py3-none-any.whl

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.

Potentially problematic release.


This version of moai-adk might be problematic. Click here for more details.

Files changed (125) hide show
  1. moai_adk/__init__.py +1 -8
  2. moai_adk/cli/commands/init.py +10 -5
  3. moai_adk/cli/commands/update.py +274 -118
  4. moai_adk/cli/prompts/init_prompts.py +14 -18
  5. moai_adk/core/diagnostics/slash_commands.py +1 -1
  6. moai_adk/core/project/backup_utils.py +1 -0
  7. moai_adk/core/project/phase_executor.py +3 -1
  8. moai_adk/core/project/validator.py +3 -2
  9. moai_adk/core/template/backup.py +11 -3
  10. moai_adk/core/template/merger.py +16 -3
  11. moai_adk/core/template/processor.py +22 -3
  12. moai_adk/templates/.claude/agents/alfred/cc-manager.md +443 -424
  13. moai_adk/templates/.claude/agents/alfred/debug-helper.md +116 -103
  14. moai_adk/templates/.claude/agents/alfred/doc-syncer.md +130 -116
  15. moai_adk/templates/.claude/agents/alfred/git-manager.md +186 -174
  16. moai_adk/templates/.claude/agents/alfred/implementation-planner.md +227 -213
  17. moai_adk/templates/.claude/agents/alfred/project-manager.md +205 -125
  18. moai_adk/templates/.claude/agents/alfred/quality-gate.md +224 -209
  19. moai_adk/templates/.claude/agents/alfred/spec-builder.md +174 -160
  20. moai_adk/templates/.claude/agents/alfred/tag-agent.md +151 -139
  21. moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +209 -196
  22. moai_adk/templates/.claude/agents/alfred/trust-checker.md +247 -233
  23. moai_adk/templates/.claude/commands/alfred/0-project.md +673 -640
  24. moai_adk/templates/.claude/commands/alfred/1-plan.md +342 -333
  25. moai_adk/templates/.claude/commands/alfred/2-run.md +295 -285
  26. moai_adk/templates/.claude/commands/alfred/3-sync.md +366 -356
  27. moai_adk/templates/.claude/hooks/alfred/README.md +52 -52
  28. moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +44 -48
  29. moai_adk/templates/.claude/hooks/alfred/core/__init__.py +17 -17
  30. moai_adk/templates/.claude/hooks/alfred/core/checkpoint.py +59 -59
  31. moai_adk/templates/.claude/hooks/alfred/core/context.py +19 -19
  32. moai_adk/templates/.claude/hooks/alfred/core/project.py +52 -52
  33. moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +1 -1
  34. moai_adk/templates/.claude/hooks/alfred/handlers/notification.py +4 -4
  35. moai_adk/templates/.claude/hooks/alfred/handlers/session.py +27 -27
  36. moai_adk/templates/.claude/hooks/alfred/handlers/tool.py +16 -17
  37. moai_adk/templates/.claude/hooks/alfred/handlers/user.py +11 -11
  38. moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +308 -307
  39. moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +297 -296
  40. moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +191 -190
  41. moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/SKILL.md +112 -0
  42. moai_adk/templates/.claude/skills/moai-alfred-debugger-pro/SKILL.md +103 -0
  43. moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/SKILL.md +103 -0
  44. moai_adk/templates/.claude/skills/moai-alfred-git-workflow/SKILL.md +95 -0
  45. moai_adk/templates/.claude/skills/moai-alfred-language-detection/SKILL.md +99 -0
  46. moai_adk/templates/.claude/skills/moai-alfred-performance-optimizer/SKILL.md +105 -0
  47. moai_adk/templates/.claude/skills/moai-alfred-refactoring-coach/SKILL.md +97 -0
  48. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/SKILL.md +97 -0
  49. moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/SKILL.md +90 -0
  50. moai_adk/templates/.claude/skills/moai-alfred-trust-validation/SKILL.md +99 -0
  51. moai_adk/templates/.claude/skills/moai-alfred-tui-survey/SKILL.md +87 -0
  52. moai_adk/templates/.claude/skills/moai-alfred-tui-survey/examples.md +62 -0
  53. moai_adk/templates/.claude/skills/moai-claude-code/SKILL.md +70 -43
  54. moai_adk/templates/.claude/skills/moai-claude-code/examples.md +141 -141
  55. moai_adk/templates/.claude/skills/moai-claude-code/reference.md +179 -165
  56. moai_adk/templates/.claude/skills/moai-claude-code/templates/agent-full.md +78 -78
  57. moai_adk/templates/.claude/skills/moai-claude-code/templates/command-full.md +90 -90
  58. moai_adk/templates/.claude/skills/moai-claude-code/templates/plugin-full.json +39 -25
  59. moai_adk/templates/.claude/skills/moai-claude-code/templates/settings-full.json +117 -74
  60. moai_adk/templates/.claude/skills/moai-claude-code/templates/skill-full.md +131 -134
  61. moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +43 -12
  62. moai_adk/templates/.claude/skills/moai-domain-cli-tool/SKILL.md +43 -12
  63. moai_adk/templates/.claude/skills/moai-domain-data-science/SKILL.md +43 -12
  64. moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +43 -12
  65. moai_adk/templates/.claude/skills/moai-domain-devops/SKILL.md +43 -12
  66. moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +43 -12
  67. moai_adk/templates/.claude/skills/moai-domain-ml/SKILL.md +43 -11
  68. moai_adk/templates/.claude/skills/moai-domain-mobile-app/SKILL.md +43 -12
  69. moai_adk/templates/.claude/skills/moai-domain-security/SKILL.md +43 -12
  70. moai_adk/templates/.claude/skills/moai-domain-web-api/SKILL.md +43 -12
  71. moai_adk/templates/.claude/skills/moai-essentials-debug/SKILL.md +47 -11
  72. moai_adk/templates/.claude/skills/moai-essentials-perf/SKILL.md +47 -11
  73. moai_adk/templates/.claude/skills/moai-essentials-refactor/SKILL.md +51 -14
  74. moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md +46 -10
  75. moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +62 -25
  76. moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md +44 -17
  77. moai_adk/templates/.claude/skills/moai-foundation-langs/SKILL.md +44 -14
  78. moai_adk/templates/.claude/skills/moai-foundation-specs/SKILL.md +45 -13
  79. moai_adk/templates/.claude/skills/moai-foundation-tags/SKILL.md +46 -14
  80. moai_adk/templates/.claude/skills/moai-foundation-trust/SKILL.md +48 -8
  81. moai_adk/templates/.claude/skills/moai-lang-c/SKILL.md +44 -12
  82. moai_adk/templates/.claude/skills/moai-lang-clojure/SKILL.md +44 -12
  83. moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +44 -11
  84. moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +44 -11
  85. moai_adk/templates/.claude/skills/moai-lang-dart/SKILL.md +44 -12
  86. moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md +44 -11
  87. moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +44 -11
  88. moai_adk/templates/.claude/skills/moai-lang-haskell/SKILL.md +44 -11
  89. moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +44 -12
  90. moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +44 -12
  91. moai_adk/templates/.claude/skills/moai-lang-julia/SKILL.md +44 -12
  92. moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +44 -12
  93. moai_adk/templates/.claude/skills/moai-lang-lua/SKILL.md +44 -11
  94. moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +44 -11
  95. moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +44 -12
  96. moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +44 -11
  97. moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +44 -11
  98. moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +44 -12
  99. moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +44 -12
  100. moai_adk/templates/.claude/skills/moai-lang-shell/SKILL.md +44 -11
  101. moai_adk/templates/.claude/skills/moai-lang-sql/SKILL.md +44 -12
  102. moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +44 -12
  103. moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +44 -12
  104. moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +44 -43
  105. moai_adk/templates/.github/workflows/moai-gitflow.yml +36 -35
  106. moai_adk/templates/.moai/config.json +9 -6
  107. moai_adk/templates/.moai/memory/development-guide.md +220 -221
  108. moai_adk/templates/.moai/memory/gitflow-protection-policy.md +85 -85
  109. moai_adk/templates/.moai/memory/spec-metadata.md +149 -150
  110. moai_adk/templates/.moai/project/product.md +90 -90
  111. moai_adk/templates/.moai/project/structure.md +85 -85
  112. moai_adk/templates/.moai/project/tech.md +117 -117
  113. moai_adk/templates/CLAUDE.md +350 -722
  114. moai_adk-0.4.1.dist-info/METADATA +303 -0
  115. moai_adk-0.4.1.dist-info/RECORD +152 -0
  116. moai_adk/templates/.claude/commands/alfred/1-spec.md +0 -31
  117. moai_adk/templates/.claude/commands/alfred/2-build.md +0 -30
  118. moai_adk/templates/.claude/skills/scripts/standardize_skills.py +0 -166
  119. moai_adk/templates/.claude/skills/scripts/verify_standardization.sh +0 -43
  120. moai_adk/templates/.moai/hooks/pre-push.sample +0 -88
  121. moai_adk-0.4.0.dist-info/METADATA +0 -1816
  122. moai_adk-0.4.0.dist-info/RECORD +0 -145
  123. {moai_adk-0.4.0.dist-info → moai_adk-0.4.1.dist-info}/WHEEL +0 -0
  124. {moai_adk-0.4.0.dist-info → moai_adk-0.4.1.dist-info}/entry_points.txt +0 -0
  125. {moai_adk-0.4.0.dist-info → moai_adk-0.4.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,84 +1,84 @@
1
- # Claude Code 실전 예제 모음
1
+ # Claude Code collection of practical examples
2
2
 
3
- > **실제 동작하는 예제 코드**
3
+ > **Actual working example code**
4
4
  >
5
- > 복사하여 바로 사용 가능한 검증된 예제
5
+ > Proven examples that can be copied and used immediately
6
6
 
7
7
  ---
8
8
 
9
- ## 📋 목차
9
+ ## 📋 Table of Contents
10
10
 
11
- 1. [Agent 예제](#1-agent-예제)
12
- 2. [Command 예제](#2-command-예제)
13
- 3. [Skill 예제](#3-skill-예제)
14
- 4. [Plugin 예제](#4-plugin-예제)
15
- 5. [Settings 예제](#5-settings-예제)
11
+ 1. [Agent example](#1-agent-example)
12
+ 2. [Command example](#2-command-example)
13
+ 3. [Skill example](#3-skill-example)
14
+ 4. [Plugin example](#4-plugin-example)
15
+ 5. [Settings example](#5-settings-example)
16
16
 
17
17
  ---
18
18
 
19
- ## 1. Agent 예제
19
+ ## 1. Agent example
20
20
 
21
- ### 예제 1: spec-builder (MoAI-ADK)
21
+ ### Example 1: spec-builder (MoAI-ADK)
22
22
 
23
- **파일**: `.claude/agents/alfred/spec-builder.md`
23
+ **File**: `.claude/agents/alfred/spec-builder.md`
24
24
 
25
25
  ```markdown
26
26
  ---
27
27
  name: spec-builder
28
- description: "Use when: SPEC 작성, EARS 명세, 요구사항 분석이 필요할 "
28
+ description: "Use when: When writing SPEC, EARS specification, and requirements analysis are necessary."
29
29
  tools: Read, Write, Edit, MultiEdit, Grep, Glob, Bash, TodoWrite
30
30
  model: sonnet
31
31
  ---
32
32
 
33
- # SPEC Builder 🏗️ - 시스템 아키텍트
33
+ # SPEC Builder 🏗️ - System Architect
34
34
 
35
- **MoAI-ADK SPEC 작성 전문가**
35
+ **MoAI-ADK SPEC writing expert**
36
36
 
37
- ## 🎭 에이전트 페르소나
37
+ ## 🎭 Agent Persona
38
38
 
39
- **아이콘**: 🏗️
40
- **직무**: 시스템 아키텍트
41
- **전문 영역**: SPEC 작성, EARS 명세, 요구사항 분석
42
- **역할**: 비즈니스 요구사항을 체계적인 SPEC으로 변환
43
- **목표**: 명확하고 테스트 가능한 SPEC 문서 작성
39
+ **Icon**: 🏗️
40
+ **Job**: System Architect
41
+ **Area of ​​Expertise**: SPEC writing, EARS specification, requirements analysis
42
+ **Role**: Convert business requirements into structured SPECs
43
+ **Goal**: Create clear and testable SPEC documents.
44
44
 
45
- ## 🎯 핵심 역할
45
+ ## 🎯 Key Role
46
46
 
47
- ### 1. SPEC 문서 작성
48
- - EARS 5가지 구문 적용
49
- - YAML Front Matter 7 필수 필드
50
- - HISTORY 섹션 관리
47
+ ### 1. Create SPEC document
48
+ - Apply EARS 5 syntax
49
+ - YAML Front Matter 7 required fields
50
+ - HISTORY section management
51
51
 
52
- ### 2. 자동 실행 조건
53
- - `/alfred:1-spec` 커맨드 실행 시
54
- - 새로운 기능 요구사항 발생
55
- - 기존 SPEC 개선 요청
52
+ ### 2. Auto-execution conditions
53
+ - When executing the `/alfred:1-plan` command
54
+ - When a new function requirement occurs
55
+ - When requesting improvement of the existing SPEC
56
56
 
57
- ## 📐 워크플로우
57
+ ## 📐 Workflow
58
58
 
59
- ### STEP 1: 프로젝트 문서 분석
59
+ ### STEP 1: Project document analysis
60
60
  \`\`\`bash
61
- # product.md 읽기
61
+ # read product.md
62
62
  Read .moai/project/product.md
63
63
 
64
- # 기존 SPEC 확인
64
+ # Check existing SPEC
65
65
  ls .moai/specs/SPEC-*/spec.md
66
66
  \`\`\`
67
67
 
68
- ### STEP 2: SPEC 초안 작성
68
+ ### STEP 2: Draft SPEC
69
69
  \`\`\`bash
70
70
  Write .moai/specs/SPEC-{ID}/spec.md
71
71
  \`\`\`
72
72
 
73
- ## 💡 사용 가이드
73
+ ## 💡 User Guide
74
74
  \`\`\`bash
75
- @agent-spec-builder "사용자 인증 기능 SPEC 작성"
75
+ @agent-spec-builder "Create a user authentication function SPEC"
76
76
  \`\`\`
77
77
  ```
78
78
 
79
- ### 예제 2: code-analyzer (간단한 분석 에이전트)
79
+ ### Example 2: code-analyzer (simple analysis agent)
80
80
 
81
- **파일**: `.claude/agents/code-analyzer.md`
81
+ **File**: `.claude/agents/code-analyzer.md`
82
82
 
83
83
  ```markdown
84
84
  ---
@@ -88,59 +88,59 @@ tools: Read, Grep, Bash(rg:*)
88
88
  model: haiku
89
89
  ---
90
90
 
91
- # Code Analyzer 🔍 - 품질 관리자
91
+ # Code Analyzer 🔍 - Quality Manager
92
92
 
93
- 코드 품질 지표를 분석하고 개선 제안을 제공합니다.
93
+ Analyze code quality metrics and provide improvement suggestions.
94
94
 
95
- ## 🎭 에이전트 페르소나
95
+ ## 🎭 Agent Persona
96
96
 
97
- **아이콘**: 🔍
98
- **직무**: 품질 관리자
99
- **전문 영역**: 코드 품질 분석, 린팅, 테스트 커버리지
100
- **역할**: 코드 품질 지표 측정 개선 제안
101
- **목표**: 높은 코드 품질 유지
97
+ **Icon**: 🔍
98
+ **Job**: Quality Manager
99
+ **Area of ​​Expertise**: Code quality analysis, linting, test coverage
100
+ **Role**: Measure code quality metrics and suggest improvements
101
+ **Goal**: Maintain high code quality
102
102
 
103
- ## 🎯 핵심 역할
103
+ ## 🎯 Key Role
104
104
 
105
- ### 1. 품질 지표 수집
106
- - 테스트 커버리지 확인
107
- - 린팅 오류 검출
108
- - 복잡도 분석
105
+ ### 1. Collect quality indicators
106
+ - Check test coverage
107
+ - Detect linting errors
108
+ - Complexity analysis
109
109
 
110
- ### 2. 자동 실행 조건
111
- - 커밋 품질 검증 요청
112
- - PR 생성 자동 검증
110
+ ### 2. Conditions for automatic execution
111
+ - When quality verification is requested before commit
112
+ - Automatic verification before creating PR
113
113
 
114
- ## 📐 워크플로우
114
+ ## 📐 Workflow
115
115
 
116
- ### STEP 1: 코드 스캔
116
+ ### STEP 1: Scan code
117
117
  \`\`\`bash
118
118
  rg "@TEST:" -n tests/
119
119
  pytest --cov
120
120
  \`\`\`
121
121
 
122
- ### STEP 2: 보고서 생성
123
- - 커버리지: {percentage}%
124
- - 린팅 오류: {count}
122
+ ### STEP 2: Generate report
123
+ - Coverage: {percentage}%
124
+ - Linting errors: {count}
125
125
 
126
- ## 💡 사용 가이드
126
+ ## 💡 User Guide
127
127
  \`\`\`bash
128
- @agent-code-analyzer "현재 프로젝트 품질 분석"
128
+ @agent-code-analyzer "Analyze current project quality"
129
129
  \`\`\`
130
130
  ```
131
131
 
132
132
  ---
133
133
 
134
- ## 2. Command 예제
134
+ ## 2. Command example
135
135
 
136
- ### 예제 1: /alfred:1-spec (MoAI-ADK)
136
+ ### Example 1: /alfred:1-plan (MoAI-ADK)
137
137
 
138
- **파일**: `.claude/commands/alfred/1-spec.md`
138
+ **File**: `.claude/commands/alfred/1-spec.md`
139
139
 
140
140
  ```markdown
141
141
  ---
142
142
  name: alfred:1-spec
143
- description: 프로젝트 문서 분석 SPEC 작성 (EARS 방식)
143
+ description: Project document analysis and SPEC creation (EARS method)
144
144
  argument-hint: [feature-description]
145
145
  allowed-tools:
146
146
  - Read
@@ -153,50 +153,50 @@ allowed-tools:
153
153
  - Bash(git:*)
154
154
  ---
155
155
 
156
- # 📋 MoAI-ADK 1단계: SPEC 작성
156
+ # 📋 MoAI-ADK Step 1: Write SPEC
157
157
 
158
- ## 🎯 커맨드 목적
158
+ ## 🎯 Command Purpose
159
159
 
160
- 프로젝트 문서를 분석하여 EARS 방식으로 SPEC 문서를 작성하고 Git 브랜치를 생성합니다.
160
+ Analyze project documents, create SPEC documents using the EARS method, and create Git branches.
161
161
 
162
- ## 💡 사용 예시
162
+ ## 💡 Example of use
163
163
  \`\`\`bash
164
- /alfred:1-spec "사용자 인증 기능"
164
+ /alfred:1-plan "User authentication function"
165
165
  \`\`\`
166
166
 
167
- ## 📋 실행 흐름
167
+ ## 📋 Execution flow
168
168
 
169
- 1. **Phase 1**: 프로젝트 문서 분석
170
- - product.md 읽기
171
- - 기존 SPEC 확인
169
+ 1. **Phase 1**: Analyze project document
170
+ - Read product.md
171
+ - Check existing SPEC
172
172
 
173
- 2. **Phase 2**: SPEC 작성
174
- - EARS 방식 명세
175
- - Git 브랜치 생성
173
+ 2. **Phase 2**: SPEC creation
174
+ - EARS method specification
175
+ - Git branch creation
176
176
 
177
- ## 🔗 연관 에이전트
177
+ ## 🔗 Associated Agent
178
178
 
179
- - **Primary**: spec-builder (🏗️ 시스템 아키텍트)
180
- - **Secondary**: git-manager (🚀 릴리스 엔지니어)
179
+ - **Primary**: spec-builder (🏗️ System Architect)
180
+ - **Secondary**: git-manager (🚀 Release Engineer)
181
181
 
182
- ## ⚠️ 주의사항
182
+ ## ⚠️ Precautions
183
183
 
184
- - SPEC ID 중복 확인 필수
185
- - EARS 5가지 구문 준수
184
+ - SPEC ID duplication check required
185
+ - Compliance with EARS 5 phrases
186
186
 
187
- ## 📋 다음 단계
187
+ ## 📋 Next steps
188
188
 
189
- - `/alfred:2-build SPEC-{ID}` - TDD 구현 시작
189
+ - `/alfred:2-run SPEC-{ID}` - Start TDD implementation
190
190
  ```
191
191
 
192
- ### 예제 2: /deploy-api (배포 커맨드)
192
+ ### Example 2: /deploy-api (deploy command)
193
193
 
194
- **파일**: `.claude/commands/deploy-api.md`
194
+ **File**: `.claude/commands/deploy-api.md`
195
195
 
196
196
  ```markdown
197
197
  ---
198
198
  name: deploy-api
199
- description: API 서버를 프로덕션 환경에 배포
199
+ description: Deploy API server to production environment
200
200
  argument-hint: [environment]
201
201
  allowed-tools:
202
202
  - Read
@@ -204,86 +204,86 @@ allowed-tools:
204
204
  - Bash(npm:*)
205
205
  ---
206
206
 
207
- # 🚀 API 배포 커맨드
207
+ # 🚀 API deployment command
208
208
 
209
- API 서버를 지정된 환경에 배포합니다.
209
+ Deploys the API server to the specified environment.
210
210
 
211
- ## 🎯 커맨드 목적
211
+ ## 🎯 Command Purpose
212
212
 
213
- Git 태그 생성 환경별 배포 자동화
213
+ Automate Git tag creation and deployment by environment
214
214
 
215
- ## 💡 사용 예시
215
+ ## 💡 Example of use
216
216
  \`\`\`bash
217
217
  /deploy-api production
218
218
  /deploy-api staging
219
219
  \`\`\`
220
220
 
221
- ## 📋 실행 흐름
221
+ ## 📋 Execution flow
222
222
 
223
- 1. **Phase 1**: Git 상태 확인
224
- - 현재 브랜치 확인 (main 필수)
225
- - 버전 태그 생성
223
+ 1. **Phase 1**: Check Git status
224
+ - Check current branch (main required)
225
+ - Create version tag
226
226
 
227
- 2. **Phase 2**: 배포 실행
227
+ 2. **Phase 2**: Deployment execution
228
228
  - npm run build
229
- - 환경별 배포 스크립트 실행
229
+ - Execute deployment script for each environment
230
230
 
231
- ## ⚠️ 주의사항
231
+ ## ⚠️ Precautions
232
232
 
233
- - main 브랜치에서만 실행 가능
234
- - 모든 테스트 통과 필수
233
+ - Can only be run from the main branch
234
+ - Must pass all tests
235
235
  ```
236
236
 
237
237
  ---
238
238
 
239
- ## 3. Skill 예제
239
+ ## 3. Skill example
240
240
 
241
- ### 예제 1: moai-alfred-tag-scanning
241
+ ### Example 1: moai-alfred-tag-scanning
242
242
 
243
- **파일**: `.claude/skills/moai-alfred-tag-scanning/SKILL.md`
243
+ **File**: `.claude/skills/moai-alfred-tag-scanning/SKILL.md`
244
244
 
245
245
  ```markdown
246
246
  ---
247
247
  name: moai-alfred-tag-scanning
248
- description: TAG 마커 직접 스캔 인벤토리 생성 (CODE-FIRST 원칙)
248
+ description: Directly scan TAG markers and create inventory (CODE-FIRST principle)
249
249
  model: haiku
250
250
  allowed-tools:
251
251
  - Grep
252
252
  - Read
253
253
  ---
254
254
 
255
- # TAG 스캐너
255
+ # TAG scanner
256
256
 
257
- > CODE-FIRST 원칙: 중간 캐시 없이 코드를 직접 스캔
257
+ > CODE-FIRST principle: scan code directly without intermediate cache
258
258
 
259
- ## 🎯 목적
259
+ ## 🎯 Purpose
260
260
 
261
- `@SPEC`, `@TEST`, `@CODE`, `@DOC` TAG를 코드에서 직접 스캔합니다.
261
+ Scan `@SPEC`, `@TEST`, `@CODE`, and `@DOC` TAGs directly from your code.
262
262
 
263
- ## 💡 사용법
263
+ ## 💡 How to use
264
264
 
265
- "AUTH 도메인 TAG 목록 조회"
265
+ “Check AUTH domain TAG list”
266
266
 
267
- ## 📋 스캔 방법
267
+ ## 📋 How to scan
268
268
 
269
269
  \`\`\`bash
270
270
  rg '@(SPEC|TEST|CODE|DOC):' -n .moai/specs/ tests/ src/ docs/
271
271
  \`\`\`
272
272
 
273
- ## ✅ 검증
273
+ ## ✅ Verification
274
274
 
275
- - 모든 `@CODE` TAG 대응하는 `@SPEC`이 있는가?
276
- - 고아 TAG 없음
275
+ - Does every `@CODE` TAG have a corresponding `@SPEC`?
276
+ - No orphan TAGs
277
277
  ```
278
278
 
279
- ### 예제 2: moai-alfred-feature-selector
279
+ ### Example 2: moai-alfred-feature-selector
280
280
 
281
- **파일**: `.claude/skills/moai-alfred-feature-selector/SKILL.md`
281
+ **File**: `.claude/skills/moai-alfred-feature-selector/SKILL.md`
282
282
 
283
283
  ```markdown
284
284
  ---
285
285
  name: moai-alfred-feature-selector
286
- description: 프로젝트 유형별 최적 기능 선택 (37 스킬 → 3~5개 자동 필터링)
286
+ description: Select optimal functions for each project type (37 skillsautomatically filter 3 to 5)
287
287
  model: haiku
288
288
  allowed-tools:
289
289
  - Read
@@ -291,34 +291,34 @@ allowed-tools:
291
291
 
292
292
  # MoAI Alfred Feature Selector
293
293
 
294
- > 프로젝트 특성에 맞는 MoAI-ADK 기능 자동 선택
294
+ > Automatic selection of MoAI-ADK functions suitable for project characteristics
295
295
 
296
- ## 🎯 목적
296
+ ## 🎯 Purpose
297
297
 
298
- 프로젝트 유형을 분석하여 필요한 기능만 선택합니다.
298
+ Analyze your project type and select only the features you need.
299
299
 
300
- ## 📋 프로젝트 분류
300
+ ## 📋 Project classification
301
301
 
302
- ### 언어별
302
+ ### By language
303
303
  - **Python**: pytest, mypy, ruff
304
304
  - **TypeScript**: Vitest, Biome
305
305
 
306
- ### 도메인별
307
- - **CLI Tool**: 인자 파싱, POSIX 준수
308
- - **Web API**: REST/GraphQL, 인증
306
+ ### Domain-specific
307
+ - **CLI Tool**: Argument parsing, POSIX compliance
308
+ - **Web API**: REST/GraphQL, authentication
309
309
 
310
- ## 💡 사용법
310
+ ## 💡 How to use
311
311
 
312
- "/alfred:0-project 실행 시 자동 호출"
312
+ "Automatically called when running /alfred:0-project"
313
313
  ```
314
314
 
315
315
  ---
316
316
 
317
- ## 4. Plugin 예제
317
+ ## 4. Plugin example
318
318
 
319
- ### 예제 1: GitHub + Filesystem (기본)
319
+ ### Example 1: GitHub + Filesystem (default)
320
320
 
321
- **파일**: `.claude/settings.json` (mcpServers 섹션)
321
+ **FILE**: `.claude/settings.json` (mcpServers section)
322
322
 
323
323
  ```json
324
324
  {
@@ -343,7 +343,7 @@ allowed-tools:
343
343
  }
344
344
  ```
345
345
 
346
- ### 예제 2: MoAI-ADK 완전 구성
346
+ ### Example 2: Fully configured MoAI-ADK
347
347
 
348
348
  ```json
349
349
  {
@@ -379,11 +379,11 @@ allowed-tools:
379
379
 
380
380
  ---
381
381
 
382
- ## 5. Settings 예제
382
+ ## 5. Settings example
383
383
 
384
- ### 예제 1: Python 프로젝트
384
+ ### Example 1: Python project
385
385
 
386
- **파일**: `.claude/settings.json`
386
+ **File**: `.claude/settings.json`
387
387
 
388
388
  ```json
389
389
  {
@@ -414,7 +414,7 @@ allowed-tools:
414
414
  }
415
415
  ```
416
416
 
417
- ### 예제 2: TypeScript 프로젝트
417
+ ### Example 2: TypeScript project
418
418
 
419
419
  ```json
420
420
  {
@@ -446,7 +446,7 @@ allowed-tools:
446
446
  }
447
447
  ```
448
448
 
449
- ### 예제 3: MoAI-ADK 프로젝트 ( 포함)
449
+ ### Example 3: MoAI-ADK project (with hooks)
450
450
 
451
451
  ```json
452
452
  {
@@ -509,5 +509,5 @@ allowed-tools:
509
509
 
510
510
  ---
511
511
 
512
- **최종 업데이트**: 2025-10-19
513
- **작성자**: @Alfred
512
+ **Last update**: 2025-10-19
513
+ **Author**: @Alfred