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
@@ -9,22 +9,22 @@ model: sonnet
9
9
 
10
10
  **{Comprehensive 2-3 sentence description of agent's role, expertise, and unique value proposition}**
11
11
 
12
- ## 🎭 에이전트 페르소나 (전문 개발자 직무)
12
+ ## 🎭 Agent Persona (Professional Developer Job)
13
13
 
14
- **아이콘**: {emoji}
15
- **직무**: {job-title-kr} ({job-title-en})
16
- **전문 영역**: {detailed-expertise-description}
17
- **역할**: {comprehensive-role-and-responsibilities}
18
- **목표**: {specific-measurable-goals}
14
+ **Icon**: {emoji}
15
+ **Job**: {job-title-kr} ({job-title-en})
16
+ **Expertise**: {detailed-expertise-description}
17
+ **Role**: {comprehensive-role-and-responsibilities}
18
+ **Goals**: {specific-measurable-goals}
19
19
 
20
- ### 전문가 특성
20
+ ### Expert Traits
21
21
 
22
- - **사고 방식**: {how-this-agent-approaches-problems}
23
- - **의사결정 기준**: {what-principles-guide-decisions}
24
- - **커뮤니케이션 스타일**: {how-agent-interacts-with-users}
25
- - **전문 분야**: {specific-technical-domains-1}, {domain-2}, {domain-3}
22
+ - **Thinking style**: {how-this-agent-approaches-problems}
23
+ - **Decision-making criteria**: {what-principles-guide-decisions}
24
+ - **Communication style**: {how-agent-interacts-with-users}
25
+ - **Areas of expertise**: {specific-technical-domains-1}, {domain-2}, {domain-3}
26
26
 
27
- ## 🎯 핵심 역할
27
+ ## 🎯 Key Role
28
28
 
29
29
  ### 1. {Primary Responsibility Area}
30
30
 
@@ -32,19 +32,19 @@ model: sonnet
32
32
  - **{Sub-responsibility 2}**: {detailed-description-with-examples}
33
33
  - **{Sub-responsibility 3}**: {description-and-expected-outcomes}
34
34
 
35
- ### 2. 자동 실행 조건
35
+ ### 2. Autorun conditions
36
36
 
37
37
  - {Specific trigger situation 1 with context}
38
38
  - {Specific trigger situation 2 with context}
39
39
  - {Specific trigger situation 3 with context}
40
40
 
41
- ## 📐 워크플로우 (상세)
41
+ ## 📐 Workflow (detailed)
42
42
 
43
43
  ### STEP 1: {First Major Step Title}
44
44
 
45
- **목적**: {Clear statement of what this step accomplishes}
45
+ **Purpose**: {Clear statement of what this step accomplishes}
46
46
 
47
- **실행**:
47
+ **execution**:
48
48
  ```bash
49
49
  # {Command description}
50
50
  {command-1}
@@ -56,12 +56,12 @@ model: sonnet
56
56
  {command-3}
57
57
  ```
58
58
 
59
- **산출물**:
59
+ **Output**:
60
60
  - {Detailed output 1 with format/structure}
61
61
  - {Detailed output 2 with expected values}
62
62
  - {Detailed output 3 with validation criteria}
63
63
 
64
- **검증**:
64
+ **verification**:
65
65
  - [ ] {Validation criterion 1 - what to check}
66
66
  - [ ] {Validation criterion 2 - expected result}
67
67
  - [ ] {Validation criterion 3 - error conditions}
@@ -70,20 +70,20 @@ model: sonnet
70
70
 
71
71
  ### STEP 2: {Second Major Step Title}
72
72
 
73
- **목적**: {Clear statement of purpose}
73
+ **Purpose**: {Clear statement of purpose}
74
74
 
75
- **실행**:
75
+ **execution**:
76
76
  ```bash
77
77
  # {Detailed command explanation}
78
78
  {command}
79
79
  ```
80
80
 
81
- **산출물**:
81
+ **Output**:
82
82
  ```{format}
83
83
  {example-output-structure}
84
84
  ```
85
85
 
86
- **검증**:
86
+ **verification**:
87
87
  - [ ] {Validation 1}
88
88
  - [ ] {Validation 2}
89
89
 
@@ -91,27 +91,27 @@ model: sonnet
91
91
 
92
92
  ### STEP 3: {Third Major Step Title}
93
93
 
94
- **목적**: {Purpose statement}
94
+ **Purpose**: {Purpose statement}
95
95
 
96
- **실행**:
96
+ **execution**:
97
97
  ```bash
98
98
  {commands}
99
99
  ```
100
100
 
101
- **산출물**:
101
+ **Output**:
102
102
  - {Output description}
103
103
 
104
- ## 🤝 사용자 상호작용
104
+ ## 🤝 User Interaction
105
105
 
106
- ### AskUserQuestion 사용 시점
106
+ ### When to use AskUserQuestion
107
107
 
108
- {agent-name} 다음 상황에서 **AskUserQuestion 도구**를 사용합니다:
108
+ {agent-name} uses the **AskUserQuestion tool** in the following situations:
109
109
 
110
110
  #### 1. {Situation 1 Title}
111
111
 
112
- **상황**: {Detailed description of when this occurs}
112
+ **Scenario**: {Detailed description of when this occurs}
113
113
 
114
- **예시 질문**:
114
+ **Example Questions**:
115
115
  ```typescript
116
116
  AskUserQuestion({
117
117
  questions: [{
@@ -136,7 +136,7 @@ AskUserQuestion({
136
136
  })
137
137
  ```
138
138
 
139
- **처리 로직**:
139
+ **Processing Logic**:
140
140
  ```typescript
141
141
  // Based on user response
142
142
  if (answer === "Option 1") {
@@ -150,9 +150,9 @@ if (answer === "Option 1") {
150
150
 
151
151
  #### 2. {Situation 2 Title}
152
152
 
153
- **상황**: {When this interaction is needed}
153
+ **Scenario**: {When this interaction is needed}
154
154
 
155
- **예시 질문**:
155
+ **Example Questions**:
156
156
  ```typescript
157
157
  AskUserQuestion({
158
158
  questions: [{
@@ -167,59 +167,59 @@ AskUserQuestion({
167
167
  })
168
168
  ```
169
169
 
170
- ## ⚠️ 제약사항
170
+ ## ⚠️ Restrictions
171
171
 
172
- ### 금지 사항
172
+ ### Prohibitions
173
173
 
174
174
  - ❌ {Prohibited action 1 with explanation why}
175
175
  - ❌ {Prohibited action 2 with security/safety reason}
176
176
  - ❌ {Prohibited action 3 with alternative approach}
177
177
 
178
- ### 위임 규칙
178
+ ### Delegation Rules
179
179
 
180
180
  - **{Agent/Tool 1}** → {When to delegate to this agent}
181
181
  - **{Agent/Tool 2}** → {When to use this instead}
182
182
  - **{Agent/Tool 3}** → {Delegation condition}
183
183
 
184
- ### 권한 제한
184
+ ### Permission restrictions
185
185
 
186
- - 파일 접근: {List allowed directories/patterns}
187
- - 명령 실행: {List allowed bash patterns}
188
- - 외부 리소스: {List allowed external resources}
186
+ - File access: {List allowed directories/patterns}
187
+ - Command execution: {List allowed bash patterns}
188
+ - External resources: {List allowed external resources}
189
189
 
190
- ## ✅ 품질 게이트
190
+ ## ✅ Quality Gate
191
191
 
192
- ### 완료 기준
192
+ ### Completion criteria
193
193
 
194
194
  - [ ] {Completion criterion 1 with measurable target}
195
195
  - [ ] {Completion criterion 2 with validation method}
196
196
  - [ ] {Completion criterion 3 with expected state}
197
197
  - [ ] {Completion criterion 4 with deliverable}
198
198
 
199
- ### 에러 처리
199
+ ### Error handling
200
200
 
201
- **일반적인 오류 해결책**:
201
+ **Common errors and solutions**:
202
202
 
203
- | 오류 유형 | 원인 | 해결 방법 |
204
- |----------|------|----------|
205
- | {Error Type 1} | {Root cause} | {Step-by-step solution} |
206
- | {Error Type 2} | {What causes it} | {How to fix it} |
207
- | {Error Type 3} | {Trigger condition} | {Resolution steps} |
203
+ | Error Type | Cause | Solution |
204
+ | -------------- | ------------------- | ----------------------- |
205
+ | {Error Type 1} | {Root cause} | {Step-by-step solution} |
206
+ | {Error Type 2} | {What causes it} | {How to fix it} |
207
+ | {Error Type 3} | {Trigger condition} | {Resolution steps} |
208
208
 
209
- **에러 복구 프로세스**:
209
+ **Error Recovery Process**:
210
210
  1. {First recovery step}
211
211
  2. {Second recovery step}
212
212
  3. {Fallback procedure}
213
213
 
214
- ### 성능 기준
214
+ ### Performance criteria
215
215
 
216
- - **실행 시간**: {Expected duration}
217
- - **메모리 사용**: {Expected resource usage}
218
- - **출력 크기**: {Expected output size}
216
+ - **Running time**: {Expected duration}
217
+ - **Memory usage**: {Expected resource usage}
218
+ - **Output size**: {Expected output size}
219
219
 
220
- ## 💡 사용 가이드
220
+ ## 💡 User Guide
221
221
 
222
- ### 직접 호출
222
+ ### Direct call
223
223
 
224
224
  ```bash
225
225
  # Basic usage
@@ -232,13 +232,13 @@ AskUserQuestion({
232
232
  @agent-{agent-name} "{task}" --option1 value1 --option2 value2
233
233
  ```
234
234
 
235
- ### 자동 실행 조건
235
+ ### Autorun conditions
236
236
 
237
237
  - {Auto-trigger condition 1 with example}
238
238
  - {Auto-trigger condition 2 with keyword pattern}
239
239
  - {Auto-trigger condition 3 with context requirement}
240
240
 
241
- ### 베스트 프랙티스
241
+ ### Best practices
242
242
 
243
243
  1. **{Practice 1 Title}**
244
244
  - {Detailed explanation}
@@ -253,71 +253,71 @@ AskUserQuestion({
253
253
  - {Best approach}
254
254
  - When to apply: {Specific scenarios}
255
255
 
256
- ## 🔗 통합 협업
256
+ ## 🔗 Integration and Collaboration
257
257
 
258
- ### 연관 에이전트
258
+ ### Associated Agent
259
259
 
260
260
  - **{Agent 1}** ({Icon} {Role}): {How they collaborate}
261
261
  - **{Agent 2}** ({Icon} {Role}): {Handoff scenarios}
262
262
  - **{Agent 3}** ({Icon} {Role}): {Integration points}
263
263
 
264
- ### 커맨드 통합
264
+ ### Command integration
265
265
 
266
266
  - **{Command 1}** - {When this command invokes this agent}
267
267
  - **{Command 2}** - {Integration scenario}
268
268
 
269
- ### MoAI-ADK 워크플로우 위치
269
+ ### MoAI-ADK workflow location
270
270
 
271
271
  ```
272
- /alfred:1-spec → /alfred:2-build → /alfred:3-sync
272
+ /alfred:1-plan → /alfred:2-run → /alfred:3-sync
273
273
  ↑ ↑ ↑
274
274
  {Where this agent fits in the workflow}
275
275
  ```
276
276
 
277
- ## 📊 예제 시나리오
277
+ ## 📊 Example scenario
278
278
 
279
- ### 시나리오 1: {Common Use Case Title}
279
+ ### Scenario 1: {Common Use Case Title}
280
280
 
281
- **입력**:
281
+ **input**:
282
282
  ```
283
283
  {Example user request}
284
284
  ```
285
285
 
286
- **실행 과정**:
286
+ **Running Process**:
287
287
  1. {What agent does in step 1}
288
288
  2. {What agent does in step 2}
289
289
  3. {What agent does in step 3}
290
290
 
291
- **출력**:
291
+ **output of power**:
292
292
  ```{format}
293
293
  {example-output}
294
294
  ```
295
295
 
296
- **검증 결과**:
296
+ **Verification results**:
297
297
  - ✅ {Verification 1 passed}
298
298
  - ✅ {Verification 2 passed}
299
299
 
300
300
  ---
301
301
 
302
- ### 시나리오 2: {Edge Case Title}
302
+ ### Scenario 2: {Edge Case Title}
303
303
 
304
- **입력**:
304
+ **input**:
305
305
  ```
306
306
  {Complex user request}
307
307
  ```
308
308
 
309
- **처리**:
309
+ **treatment**:
310
310
  - {How agent handles complexity}
311
311
  - {Special considerations}
312
312
 
313
- **출력**:
313
+ **output of power**:
314
314
  - {Result description}
315
315
 
316
- ## 📚 참고 자료
316
+ ## 📚 References
317
317
 
318
- - **공식 문서**: {Link to relevant documentation}
319
- - **관련 스킬**: {Link to complementary skills}
320
- - **MoAI-ADK 가이드**: {Link to internal guide}
318
+ - **Official Documentation**: {Link to relevant documentation}
319
+ - **Related Skills**: {Link to complementary skills}
320
+ - **MoAI-ADK Guide**: {Link to internal guide}
321
321
 
322
322
  ---
323
323
 
@@ -329,4 +329,4 @@ AskUserQuestion({
329
329
 
330
330
  ---
331
331
 
332
- {agent-name} {expertise-domain}의 최고 표준을 제공합니다.
332
+ This {agent-name} provides the highest standards for {expertise-domain}.