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,68 @@
1
- # GitFlow 권장 정책 (Advisory Policy)
1
+ # GitFlow Advisory Policy
2
2
 
3
- **문서 ID**: @DOC:GITFLOW-POLICY-001
4
- **작성일**: 2025-10-17
5
- **상태**: Advisory (권장 사항, 강제 아님)
6
- **적용 범위**: Personal/Team 모드 모두
3
+ **Document ID**: @DOC:GITFLOW-POLICY-001
4
+ **Published**: 2025-10-17
5
+ **Status**: Advisory (recommended, not enforced)
6
+ **Scope**: Personal and Team modes
7
7
 
8
8
  ---
9
9
 
10
- ## 개요
10
+ ## Overview
11
11
 
12
- MoAI-ADK GitFlow 전략을 **권장**합니다. 정책은 best practice를 제시하지만, 사용자의 판단에 따라 유연하게 적용할 수 있습니다.
12
+ MoAI-ADK **recommends** a GitFlow-inspired workflow. This policy shares best practices while letting teams adapt them as needed.
13
13
 
14
- ## 핵심 권장사항
14
+ ## Key Recommendations
15
15
 
16
- ### 1. Main 브랜치 접근 제어 (권장)
16
+ ### 1. Main Branch Access (Recommended)
17
17
 
18
- | 권장사항 | 설명 | 적용 방식 |
19
- |---------|------|----------|
20
- | **Develop 기반 Merge** | develop 브랜치에서 main으로 머지 권장 | Advisory ⚠️ |
21
- | **Feature Develop** | Feature 브랜치는 develop에서 분기하고 develop으로 PR 생성 | Advisory ⚠️ |
22
- | **Release 프로세스** | Release: develop -> main (Release Engineer 권장) | Advisory ⚠️ |
23
- | **강제 Push** | Force-push 경고, 하지만 허용 | Warning ⚠️ |
24
- | **직접 Push** | main 직접 push 경고, 하지만 허용 | Warning ⚠️ |
18
+ | Recommendation | Summary | Enforcement |
19
+ |----------------|---------|-------------|
20
+ | **Merge via develop** | Prefer merging `develop` into `main` | Advisory ⚠️ |
21
+ | **Feature branches off develop** | Branch from `develop` and raise PRs back to `develop` | Advisory ⚠️ |
22
+ | **Release process** | Release flow: `develop` `main` (release engineer encouraged) | Advisory ⚠️ |
23
+ | **Force push** | Warn when force-pushing, but allow it | Warning ⚠️ |
24
+ | **Direct push** | Warn on direct pushes to `main`, but allow them | Warning ⚠️ |
25
25
 
26
- ### 2. Git Workflow (권장)
26
+ ### 2. Git Workflow (Recommended)
27
27
 
28
28
  ```
29
29
  ┌─────────────────────────────────────────────────────────┐
30
30
  │ RECOMMENDED GITFLOW │
31
31
  └─────────────────────────────────────────────────────────┘
32
32
 
33
- develop (권장 기본 브랜치)
33
+ develop (recommended base branch)
34
34
  ↑ ↓
35
35
  ┌─────────────────┐
36
36
  │ │
37
- (개발자가 작업)
37
+ developer work
38
38
  │ │
39
39
  ↓ ↑
40
40
  feature/SPEC-{ID} [PR: feature -> develop]
41
- [코드 리뷰 + 승인]
41
+ [code review + approval]
42
42
  [Merge to develop]
43
43
 
44
- develop (안정적)
44
+ develop (stable)
45
45
 
46
- (Release Manager가 준비)
46
+ (release manager prepares)
47
47
 
48
48
  [PR: develop -> main]
49
- [CI/CD 검증]
50
- [태그 생성]
49
+ [CI/CD validation]
50
+ [tag creation]
51
51
 
52
- main (릴리스)
52
+ main (release)
53
53
  ```
54
54
 
55
- **유연성**: 프로젝트 상황에 따라 직접 main 푸시도 가능하지만, 워크플로우를 권장합니다.
55
+ **Flexibility**: Direct pushes to `main` are still possible, but the workflow above is preferred.
56
56
 
57
- ## 기술 구현
57
+ ## Technical Implementation
58
58
 
59
59
  ### Pre-push Hook (Advisory Mode)
60
60
 
61
- **위치**: `.git/hooks/pre-push`
62
- **기능**: Main 브랜치 작업 경고 표시 (차단 안 함)
61
+ **Location**: `.git/hooks/pre-push`
62
+ **Purpose**: Warn on `main` branch pushes without blocking them
63
63
 
64
64
  ```bash
65
- # main으로 push 시도 시:
65
+ # When attempting to push to main:
66
66
  ⚠️ ADVISORY: Non-standard GitFlow detected
67
67
 
68
68
  Current branch: feature/SPEC-123
@@ -78,7 +78,7 @@ Recommended GitFlow workflow:
78
78
  ✓ Push will proceed (flexibility mode enabled)
79
79
  ```
80
80
 
81
- ### 강제 Push Advisory
81
+ ### Force Push Advisory
82
82
 
83
83
  ```bash
84
84
  ⚠️ ADVISORY: Force-push to main branch detected
@@ -92,95 +92,95 @@ Recommended approach:
92
92
 
93
93
  ---
94
94
 
95
- ## 사용 사례별 워크플로우
95
+ ## Workflow Examples
96
96
 
97
- ### 사례 1: 표준 Feature 개발 (권장)
97
+ ### Scenario 1: Standard Feature Development (Recommended)
98
98
 
99
99
  ```bash
100
- # 1. develop에서 최신 코드 받기
100
+ # 1. Sync latest code from develop
101
101
  git checkout develop
102
102
  git pull origin develop
103
103
 
104
- # 2. feature 브랜치 생성 (develop에서)
104
+ # 2. Create a feature branch (from develop)
105
105
  git checkout -b feature/SPEC-001-new-feature
106
106
 
107
- # 3. 작업 진행
108
- # ... 코드 작성 테스트 ...
107
+ # 3. Implement the change
108
+ # ... write code and tests ...
109
109
 
110
- # 4. 커밋
110
+ # 4. Commit
111
111
  git add .
112
112
  git commit -m "..."
113
113
 
114
114
  # 5. Push
115
115
  git push origin feature/SPEC-001-new-feature
116
116
 
117
- # 6. GitHub에서 PR 생성: feature/SPEC-001-new-feature -> develop
117
+ # 6. Open a PR: feature/SPEC-001-new-feature -> develop
118
118
 
119
- # 7. 코드 리뷰 승인 머지 (develop으로)
119
+ # 7. Merge into develop after review and approval
120
120
  ```
121
121
 
122
- ### 사례 2: 빠른 Hotfix (유연한 방식)
122
+ ### Scenario 2: Fast Hotfix (Flexible)
123
123
 
124
124
  ```bash
125
- # 긴급 수정이 필요한 경우:
125
+ # When an urgent fix is required:
126
126
 
127
- # 옵션 1: 권장 방식 (develop 기반)
127
+ # Option 1: Recommended (via develop)
128
128
  git checkout develop
129
129
  git checkout -b hotfix/critical-bug
130
- # ... 수정 ...
130
+ # ... apply fix ...
131
131
  git push origin hotfix/critical-bug
132
- # PR 생성: hotfix -> develop -> main
132
+ # Open PRs: hotfix -> develop -> main
133
133
 
134
- # 옵션 2: 직접 main 수정 (허용되지만 권장하지 않음)
134
+ # Option 2: Direct fix on main (allowed, not recommended)
135
135
  git checkout main
136
- # ... 수정 ...
136
+ # ... apply fix ...
137
137
  git commit -m "Fix critical bug"
138
- git push origin main # ⚠️ Advisory 경고 표시되지만 진행됨
138
+ git push origin main # ⚠️ Advisory warning appears but push continues
139
139
  ```
140
140
 
141
- ### 사례 3: Release (표준 또는 유연)
141
+ ### Scenario 3: Release (Standard or Flexible)
142
142
 
143
143
  ```bash
144
- # 표준 방식 (권장):
144
+ # Standard approach (recommended):
145
145
  git checkout develop
146
146
  gh pr create --base main --head develop --title "Release v1.0.0"
147
147
 
148
- # 직접 push 방식 (허용):
148
+ # Direct push (allowed):
149
149
  git checkout develop
150
- git push origin main # ⚠️ Advisory 경고 표시되지만 진행됨
150
+ git push origin main # ⚠️ Advisory warning appears but push continues
151
151
  git tag -a v1.0.0 -m "Release v1.0.0"
152
152
  git push origin v1.0.0
153
153
  ```
154
154
 
155
155
  ---
156
156
 
157
- ## 정책 모드 비교
157
+ ## Policy Modes
158
158
 
159
- ### Strict Mode (이전 방식, 현재 비활성)
159
+ ### Strict Mode (Legacy, Currently Disabled)
160
160
 
161
- - ❌ main 직접 push 차단
162
- - ❌ force-push 차단
163
- - ❌ develop 브랜치에서 main 머지 차단
161
+ - ❌ Block direct pushes to `main`
162
+ - ❌ Block force pushes
163
+ - ❌ Block merges into `main` from any branch other than `develop`
164
164
 
165
- ### Advisory Mode (현재 활성, v0.3.5+)
165
+ ### Advisory Mode (Active, v0.3.5+)
166
166
 
167
- - ⚠️ main 직접 push 경고 + 허용
168
- - ⚠️ force-push 경고 + 허용
169
- - ⚠️ best practice 권장 + 유연성 제공
170
- - ✅ 사용자 판단 존중
167
+ - ⚠️ Warn but allow direct pushes to `main`
168
+ - ⚠️ Warn but allow force pushes
169
+ - ⚠️ Recommend best practices while preserving flexibility
170
+ - ✅ Respect user judgment
171
171
 
172
172
  ---
173
173
 
174
- ## 권장 체크리스트
174
+ ## Recommended Checklist
175
175
 
176
- 프로젝트에 참여하는 모든 팀원은 다음을 권장합니다:
176
+ Every contributor should ensure:
177
177
 
178
- - [ ] `.git/hooks/pre-push` 파일 존재 실행 가능 (755 권한)
179
- - [ ] develop 브랜치에서 feature 분기 (권장)
180
- - [ ] PR 생성 대상이 develop (권장)
181
- - [ ] Release는 develop -> main (권장)
178
+ - [ ] `.git/hooks/pre-push` exists and is executable (755)
179
+ - [ ] Feature branches fork from `develop`
180
+ - [ ] Pull requests target `develop`
181
+ - [ ] Releases merge `develop` `main`
182
182
 
183
- **검증 명령**:
183
+ **Verification Commands**:
184
184
  ```bash
185
185
  ls -la .git/hooks/pre-push
186
186
  git branch -vv
@@ -190,31 +190,31 @@ git branch -vv
190
190
 
191
191
  ## FAQ
192
192
 
193
- **Q: develop -> main 아닌 다른 경로로 머지할 수 있나요?**
194
- A: 가능합니다. Advisory 경고가 표시되지만 진행됩니다. 단, develop -> main을 권장합니다.
193
+ **Q: Can we merge into `main` from branches other than `develop`?**
194
+ A: Yes. You will see an advisory warning, but the merge proceeds. The recommended path remains `develop` `main`.
195
195
 
196
- **Q: Force-push를 있나요?**
197
- A: 가능합니다. 경고가 표시되지만 허용됩니다. 단, 신중하게 사용하세요.
196
+ **Q: Are force pushes allowed?**
197
+ A: Yes. You receive a warning, but the push succeeds. Use with caution.
198
198
 
199
- **Q: Main으로 직접 commit/push 있나요?**
200
- A: 가능합니다. Advisory 경고가 표시되지만 진행됩니다.
199
+ **Q: Can we commit/push directly to `main`?**
200
+ A: Yes. Expect an advisory warning, yet the push continues.
201
201
 
202
- **Q: Hook을 완전히 비활성화할 있나요?**
203
- A: 가능합니다. `.git/hooks/pre-push` 파일을 삭제하거나 실행 권한을 제거하세요.
202
+ **Q: Can I disable the hook entirely?**
203
+ A: Yes. Remove `.git/hooks/pre-push` or strip its execute permission.
204
204
 
205
- **Q: Advisory Mode로 변경했나요?**
206
- A: 사용자의 유연성과 판단을 존중하면서도 best practice를 권장하기 위해서입니다.
205
+ **Q: Why switch to Advisory Mode?**
206
+ A: To promote best practices while respecting contributor flexibility and judgment.
207
207
 
208
208
  ---
209
209
 
210
- ## 정책 업데이트 이력
210
+ ## Policy Change Log
211
211
 
212
- | 날짜 | 내용 | 담당자 |
212
+ | Date | Change | Owner |
213
213
  |------|------|--------|
214
- | 2025-10-17 | 초기 정책 수립 (Strict Mode) | git-manager |
215
- | 2025-10-17 | Advisory Mode 전환 (경고만, 차단 안 함) | git-manager |
214
+ | 2025-10-17 | Initial policy drafted (Strict Mode) | git-manager |
215
+ | 2025-10-17 | Switched to Advisory Mode (warnings only) | git-manager |
216
216
 
217
217
  ---
218
218
 
219
- **이 정책은 권장사항이며, 사용자의 판단에 따라 유연하게 적용할 있습니다.**
220
- **질문이나 제안사항은 리드 또는 Release Engineer와 협의하세요.**
219
+ **This policy is advisory—adapt it to fit your project needs.**
220
+ **Reach out to the team lead or release engineer for questions or suggestions.**