moai-adk 0.3.13__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 (141) hide show
  1. moai_adk/__init__.py +1 -1
  2. moai_adk/__main__.py +1 -1
  3. moai_adk/cli/commands/__init__.py +1 -1
  4. moai_adk/cli/commands/doctor.py +2 -2
  5. moai_adk/cli/commands/init.py +10 -5
  6. moai_adk/cli/commands/status.py +1 -1
  7. moai_adk/cli/commands/update.py +210 -8
  8. moai_adk/cli/prompts/init_prompts.py +15 -19
  9. moai_adk/core/__init__.py +1 -1
  10. moai_adk/core/diagnostics/slash_commands.py +1 -1
  11. moai_adk/core/git/branch.py +1 -1
  12. moai_adk/core/git/manager.py +1 -1
  13. moai_adk/core/project/backup_utils.py +1 -0
  14. moai_adk/core/project/phase_executor.py +3 -1
  15. moai_adk/core/project/validator.py +3 -2
  16. moai_adk/core/quality/__init__.py +1 -1
  17. moai_adk/core/quality/trust_checker.py +1 -1
  18. moai_adk/core/quality/validators/__init__.py +1 -1
  19. moai_adk/core/quality/validators/base_validator.py +1 -1
  20. moai_adk/core/template/__init__.py +1 -1
  21. moai_adk/core/template/backup.py +12 -3
  22. moai_adk/core/template/config.py +24 -0
  23. moai_adk/core/template/languages.py +1 -1
  24. moai_adk/core/template/merger.py +74 -4
  25. moai_adk/core/template/processor.py +62 -14
  26. moai_adk/templates/.claude/agents/alfred/cc-manager.md +765 -191
  27. moai_adk/templates/.claude/agents/alfred/debug-helper.md +116 -103
  28. moai_adk/templates/.claude/agents/alfred/doc-syncer.md +130 -116
  29. moai_adk/templates/.claude/agents/alfred/git-manager.md +186 -174
  30. moai_adk/templates/.claude/agents/alfred/implementation-planner.md +227 -213
  31. moai_adk/templates/.claude/agents/alfred/project-manager.md +205 -125
  32. moai_adk/templates/.claude/agents/alfred/quality-gate.md +224 -209
  33. moai_adk/templates/.claude/agents/alfred/spec-builder.md +174 -160
  34. moai_adk/templates/.claude/agents/alfred/tag-agent.md +151 -139
  35. moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +209 -196
  36. moai_adk/templates/.claude/agents/alfred/trust-checker.md +247 -233
  37. moai_adk/templates/.claude/commands/alfred/0-project.md +856 -355
  38. moai_adk/templates/.claude/commands/alfred/1-plan.md +572 -0
  39. moai_adk/templates/.claude/commands/alfred/2-run.md +470 -0
  40. moai_adk/templates/.claude/commands/alfred/3-sync.md +366 -356
  41. moai_adk/templates/.claude/hooks/alfred/README.md +52 -52
  42. moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +44 -48
  43. moai_adk/templates/.claude/hooks/alfred/core/__init__.py +17 -17
  44. moai_adk/templates/.claude/hooks/alfred/core/checkpoint.py +59 -59
  45. moai_adk/templates/.claude/hooks/alfred/core/context.py +19 -19
  46. moai_adk/templates/.claude/hooks/alfred/core/project.py +52 -52
  47. moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +1 -1
  48. moai_adk/templates/.claude/hooks/alfred/handlers/notification.py +4 -4
  49. moai_adk/templates/.claude/hooks/alfred/handlers/session.py +30 -51
  50. moai_adk/templates/.claude/hooks/alfred/handlers/tool.py +16 -17
  51. moai_adk/templates/.claude/hooks/alfred/handlers/user.py +11 -11
  52. moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +308 -307
  53. moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +297 -296
  54. moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +191 -190
  55. moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/SKILL.md +112 -0
  56. moai_adk/templates/.claude/skills/moai-alfred-debugger-pro/SKILL.md +103 -0
  57. moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/SKILL.md +103 -0
  58. moai_adk/templates/.claude/skills/moai-alfred-git-workflow/SKILL.md +95 -0
  59. moai_adk/templates/.claude/skills/moai-alfred-language-detection/SKILL.md +99 -0
  60. moai_adk/templates/.claude/skills/moai-alfred-performance-optimizer/SKILL.md +105 -0
  61. moai_adk/templates/.claude/skills/moai-alfred-refactoring-coach/SKILL.md +97 -0
  62. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/SKILL.md +97 -0
  63. moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/SKILL.md +90 -0
  64. moai_adk/templates/.claude/skills/moai-alfred-trust-validation/SKILL.md +99 -0
  65. moai_adk/templates/.claude/skills/moai-alfred-tui-survey/SKILL.md +87 -0
  66. moai_adk/templates/.claude/skills/moai-alfred-tui-survey/examples.md +62 -0
  67. moai_adk/templates/.claude/skills/moai-claude-code/SKILL.md +94 -0
  68. moai_adk/templates/.claude/skills/moai-claude-code/examples.md +513 -0
  69. moai_adk/templates/.claude/skills/moai-claude-code/reference.md +433 -0
  70. moai_adk/templates/.claude/skills/moai-claude-code/templates/agent-full.md +332 -0
  71. moai_adk/templates/.claude/skills/moai-claude-code/templates/command-full.md +384 -0
  72. moai_adk/templates/.claude/skills/moai-claude-code/templates/plugin-full.json +363 -0
  73. moai_adk/templates/.claude/skills/moai-claude-code/templates/settings-full.json +595 -0
  74. moai_adk/templates/.claude/skills/moai-claude-code/templates/skill-full.md +496 -0
  75. moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +99 -0
  76. moai_adk/templates/.claude/skills/moai-domain-cli-tool/SKILL.md +95 -0
  77. moai_adk/templates/.claude/skills/moai-domain-data-science/SKILL.md +98 -0
  78. moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +100 -0
  79. moai_adk/templates/.claude/skills/moai-domain-devops/SKILL.md +100 -0
  80. moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +99 -0
  81. moai_adk/templates/.claude/skills/moai-domain-ml/SKILL.md +99 -0
  82. moai_adk/templates/.claude/skills/moai-domain-mobile-app/SKILL.md +93 -0
  83. moai_adk/templates/.claude/skills/moai-domain-security/SKILL.md +105 -0
  84. moai_adk/templates/.claude/skills/moai-domain-web-api/SKILL.md +97 -0
  85. moai_adk/templates/.claude/skills/moai-essentials-debug/SKILL.md +102 -0
  86. moai_adk/templates/.claude/skills/moai-essentials-perf/SKILL.md +104 -0
  87. moai_adk/templates/.claude/skills/moai-essentials-refactor/SKILL.md +96 -0
  88. moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md +112 -0
  89. moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +98 -0
  90. moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md +90 -0
  91. moai_adk/templates/.claude/skills/moai-foundation-langs/SKILL.md +94 -0
  92. moai_adk/templates/.claude/skills/moai-foundation-specs/SKILL.md +93 -0
  93. moai_adk/templates/.claude/skills/moai-foundation-tags/SKILL.md +86 -0
  94. moai_adk/templates/.claude/skills/moai-foundation-trust/SKILL.md +86 -0
  95. moai_adk/templates/.claude/skills/moai-lang-c/SKILL.md +100 -0
  96. moai_adk/templates/.claude/skills/moai-lang-clojure/SKILL.md +100 -0
  97. moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +102 -0
  98. moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +100 -0
  99. moai_adk/templates/.claude/skills/moai-lang-dart/SKILL.md +98 -0
  100. moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md +99 -0
  101. moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +100 -0
  102. moai_adk/templates/.claude/skills/moai-lang-haskell/SKILL.md +100 -0
  103. moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +98 -0
  104. moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +96 -0
  105. moai_adk/templates/.claude/skills/moai-lang-julia/SKILL.md +98 -0
  106. moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +99 -0
  107. moai_adk/templates/.claude/skills/moai-lang-lua/SKILL.md +98 -0
  108. moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +98 -0
  109. moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +96 -0
  110. moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +99 -0
  111. moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +99 -0
  112. moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +100 -0
  113. moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +100 -0
  114. moai_adk/templates/.claude/skills/moai-lang-shell/SKILL.md +100 -0
  115. moai_adk/templates/.claude/skills/moai-lang-sql/SKILL.md +100 -0
  116. moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +99 -0
  117. moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +96 -0
  118. moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +44 -43
  119. moai_adk/templates/.github/workflows/moai-gitflow.yml +36 -35
  120. moai_adk/templates/.moai/config.json +9 -6
  121. moai_adk/templates/.moai/memory/development-guide.md +220 -221
  122. moai_adk/templates/.moai/memory/gitflow-protection-policy.md +85 -85
  123. moai_adk/templates/.moai/memory/spec-metadata.md +149 -150
  124. moai_adk/templates/.moai/project/product.md +90 -90
  125. moai_adk/templates/.moai/project/structure.md +85 -85
  126. moai_adk/templates/.moai/project/tech.md +117 -117
  127. moai_adk/templates/CLAUDE.md +354 -573
  128. moai_adk/templates/__init__.py +1 -1
  129. moai_adk/utils/__init__.py +1 -1
  130. moai_adk/utils/banner.py +7 -7
  131. moai_adk/utils/logger.py +1 -1
  132. moai_adk-0.4.1.dist-info/METADATA +303 -0
  133. moai_adk-0.4.1.dist-info/RECORD +152 -0
  134. moai_adk/templates/.claude/commands/alfred/1-spec.md +0 -532
  135. moai_adk/templates/.claude/commands/alfred/2-build.md +0 -432
  136. moai_adk/templates/.moai/hooks/pre-push.sample +0 -88
  137. moai_adk-0.3.13.dist-info/METADATA +0 -1586
  138. moai_adk-0.3.13.dist-info/RECORD +0 -90
  139. {moai_adk-0.3.13.dist-info β†’ moai_adk-0.4.1.dist-info}/WHEEL +0 -0
  140. {moai_adk-0.3.13.dist-info β†’ moai_adk-0.4.1.dist-info}/entry_points.txt +0 -0
  141. {moai_adk-0.3.13.dist-info β†’ moai_adk-0.4.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,68 +1,69 @@
1
1
  # MoAI-ADK GitFlow PR
2
2
 
3
- > πŸ—Ώ **GitFlow μ™„μ „ 투λͺ…μ„±** - μ—μ΄μ „νŠΈκ°€ μžλ™μœΌλ‘œ 정보λ₯Ό μ±„μ›λ‹ˆλ‹€
3
+ > πŸ—Ώ Full GitFlow Transparency β€” the agent auto-fills information
4
4
 
5
- ## πŸ“ SPEC 정보
5
+ ## πŸ“ SPEC Info
6
6
 
7
- - **κ΄€λ ¨ SPEC**: `SPEC-AUTH-001` (예: JWT 인증 μ‹œμŠ€ν…œ)
8
- - **디렉토리**: `.moai/specs/SPEC-AUTH-001/`
9
- - **@TAG μ—°κ²°**: @SPEC:AUTH-001 @CODE:AUTH-001 (μžλ™ νƒœκΉ…)
7
+ - Related SPEC: `SPEC-AUTH-001` (e.g., JWT authentication system)
8
+ - Directory: `.moai/specs/SPEC-AUTH-001/`
9
+ - @TAG Links: @SPEC:AUTH-001 @CODE:AUTH-001 (auto-tagging)
10
10
 
11
- ## βœ… SPEC ν’ˆμ§ˆ 체크
11
+ ## βœ… SPEC Quality Checks
12
12
 
13
- - [ ] **YAML Front Matter**: 7개 ν•„μˆ˜ ν•„λ“œ (id, version, status, created, updated, author, priority)
14
- - [ ] **HISTORY μ„Ήμ…˜**: 버전별 λ³€κ²½ 이λ ₯ 기둝 (v0.0.1 INITIAL ν•­λͺ© 포함)
15
- - [ ] **EARS μš”κ΅¬μ‚¬ν•­**: Ubiquitous, Event-driven, State-driven, Optional, Constraints
16
- - [ ] **@SPEC:ID TAG**: λ¬Έμ„œμ— TAG 포함 및 쀑볡 확인 (`rg "@SPEC:<ID>" -n`)
13
+ - [ ] YAML Front Matter: 7 required fields (id, version, status, created, updated, author, priority)
14
+ - [ ] HISTORY Section: Record versioned change log (include v0.0.1 INITIAL)
15
+ - [ ] EARS Requirements: Ubiquitous, Event-driven, State-driven, Optional, Constraints
16
+ - [ ] @SPEC:ID TAG: Include TAG in doc and check duplicates (`rg "@SPEC:<ID>" -n`)
17
17
 
18
- ## πŸ€– μžλ™ 검증 μƒνƒœ
18
+ ## πŸ€– Automated Validation Status
19
19
 
20
- <!-- μ•„λž˜ μ²΄ν¬λ¦¬μŠ€νŠΈλŠ” μ—μ΄μ „νŠΈκ°€ μžλ™μœΌλ‘œ μ—…λ°μ΄νŠΈν•©λ‹ˆλ‹€ -->
21
- <!-- /alfred:1-spec β†’ feature 브랜치 생성 β†’ Draft PR -->
22
- <!-- /alfred:2-build β†’ TDD κ΅¬ν˜„ β†’ μ²΄ν¬λ°•μŠ€ μžλ™ 체크 -->
23
- <!-- /alfred:3-sync β†’ λ¬Έμ„œ 동기화 β†’ Ready for Review -->
20
+ <!-- The checklist below is auto-updated by the agent -->
21
+ <!-- /alfred:1-plan β†’ create feature branch β†’ Draft PR -->
22
+ <!-- /alfred:2-run β†’ implement via TDD β†’ auto-check checkboxes -->
23
+ <!-- /alfred:3-sync β†’ synchronize documents β†’ Ready for Review -->
24
24
 
25
- - [ ] **spec-builder**: EARS λͺ…μ„Έ μ™„μ„± 및 feature 브랜치 생성
26
- - [ ] **code-builder**: TDD RED-GREEN-REFACTOR μ™„λ£Œ
27
- - [ ] **doc-syncer**: Living Document 동기화 및 PR Ready
25
+ - [ ] spec-builder: Complete EARS spec and create feature branch
26
+ - [ ] code-builder: Finish TDD RED-GREEN-REFACTOR
27
+ - [ ] doc-syncer: Sync Living Documents and mark PR Ready
28
28
 
29
- ## πŸ“Š ν’ˆμ§ˆ μ§€ν‘œ (μžλ™ 계산)
29
+ ## πŸ“Š Quality Metrics (auto-calculated)
30
30
 
31
- - **TRUST 5원칙**: βœ… μ€€μˆ˜
32
- - **ν…ŒμŠ€νŠΈ 컀버리지**: XX% (85% 이상 λͺ©ν‘œ)
33
- - **@TAG 좔적성**: 100%
31
+ - TRUST 5 Principles: βœ… Compliant
32
+ - Test Coverage: XX% (target β‰₯ 85%)
33
+ - @TAG Traceability: 100%
34
34
 
35
- ## 🌍 Locale μ„€μ •
35
+ ## 🌍 Locale Settings
36
36
 
37
- - **ν”„λ‘œμ νŠΈ μ–Έμ–΄**: <!-- ko/en/ja/zh -->
38
- - **컀밋 λ©”μ‹œμ§€**: <!-- locale에 따라 μžλ™ 생성 -->
37
+ - Project Language: <!-- ko/en/ja/zh -->
38
+ - Commit Messages: <!-- generated automatically according to locale -->
39
39
 
40
- ## 🎯 λ³€κ²½ 사항
40
+ ## 🎯 Changes
41
41
 
42
- <!-- code-builderκ°€ TDD κ²°κ³Όλ₯Ό μžλ™μœΌλ‘œ 채움 -->
42
+ <!-- code-builder auto-fills TDD results -->
43
43
 
44
- ### πŸ”΄ RED (ν…ŒμŠ€νŠΈ μž‘μ„±)
45
- - **ν…ŒμŠ€νŠΈ 파일**: `tests/auth/service.test.ts`
46
- - **ν…ŒμŠ€νŠΈ μ„€λͺ…**: [μ‹€νŒ¨ν•˜λŠ” ν…ŒμŠ€νŠΈ μ„€λͺ…]
44
+ ### πŸ”΄ RED (Test Authoring)
45
+ - Test File: `tests/auth/service.test.ts`
46
+ - Test Description: [describe the failing test]
47
47
 
48
- ### 🟒 GREEN (κ΅¬ν˜„)
49
- - **κ΅¬ν˜„ 파일**: `src/auth/service.ts`
50
- - **κ΅¬ν˜„ μ™„λ£Œ**: [κΈ°λŠ₯ μ„€λͺ…]
48
+ ### 🟒 GREEN (Implementation)
49
+ - Implementation File: `src/auth/service.ts`
50
+ - Implementation Done: [describe functionality]
51
51
 
52
- ### ♻️ REFACTOR (κ°œμ„ )
53
- - **λ¦¬νŒ©ν† λ§ λ‚΄μ—­**: [μ½”λ“œ ν’ˆμ§ˆ κ°œμ„  사항]
52
+ ### ♻️ REFACTOR (Improvements)
53
+ - Refactoring Details: [code quality improvements]
54
54
 
55
- ## πŸ“š λ¬Έμ„œ 동기화
55
+ ## πŸ“š Documentation Sync
56
56
 
57
- <!-- doc-syncerκ°€ μžλ™μœΌλ‘œ 채움 -->
57
+ <!-- auto-filled by doc-syncer -->
58
58
 
59
- - [ ] README μ—…λ°μ΄νŠΈ
60
- - [ ] API λ¬Έμ„œ 동기화
61
- - [ ] TAG 인덱슀 μ—…λ°μ΄νŠΈ
62
- - [ ] HISTORY μ„Ήμ…˜ μ—…λ°μ΄νŠΈ (SPEC λ¬Έμ„œ)
59
+ - [ ] Update README
60
+ - [ ] Sync API docs
61
+ - [ ] Update TAG index
62
+ - [ ] Update HISTORY section (SPEC docs)
63
63
 
64
64
  ---
65
65
 
66
- πŸš€ **MoAI-ADK**: 3단계 νŒŒμ΄ν”„λΌμΈμœΌλ‘œ Git λͺ…λ Ήμ–΄ 없이도 ν”„λ‘œνŽ˜μ…”λ„ 개발!
66
+ πŸš€ MoAI-ADK: Professional development without Git commands via a 3-stage pipeline!
67
+
68
+ Reviewers: Check TRUST 5 compliance and SPEC metadata completeness only.
67
69
 
68
- **리뷰어**: TRUST 5원칙 μ€€μˆ˜ 여뢀와 SPEC 메타데이터 μ™„μ„±λ„λ§Œ ν™•μΈν•˜λ©΄ λ©λ‹ˆλ‹€.
@@ -1,7 +1,7 @@
1
- name: MoAI-ADK GitFlow μžλ™ν™”
1
+ name: MoAI-ADK GitFlow Automation
2
2
 
3
- # MoAI-ADK 3단계 νŒŒμ΄ν”„λΌμΈ: spec β†’ build β†’ sync
4
- # GitFlow μ™„μ „ 투λͺ…μ„± - κ°œλ°œμžκ°€ Git을 λͺ°λΌλ„ λ˜λŠ” μžλ™ν™”
3
+ # MoAI-ADK 3-stage pipeline: spec β†’ build β†’ sync
4
+ # Full GitFlow transparency β€” no Git expertise needed
5
5
 
6
6
  on:
7
7
  push:
@@ -11,10 +11,10 @@ on:
11
11
 
12
12
  jobs:
13
13
  moai-pipeline:
14
- name: πŸ—Ώ MoAI-ADK νŒŒμ΄ν”„λΌμΈ
14
+ name: πŸ—Ώ MoAI-ADK Pipeline
15
15
  runs-on: ubuntu-latest
16
16
  steps:
17
- - name: 체크아웃
17
+ - name: Checkout
18
18
  uses: actions/checkout@v4
19
19
 
20
20
  # Multi-language toolchains (conditional)
@@ -86,15 +86,15 @@ jobs:
86
86
  distribution: "temurin"
87
87
  java-version: "21"
88
88
 
89
- # TRUST 5원칙 μžλ™ 검증
90
- # Note: Validation is now handled by TypeScript-based tools
91
- - name: 🧭 TRUST 5원칙 검증
89
+ # TRUST 5 Principles β€” automated validation
90
+ # Note: Validation is handled by TypeScript-based tools
91
+ - name: 🧭 TRUST 5 Principles Check
92
92
  run: |
93
- echo "βœ… TRUST 원칙 검증은 TypeScript 기반 λ„κ΅¬λ‘œ μˆ˜ν–‰λ©λ‹ˆλ‹€"
94
- echo " - @agent-trust-checker μ‚¬μš©"
95
- echo " - TypeScript ν›… μ‹œμŠ€ν…œ ν™œμš©"
93
+ echo "βœ… TRUST validation is performed by TypeScript-based tools"
94
+ echo " - Uses @agent-trust-checker"
95
+ echo " - Leverages TypeScript hook system"
96
96
 
97
- # Draft PRμ—μ„œλŠ” ν…ŒμŠ€νŠΈ μ‹€νŒ¨λ₯Ό λ¬΄μ‹œν•˜κ³ , Ready PRμ—μ„œλŠ” μ‹€νŒ¨ μ‹œ CI μ‹€νŒ¨
97
+ # Ignore test failures on Draft PRs; fail CI on Ready PRs
98
98
  - name: Run language-aware tests
99
99
  run: |
100
100
  set -e
@@ -213,43 +213,44 @@ jobs:
213
213
  fi
214
214
  elif compgen -G "**/*.xcodeproj" > /dev/null || compgen -G "**/*.xcworkspace" > /dev/null; then
215
215
  echo "➑️ Swift tests (Xcode)"
216
- # Xcode ν”„λ‘œμ νŠΈλŠ” μŠ€ν‚΄μ΄ ν•„μš”ν•˜λ―€λ‘œ 쑰건뢀 μ‹€ν–‰
216
+ # Xcode projects require a scheme; run conditionally
217
217
  if [ "$ALLOW_FAILURE" = "true" ]; then
218
- echo "⚠️ Xcode ν…ŒμŠ€νŠΈλŠ” μŠ€ν‚΄ 섀정이 ν•„μš”ν•©λ‹ˆλ‹€"
218
+ echo "⚠️ Xcode tests require a configured scheme"
219
219
  else
220
- echo "⚠️ Xcode ν…ŒμŠ€νŠΈλŠ” μŠ€ν‚΄ 섀정이 ν•„μš”ν•©λ‹ˆλ‹€"
220
+ echo "⚠️ Xcode tests require a configured scheme"
221
221
  fi
222
222
  fi
223
223
 
224
- # TAG μ‹œμŠ€ν…œ 검증 (μ½”λ“œ 파일만)
225
- - name: 🏷️ TAG μ‹œμŠ€ν…œ 검증
224
+ # TAG system validation (code files only)
225
+ - name: 🏷️ TAG System Validation
226
226
  run: |
227
- echo "βœ… TAG 검증은 tag_validator.py Hookμ—μ„œ μžλ™ 처리됨"
227
+ echo "βœ… TAG validation is handled automatically in the tag_validator.py hook"
228
228
 
229
- # λΈŒλžœμΉ˜λ³„ 단계 μ‹€ν–‰
230
- - name: πŸ“ SPEC 단계 (feature 브랜치)
229
+ # Run per-branch stages
230
+ - name: πŸ“ SPEC Stage (feature branch)
231
231
  if: startsWith(github.ref, 'refs/heads/feature/')
232
232
  run: |
233
- echo "🌿 Feature 브랜치: SPEC 검증 단계"
234
- echo "- spec-builder μ—μ΄μ „νŠΈκ°€ EARS λͺ…μ„Έ μž‘μ„±"
235
- echo "- Draft PR μžλ™ 생성"
233
+ echo "🌿 Feature branch: SPEC validation stage"
234
+ echo "- spec-builder agent authors EARS spec"
235
+ echo "- Draft PR is created automatically"
236
236
 
237
- - name: πŸ”΄πŸŸ’πŸ”„ BUILD 단계 (Draft PR)
237
+ - name: πŸ”΄πŸŸ’πŸ”„ BUILD Stage (Draft PR)
238
238
  if: github.event.pull_request.draft == true
239
239
  run: |
240
- echo "πŸ“ Draft PR: TDD κ΅¬ν˜„ 단계"
241
- echo "- code-builder μ—μ΄μ „νŠΈκ°€ RED-GREEN-REFACTOR"
242
- echo "- TRUST 5원칙 μ€€μˆ˜ 검증"
240
+ echo "πŸ“ Draft PR: TDD implementation stage"
241
+ echo "- code-builder agent runs RED-GREEN-REFACTOR"
242
+ echo "- Validate TRUST 5 Principles compliance"
243
243
 
244
- - name: πŸ“š SYNC 단계 (Ready PR)
244
+ - name: πŸ“š SYNC Stage (Ready PR)
245
245
  if: github.event.pull_request.draft == false && github.event.action == 'ready_for_review'
246
246
  run: |
247
- echo "βœ… Ready PR: λ¬Έμ„œ 동기화 단계"
248
- echo "- doc-syncer μ—μ΄μ „νŠΈκ°€ Living Document 동기화"
249
- echo "- PR 리뷰 μ€€λΉ„ μ™„λ£Œ"
247
+ echo "βœ… Ready PR: documentation sync stage"
248
+ echo "- doc-syncer agent synchronizes Living Documents"
249
+ echo "- PR is ready for review"
250
250
 
251
- # μ΅œμ’… κ²°κ³Ό 리포트
252
- - name: πŸ“Š MoAI νŒŒμ΄ν”„λΌμΈ μ™„λ£Œ
251
+ # Final result report
252
+ - name: πŸ“Š MoAI Pipeline Complete
253
253
  run: |
254
- echo "πŸ—Ώ MoAI-ADK GitFlow μžλ™ν™” μ™„λ£Œ"
255
- echo "✨ Git을 λͺ°λΌλ„ ν”„λ‘œνŽ˜μ…”λ„ μ›Œν¬ν”Œλ‘œμš° κ΅¬ν˜„"
254
+ echo "πŸ—Ώ MoAI-ADK GitFlow automation complete"
255
+ echo "✨ Professional workflow without needing to know Git"
256
+
@@ -11,7 +11,7 @@
11
11
  "principles": {
12
12
  "simplicity": {
13
13
  "max_projects": 5,
14
- "notes": "κΈ°λ³Έ ꢌμž₯κ°’. ν”„λ‘œμ νŠΈ 규λͺ¨μ— 따라 .moai/config.json λ˜λŠ” SPEC/ADR둜 근거와 ν•¨κ»˜ μ‘°μ •ν•˜μ„Έμš”."
14
+ "notes": "Default recommendation. Adjust in .moai/config.json or via SPEC/ADR with documented rationale based on project size."
15
15
  }
16
16
  },
17
17
  "require_tags": true,
@@ -49,8 +49,8 @@
49
49
  "pipeline": {
50
50
  "available_commands": [
51
51
  "/alfred:0-project",
52
- "/alfred:1-spec",
53
- "/alfred:2-build",
52
+ "/alfred:1-plan",
53
+ "/alfred:2-run",
54
54
  "/alfred:3-sync"
55
55
  ],
56
56
  "current_stage": "initialized"
@@ -59,7 +59,7 @@
59
59
  "created_at": "{{CREATION_TIMESTAMP}}",
60
60
  "description": "{{PROJECT_DESCRIPTION}}",
61
61
  "initialized": true,
62
- "locale": "ko",
62
+ "locale": "en",
63
63
  "mode": "{{PROJECT_MODE}}",
64
64
  "name": "{{PROJECT_NAME}}",
65
65
  "moai_adk_version": "{{MOAI_VERSION}}",
@@ -81,9 +81,12 @@
81
81
  "code_scan_policy": {
82
82
  "no_intermediate_cache": true,
83
83
  "realtime_validation": true,
84
- "scan_tools": ["rg", "grep"],
84
+ "scan_tools": [
85
+ "rg",
86
+ "grep"
87
+ ],
85
88
  "scan_command": "rg '@TAG' -n",
86
- "philosophy": "TAG의 진싀은 μ½”λ“œ μžμ²΄μ—λ§Œ 쑴재"
89
+ "philosophy": "The source of truth for TAGs lives in the code itself"
87
90
  }
88
91
  }
89
92
  }