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,192 +1,191 @@
1
- # Claude Code 컴포넌트 작성 가이드
1
+ # Claude Code component writing guide
2
2
 
3
- > **5가지 컴포넌트의 완벽한 작성 가이드**
3
+ > **A complete guide to writing 5 components**
4
4
  >
5
5
  > Agent, Command, Skill, Plugin, Settings
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 writing guide](#1-agent-writing-guide)
12
+ 2. [Command writing guide](#2-command-writing-guide)
13
+ 3. [Skill writing guide](#3-skill-writing-guide)
14
+ 4. [Plugin setting guide](#4-plugin-setting-guide)
15
+ 5. [Settings settings guide](#5-settings-settings-guide)
16
16
 
17
17
  ---
18
18
 
19
- ## 1. Agent 작성 가이드
19
+ ## 1. Agent writing guide
20
20
 
21
- ### 📐 파일 구조
21
+ ### 📐 File Structure
22
22
 
23
- **위치**: `.claude/agents/{agent-name}.md`
23
+ **Location**: `.claude/agents/{agent-name}.md`
24
24
 
25
- **YAML Frontmatter** (필수):
25
+ **YAML Frontmatter** (required):
26
26
  ```yaml
27
27
  ---
28
28
  name: {agent-name} # kebab-case
29
- description: "Use when: {trigger}" # "Use when:" 패턴 필수
30
- tools: Read, Write, Edit # 필요한 도구만
29
+ description: "Use when: {trigger}" # "Use when:" pattern required
30
+ tools: Read, Write, Edit # Only necessary tools
31
31
  model: sonnet # sonnet|haiku
32
32
  ---
33
33
  ```
34
34
 
35
- ### 🎭 에이전트 페르소나
35
+ ### 🎭 Agent Persona
36
36
 
37
- **필수 요소**:
38
- - **아이콘**: 시각적 식별자 (emoji)
39
- - **직무**: IT 전문 직무 (System Architect, QA Lead )
40
- - **전문 영역**: 구체적 전문 분야
41
- - **역할**: 에이전트 책임
42
- - **목표**: 달성하려는 목표
37
+ **Required elements**:
38
+ - **Icon**: Visual identifier (emoji)
39
+ - **Duties**: IT professional duties (System Architect, QA Lead, etc.)
40
+ - **Area of ​​expertise**: Specific area of ​​expertise
41
+ - **Role**: Agent responsibilities
42
+ - **Goals**: what you want to achieve
43
43
 
44
- **예시**:
44
+ **example**:
45
45
  ```markdown
46
- ## 🎭 에이전트 페르소나
46
+ ## 🎭 Agent Persona
47
47
 
48
- **아이콘**: 🏗️
49
- **직무**: 시스템 아키텍트 (System Architect)
50
- **전문 영역**: SPEC 작성, EARS 명세, 요구사항 분석
51
- **역할**: 비즈니스 요구사항을 체계적인 SPEC으로 변환
52
- **목표**: 명확하고 테스트 가능한 SPEC 문서 작성
48
+ **Icon**: 🏗️
49
+ **Job**: System Architect
50
+ **Area of ​​Expertise**: SPEC writing, EARS specification, requirements analysis
51
+ **Role**: Convert business requirements into systematic SPEC
52
+ **Goal**: Clear and testable SPEC Write a document
53
53
  ```
54
54
 
55
- ### ⚙️ 모델 선택 가이드
55
+ ### ⚙️ Model selection guide
56
56
 
57
- | 모델 | 사용 시점 | 예시 |
57
+ | model | When to use | Example |
58
58
  |------|----------|------|
59
- | **sonnet** | 복잡한 판단, 설계, 창의성 | SPEC 작성, TDD 전략, 디버깅 |
60
- | **haiku** | 빠른 처리, 패턴 기반 작업 | 문서 동기화, TAG 스캔, 린팅 |
59
+ | **sonnet** | Complex judgment, design, creativity | SPEC writing, TDD strategy, debugging |
60
+ | **haiku** | Fast processing, pattern-based operation | Document synchronization, TAG scanning, linting |
61
61
 
62
- ### 🛠️ 도구 선택 가이드
62
+ ### 🛠️ Tool Selection Guide
63
63
 
64
- | 작업 유형 | 필수 도구 |
64
+ | Job type | Essential Tools |
65
65
  |----------|----------|
66
- | **분석** | Read, Grep, Glob |
67
- | **문서 작성** | Read, Write, Edit |
68
- | **코드 구현** | Read, Write, Edit, MultiEdit |
69
- | **Git 작업** | Read, Bash(git:*) |
70
- | **검증** | Read, Grep, Bash |
66
+ | **Analysis** | Read, Grep, Glob |
67
+ | **Create Document** | Read, Write, Edit |
68
+ | **Code Implementation** | Read, Write, Edit, MultiEdit |
69
+ | **Git Operations** | Read, Bash(git:*) |
70
+ | **Verification** | Read, Grep, Bash |
71
71
 
72
- ### ✅ 검증 체크리스트
72
+ ### ✅ Verification Checklist
73
73
 
74
- - [ ] YAML frontmatter 존재
74
+ - [ ] YAML frontmatter exists
75
75
  - [ ] `name`: kebab-case
76
- - [ ] `description`: "Use when:" 패턴 포함
77
- - [ ] `tools`: 필요한 도구만
78
- - [ ] `model`: sonnet 또는 haiku
79
- - [ ] 에이전트 페르소나 섹션 포함
80
- - [ ] 워크플로우 구체적 단계 포함
76
+ - [ ] `description`: Contains the “Use when:” pattern
77
+ - [ ] `tools`: Only the tools you need
78
+ - [ ] `model`: sonnet or haiku
79
+ - [ ] Contains the agent persona section
80
+ - [ ] Contains workflow specific steps
81
81
 
82
82
  ---
83
83
 
84
- ## 2. Command 작성 가이드
84
+ ## 2. Command writing guide
85
85
 
86
- ### 📐 파일 구조
86
+ ### 📐 File Structure
87
87
 
88
- **위치**: `.claude/commands/{command-name}.md`
88
+ **Location**: `.claude/commands/{command-name}.md`
89
89
 
90
- **YAML Frontmatter** (필수):
90
+ **YAML Frontmatter** (required):
91
91
  ```yaml
92
92
  ---
93
93
  name: {command-name} # kebab-case
94
- description: { 설명} # 명확한 목적
95
- argument-hint: [{param}] # 선택적
96
- allowed-tools: # 필요한 도구만
94
+ description: {one-line description} # Clear purpose
95
+ argument-hint: [{param}] # Optional
96
+ allowed-tools: # Only the tools you need
97
97
  - Read
98
98
  - Write
99
99
  - Task
100
100
  ---
101
101
  ```
102
102
 
103
- ### 🔧 명명 규칙
103
+ ### 🔧 Naming Conventions
104
104
 
105
- - **kebab-case** 사용
106
- - **동사로 시작** (run, check, deploy, create)
107
- - **명확하고 구체적**
105
+ - Use **kebab-case**
106
+ - **Start with a verb** (run, check, deploy, create)
107
+ - **Clear and specific**
108
108
 
109
- **올바른 예시**:
109
+ **Correct Example**:
110
110
  - ✅ `deploy-production`
111
111
  - ✅ `run-tests`
112
112
  - ✅ `alfred:1-spec`
113
113
 
114
- **잘못된 예시**:
114
+ **Incorrect example**:
115
115
  - ❌ `doSomething` (camelCase)
116
- - ❌ `cmd1` (불명확)
116
+ - ❌ `cmd1` (unclear)
117
117
 
118
- ### 📋 표준 섹션 구조
118
+ ### 📋 Standard section structure
119
119
 
120
120
  ```markdown
121
121
  # {Command Title}
122
122
 
123
123
  {Brief description}
124
124
 
125
- ## 🎯 커맨드 목적
125
+ ## 🎯 Command Purpose
126
126
  {Detailed purpose}
127
127
 
128
- ## 💡 사용 예시
128
+ ## 💡 Example of use
129
129
  \`\`\`bash
130
130
  /{command-name} {example-args}
131
131
  \`\`\`
132
132
 
133
- ## 📋 실행 흐름
133
+ ## 📋 Execution flow
134
134
  1. **Phase 1**: {Planning}
135
135
  2. **Phase 2**: {Execution}
136
136
 
137
- ## 🔗 연관 에이전트
137
+ ## 🔗 Associated Agent
138
138
  - **Primary**: {agent-name} - {role}
139
139
 
140
- ## ⚠️ 주의사항
140
+ ## ⚠️ Precautions
141
141
  - {Warning 1}
142
142
 
143
- ## 📋 다음 단계
143
+ ## 📋 Next steps
144
144
  - {Next step}
145
145
  ```
146
146
 
147
- ### ✅ 검증 체크리스트
147
+ ### ✅ Verification Checklist
148
148
 
149
- - [ ] YAML frontmatter 존재
149
+ - [ ] YAML frontmatter exists
150
150
  - [ ] `name`: kebab-case
151
- - [ ] `description`: 줄 설명
152
- - [ ] `allowed-tools`: 배열 형식
153
- - [ ] Bash 도구 사용 구체적 패턴 (`Bash(git:*)`)
154
- - [ ] 사용 예시 포함
155
- - [ ] 실행 흐름 명시
151
+ - [ ] `description`: One-line description
152
+ - [ ] `allowed-tools`: Array format
153
+ - [ ] Specific patterns when using Bash tools (`Bash(git:*)`)
154
+ - [ ] Include usage examples
155
+ - [ ] Specify execution flow
156
156
 
157
157
  ---
158
158
 
159
- ## 3. Skill 작성 가이드
159
+ ## 3. Skill creation guide
160
160
 
161
- ### 📐 파일 구조
161
+ ### 📐 File Structure
162
162
 
163
- **위치**: `.claude/skills/{skill-name}/SKILL.md`
163
+ **Location**: `.claude/skills/{skill-name}/SKILL.md`
164
164
 
165
- **YAML Frontmatter** (필수):
165
+ **YAML Frontmatter** (required fields + optional `allowed-tools`):
166
166
  ```yaml
167
167
  ---
168
- name: {skill-name} # kebab-case
169
- description: { 설명} # 동사로 시작, 200자 이하
170
- model: haiku # haiku|sonnet
171
- allowed-tools: # 최소 권한
172
- - Read
173
- - Write
168
+ name: {skill-name} # kebab-case, ≤64 chars
169
+ description: {What it does + when to use (≤1024 chars)}
170
+ allowed-tools:
171
+ - Read # optional, enforce least privilege
172
+ - Bash
174
173
  ---
175
174
  ```
176
175
 
177
- ### 🎯 description 작성법
176
+ ### 🎯 How to write a description
178
177
 
179
- **중요**: Claude 언제 스킬을 호출할지 결정하는 핵심 필드 (200 이하)
178
+ **Important**: Key field that determines when Claude will call the skill (<=1024 chars; aim for ≤200 for clarity)
180
179
 
181
- **좋은 예시**:
182
- - ✅ "TAG 마커 직접 스캔 인벤토리 생성 (CODE-FIRST 원칙)"
183
- - ✅ "프로젝트 유형별 최적 기능 선택 (37 스킬 → 3~5개 자동 필터링)"
180
+ **Good example**:
181
+ - ✅ "Directly scan TAG markers and create inventory (CODE-FIRST principle)"
182
+ - ✅ "Select optimal features by project type (37 skillsautomatically filter 3-5)"
184
183
 
185
- **나쁜 예시**:
186
- - ❌ "스킬입니다" (너무 모호)
187
- - ❌ "This skill does something" (비구체적)
184
+ **Bad example**:
185
+ - ❌ “This skill does something” (too vague)
186
+ - ❌ This skill does something (non-specific)
188
187
 
189
- ### 📁 선택적 파일 구조
188
+ ### 📁 Optional file structure
190
189
 
191
190
  ```
192
191
  .claude/skills/{skill-name}/
@@ -199,25 +198,40 @@ allowed-tools: # 최소 권한
199
198
  └── template.txt
200
199
  ```
201
200
 
202
- ### ✅ 검증 체크리스트
201
+ ### ✅ Verification Checklist
203
202
 
204
- - [ ] YAML frontmatter 존재
205
- - [ ] `name`: kebab-case
206
- - [ ] `description`: 200자 이하, 구체적
207
- - [ ] `model`: haiku 또는 sonnet
208
- - [ ] `allowed-tools`: 최소 권한 원칙
209
- - [ ] 제목 (# {Skill Title}) 존재
210
- - [ ] 목적 섹션 포함
203
+ - [ ] YAML frontmatter exists
204
+ - [ ] `name`: kebab-case, ≤64 chars, gerund style preferred
205
+ - [ ] `description`: Explains capability + trigger keywords
206
+ - [ ] `allowed-tools`: Lists only tools required by the workflow
207
+ - [ ] Title (# {Skill Title}) exists
208
+ - [ ] Include purpose section
209
+
210
+ ### ✨ Anthropic best practices (2024-12)
211
+
212
+ - **Stay concise**: Keep SKILL.md lean so Claude reads only what it needs. Move lengthy procedures into referenced files and keep body <500 lines.
213
+ Source: [Skill authoring best practices](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/best-practices)
214
+ - **Progressive disclosure**: Link reference files (reference.md, examples.md, scripts/) directly from SKILL.md and avoid multi-hop chains. Claude loads each file on demand.
215
+ - **Right-sized guidance**: Match specificity to risk—high-level checklists for flexible tasks, prescriptive scripts for fragile flows.
216
+ - **Consistent naming**: Use gerund or action-oriented names (“Processing PDFs”) and include trigger phrases in descriptions to improve discovery.
217
+ - **Test across models**: Validate behavior with the models you plan to run (Haiku, Sonnet, Opus) to ensure instructions are neither too sparse nor verbose.
218
+ - **Security posture**: Audit bundled scripts, restrict `allowed-tools`, and document any prerequisites or packages.
219
+
220
+ ### 📂 Discovery rules
221
+
222
+ - Personal skills live in `~/.claude/skills/{skill-name}/SKILL.md`
223
+ - Project skills live in `.claude/skills/{skill-name}/SKILL.md` and should be committed to git
224
+ - Claude expects each skill as a first-level directory under `skills/`; nested categories like `.claude/skills/domain/backend/SKILL.md` are **not** auto-discovered (per [Agent Skills - Claude Docs](https://docs.claude.com/en/docs/claude-code/skills))
211
225
 
212
226
  ---
213
227
 
214
- ## 4. Plugin 설정 가이드
228
+ ## 4. Plugin setup guide
215
229
 
216
- ### 📐 파일 구조
230
+ ### 📐 File Structure
217
231
 
218
- **위치**: `.claude/settings.json` (mcpServers 섹션)
232
+ **Location**: `.claude/settings.json` (mcpServers section)
219
233
 
220
- **기본 구조**:
234
+ **Basic structure**:
221
235
  ```json
222
236
  {
223
237
  "mcpServers": {
@@ -232,37 +246,37 @@ allowed-tools: # 최소 권한
232
246
  }
233
247
  ```
234
248
 
235
- ### 🌟 추천 Plugin
249
+ ### 🌟 Recommended Plugin
236
250
 
237
- | Plugin | 용도 | MoAI-ADK 활용 |
251
+ | Plugin | Use | Utilizing MoAI-ADK |
238
252
  |--------|------|--------------|
239
- | **@modelcontextprotocol/server-github** | GitHub API | PR/Issue 자동 생성 |
240
- | **@modelcontextprotocol/server-filesystem** | 파일 시스템 | `.moai/` 안전 접근 |
241
- | **@modelcontextprotocol/server-brave-search** | 검색 | 기술 문서 참조 |
253
+ | **@modelcontextprotocol/server-github** | GitHub API | Automatically generate PR/Issue |
254
+ | **@modelcontextprotocol/server-filesystem** | file system | `.moai/` safe access |
255
+ | **@modelcontextprotocol/server-brave-search** | web search | See technical documentation |
242
256
 
243
- ### 🔒 보안 원칙
257
+ ### 🔒 Security Principles
244
258
 
245
- #### 필수 체크리스트
246
- - [ ] 환경변수 사용 (하드코딩 금지)
247
- - [ ] 경로 제한 (Filesystem MCP)
248
- - [ ] 최소 권한
249
- - [ ] 민감 정보 차단 (`.env`, `secrets/`)
250
- - [ ] 출처 신뢰성 (공식 또는 검증된 Plugin)
259
+ #### Essential checklist
260
+ - [ ] Use of environment variables (no hardcoding)
261
+ - [ ] Restrict paths (Filesystem MCP)
262
+ - [ ] Minimum privileges
263
+ - [ ] Block sensitive information (`.env`, `secrets/`)
264
+ - [ ] Source reliability (official or verified plugin)
251
265
 
252
- #### 안전한 설정
266
+ #### Secure settings
253
267
  ```json
254
268
  {
255
269
  "mcpServers": {
256
270
  "github": {
257
271
  "env": {
258
- "GITHUB_TOKEN": "${GITHUB_TOKEN}" // ✅ 환경변수
272
+ "GITHUB_TOKEN": "${GITHUB_TOKEN}" // ✅ Environment variable
259
273
  }
260
274
  },
261
275
  "filesystem": {
262
276
  "args": [
263
277
  "-y",
264
278
  "@modelcontextprotocol/server-filesystem",
265
- "${CLAUDE_PROJECT_DIR}/.moai", // ✅ 제한된 경로
279
+ "${CLAUDE_PROJECT_DIR}/.moai", // ✅ Restricted path
266
280
  "${CLAUDE_PROJECT_DIR}/src"
267
281
  ]
268
282
  }
@@ -270,22 +284,22 @@ allowed-tools: # 최소 권한
270
284
  }
271
285
  ```
272
286
 
273
- ### ✅ 검증 체크리스트
287
+ ### ✅ Verification Checklist
274
288
 
275
- - [ ] JSON 구문 오류 없음
276
- - [ ] 환경변수 사용 (하드코딩 금지)
277
- - [ ] 파일 시스템 경로 제한
278
- - [ ] 필요한 환경변수 설정 완료
289
+ - [ ] No JSON syntax errors
290
+ - [ ] Use of environment variables (no hard coding)
291
+ - [ ] Restrictions on file system path
292
+ - [ ] Completed setting of necessary environment variables
279
293
 
280
294
  ---
281
295
 
282
- ## 5. Settings 설정 가이드
296
+ ## 5. Settings Setting Guide
283
297
 
284
- ### 📐 파일 구조
298
+ ### 📐 File Structure
285
299
 
286
- **위치**: `.claude/settings.json`
300
+ **Location**: `.claude/settings.json`
287
301
 
288
- **주요 섹션**:
302
+ **Main sections**:
289
303
  ```json
290
304
  {
291
305
  "permissions": {
@@ -302,10 +316,10 @@ allowed-tools: # 최소 권한
302
316
  }
303
317
  ```
304
318
 
305
- ### 🔒 3단계 권한 관리
319
+ ### 🔒 3-level permission management
306
320
 
307
- #### 1. `allow` - 자동 승인
308
- 안전하고 필수적인 도구만 허용:
321
+ #### 1. `allow` - Automatic approval
322
+ Allow only safe and essential tools:
309
323
  ```json
310
324
  "allow": [
311
325
  "Read",
@@ -318,8 +332,8 @@ allowed-tools: # 최소 권한
318
332
  ]
319
333
  ```
320
334
 
321
- #### 2. `ask` - 사용자 확인
322
- 중요하거나 변경 가능성이 있는 작업:
335
+ #### 2. `ask` - User confirmation
336
+ Important or potentially changeable actions:
323
337
  ```json
324
338
  "ask": [
325
339
  "Bash(git push:*)",
@@ -328,8 +342,8 @@ allowed-tools: # 최소 권한
328
342
  ]
329
343
  ```
330
344
 
331
- #### 3. `deny` - 절대 금지
332
- 위험하거나 민감한 작업 차단:
345
+ #### 3. `deny` - Absolutely prohibited
346
+ Block dangerous or sensitive operations:
333
347
  ```json
334
348
  "deny": [
335
349
  "Read(./.env)",
@@ -339,10 +353,10 @@ allowed-tools: # 최소 권한
339
353
  ]
340
354
  ```
341
355
 
342
- ### 🪝 시스템
356
+ ### 🪝 Hook system
343
357
 
344
- #### SessionStart
345
- 세션 시작 프로젝트 정보 표시:
358
+ #### SessionStart hook
359
+ Display project information when session starts:
346
360
  ```json
347
361
  {
348
362
  "hooks": {
@@ -361,8 +375,8 @@ allowed-tools: # 최소 권한
361
375
  }
362
376
  ```
363
377
 
364
- #### PreToolUse
365
- 도구 실행 검증 차단:
378
+ #### PreToolUse hook
379
+ Verify and block before executing the tool:
366
380
  ```json
367
381
  {
368
382
  "hooks": {
@@ -381,39 +395,39 @@ allowed-tools: # 최소 권한
381
395
  }
382
396
  ```
383
397
 
384
- ### ✅ 검증 체크리스트
398
+ ### ✅ Verification Checklist
385
399
 
386
- - [ ] JSON 구문 오류 없음
387
- - [ ] `allow`: 필수 도구만
388
- - [ ] `ask`: 중요한 작업
389
- - [ ] `deny`: 민감한 파일/명령
390
- - [ ] Bash 패턴 구체화 (`Bash(git:*)`)
391
- - [ ] 파일 존재 실행 권한
400
+ - [ ] No JSON syntax errors
401
+ - [ ] `allow`: Only essential tools
402
+ - [ ] `ask`: Critical tasks
403
+ - [ ] `deny`: Sensitive files/commands
404
+ - [ ] Bash pattern refinement (`Bash(git:*)`)
405
+ - [ ] Hook file existence and execution permissions
392
406
 
393
407
  ---
394
408
 
395
- ## 📊 베스트 프랙티스
409
+ ## 📊 Best Practices
396
410
 
397
- ### 공통 원칙
411
+ ### Common principles
398
412
 
399
- 1. **최소 권한 원칙**
400
- - 필요한 도구만 명시
401
- - Bash 사용 구체적 패턴
413
+ 1. **Principle of least privilege**
414
+ - Specify only necessary tools
415
+ - Specific patterns when using Bash
402
416
 
403
- 2. **공식 표준 준수**
404
- - YAML frontmatter 필수 필드
405
- - 파일명 규칙 (kebab-case)
417
+ 2. **Compliant with official standards**
418
+ - YAML frontmatter required fields
419
+ - Filename convention (kebab-case)
406
420
 
407
- 3. **보안 우선**
408
- - 민감 정보 환경변수로 관리
409
- - 위험한 작업 차단
421
+ 3. **Security priority**
422
+ - Manage sensitive information as environmental variable
423
+ - Block dangerous operations
410
424
 
411
- 4. **문서화**
412
- - 명확한 설명
413
- - 구체적 예시
414
- - 검증 방법
425
+ 4. **Documentation**
426
+ - Clear explanation
427
+ - Concrete examples
428
+ - Verification methods
415
429
 
416
430
  ---
417
431
 
418
- **최종 업데이트**: 2025-10-19
419
- **작성자**: @Alfred
432
+ **Last update**: 2025-10-19
433
+ **Author**: @Alfred