moai-adk 0.4.8__py3-none-any.whl → 0.4.11__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moai-adk
3
- Version: 0.4.8
3
+ Version: 0.4.11
4
4
  Summary: MoAI Agentic Development Kit - SPEC-First TDD with Alfred SuperAgent & Complete Skills v2.0
5
5
  Project-URL: Homepage, https://github.com/modu-ai/moai-adk
6
6
  Project-URL: Repository, https://github.com/modu-ai/moai-adk
@@ -190,7 +190,7 @@ uv tool install moai-adk
190
190
 
191
191
  # Verify installation
192
192
  moai-adk --version
193
- # Output: MoAI-ADK v0.4.6
193
+ # Output: MoAI-ADK v0.4.11
194
194
  ```
195
195
 
196
196
  Once installed, you can use the `moai-adk` command anywhere.
@@ -1108,7 +1108,7 @@ Hooks are **event-driven** scripts that trigger automatically at specific points
1108
1108
  #### 2. PreToolUse (Before Tool Execution)
1109
1109
 
1110
1110
  **Triggers**: Before executing file edits, Bash commands, or MultiEdit operations
1111
- **Purpose**: Detect risky operations and automatically create safety checkpoints
1111
+ **Purpose**: Detect risky operations and automatically create safety checkpoints + TAG Guard
1112
1112
 
1113
1113
  **Protection Against**:
1114
1114
  - `rm -rf` (file deletion)
@@ -1116,13 +1116,30 @@ Hooks are **event-driven** scripts that trigger automatically at specific points
1116
1116
  - Editing critical files (`CLAUDE.md`, `config.json`)
1117
1117
  - Mass edits (10+ files at once via MultiEdit)
1118
1118
 
1119
+ **TAG Guard (New in v0.4.11)**:
1120
+ Automatically detects missing @TAG annotations in changed files:
1121
+ - Scans staged, modified, and untracked files
1122
+ - Warns when SPEC/TEST/CODE/DOC files lack required @TAG markers
1123
+ - Configurable rules via `.moai/tag-rules.json`
1124
+ - Non-blocking (gentle reminder, doesn't stop execution)
1125
+
1119
1126
  **What You See**:
1120
1127
  ```
1121
1128
  🛡️ Checkpoint created: before-delete-20251023-143000
1122
1129
  Operation: delete
1123
1130
  ```
1124
1131
 
1125
- **Why It Matters**: Prevents data loss from mistakes. You can always restore from the checkpoint if something goes wrong.
1132
+ Or when TAGs are missing:
1133
+ ```
1134
+ ⚠️ TAG 누락 감지: 생성/수정한 파일 중 @TAG가 없는 항목이 있습니다.
1135
+ - src/auth/service.py → 기대 태그: @CODE:
1136
+ - tests/test_auth.py → 기대 태그: @TEST:
1137
+ 권장 조치:
1138
+ 1) SPEC/TEST/CODE/DOC 유형에 맞는 @TAG를 파일 상단 주석이나 헤더에 추가
1139
+ 2) rg로 확인: rg '@(SPEC|TEST|CODE|DOC):' -n <경로>
1140
+ ```
1141
+
1142
+ **Why It Matters**: Prevents data loss from mistakes and ensures @TAG traceability. You can always restore from the checkpoint if something goes wrong.
1126
1143
 
1127
1144
  #### 3. UserPromptSubmit (Prompt Input)
1128
1145
 
@@ -1185,7 +1202,7 @@ If you need to temporarily disable hooks, edit `.claude/settings.json`:
1185
1202
  | Hook | Status | Feature |
1186
1203
  |------|--------|---------|
1187
1204
  | **SessionStart** | ✅ Active | Project status summary (language, Git, SPEC progress, checkpoints) |
1188
- | **PreToolUse** | ✅ Active | Risk detection + auto checkpoint (critical-delete, delete, merge, script) |
1205
+ | **PreToolUse** | ✅ Active | Risk detection + auto checkpoint (critical-delete, delete, merge, script) + **TAG Guard** (missing @TAG detection) |
1189
1206
  | **UserPromptSubmit** | ✅ Active | JIT context loading (auto-load related SPEC, tests, code, docs) |
1190
1207
  | **PostToolUse** | ✅ Active | Auto-run tests after code changes (9 languages: Python, TS, JS, Go, Rust, Java, Kotlin, Swift, Dart) |
1191
1208
  | **SessionEnd** | ✅ Active | Session cleanup and state saving |
@@ -1219,18 +1236,18 @@ If you need to temporarily disable hooks, edit `.claude/settings.json`:
1219
1236
 
1220
1237
  ---
1221
1238
 
1222
- ## v0.4 Series Updates (New!)
1239
+ ## Latest Updates (New!)
1223
1240
 
1224
1241
  | Version | Key Features | Date |
1225
1242
  | ---------- | ------------------------------------------------------------------------------------ | ---------- |
1243
+ | **v0.4.11** | ✨ TAG Guard system + CLAUDE.md formatting improvements + Code cleanup | 2025-10-23 |
1244
+ | **v0.4.10** | 🔧 Hook robustness improvements + Bilingual documentation + Template language config | 2025-10-23 |
1245
+ | **v0.4.9** | 🎯 Hook JSON schema validation fixes + Comprehensive tests (468/468 passing) | 2025-10-23 |
1246
+ | **v0.4.8** | 🚀 Release automation + PyPI deployment + Skills refinement | 2025-10-23 |
1247
+ | **v0.4.7** | 📖 Korean language optimization + SPEC-First principle documentation | 2025-10-22 |
1226
1248
  | **v0.4.6** | 🎉 Complete Skills v2.0 (100% Production-Ready) + 85,000 lines official docs + 300+ TDD examples | 2025-10-22 |
1227
- | **v0.4.5** | ✅ CI/CD fixes + Multi-language README + Deployment cleanup | 2025-10-22 |
1228
- | **v0.4.4** | Korean language support | 2025-10-21 |
1229
- | **v0.4.3** | Interactive question tool (TUI menu) | 2025-10-21 |
1230
- | **v0.4.1** | Skills localization | 2025-10-21 |
1231
- | **v0.4.0** | Claude Skills + AI team + 4-stage workflow | 2025-10-21 |
1232
1249
 
1233
- > 📦 **Install Now**: `pip install moai-adk==0.4.6` or `uv tool install moai-adk==0.4.6`
1250
+ > 📦 **Install Now**: `pip install moai-adk==0.4.11` or `uv tool install moai-adk==0.4.11`
1234
1251
 
1235
1252
  ---
1236
1253
 
@@ -1254,24 +1271,24 @@ Let’s build a Mini Kanban Board web application designed to help you master Mo
1254
1271
 
1255
1272
  ```mermaid
1256
1273
  gantt
1257
- title Mini Kanban Board 4week plan
1274
+ title Mini Kanban Board - 4-week plan
1258
1275
  dateFormat YYYY-MM-DD
1259
1276
 
1260
1277
  section Phase 1: Backend Basics
1261
- CH07: Define SPEC-001~004 :active, ch07-spec, 2025-11-03, 1d
1262
- CH07: Implement SpecScanner (TDD) :active, ch07-impl, 2025-11-04, 1d
1278
+ Define SPEC-001-004 :active, ch07-spec, 2025-11-03, 1d
1279
+ Implement SpecScanner (TDD) :active, ch07-impl, 2025-11-04, 1d
1263
1280
 
1264
1281
  section Phase 2: Backend Advanced
1265
- CH08: Implement REST API :active, ch08-api, 2025-11-05, 1d
1266
- CH08: WebSocket + File Watch :active, ch08-ws, 2025-11-06, 1d
1282
+ Implement REST API :active, ch08-api, 2025-11-05, 1d
1283
+ WebSocket + File Watch :active, ch08-ws, 2025-11-06, 1d
1267
1284
 
1268
1285
  section Phase 3: Frontend Basics
1269
- CH09: React init + SPEC-009~012 :active, ch09-spec, 2025-11-10, 1d
1270
- CH09: Kanban Board (TDD) :active, ch09-impl, 2025-11-11, 1d
1286
+ React init + SPEC-009-012 :active, ch09-spec, 2025-11-10, 1d
1287
+ Kanban Board (TDD) :active, ch09-impl, 2025-11-11, 1d
1271
1288
 
1272
1289
  section Phase 4: Advanced + Deploy
1273
- CH10: E2E + CI/CD :active, ch10-e2e, 2025-11-12, 1d
1274
- CH10: Docker Compose + Optimize :active, ch10-deploy, 2025-11-13, 1d
1290
+ E2E + CI/CD :active, ch10-e2e, 2025-11-12, 1d
1291
+ Docker Compose + Optimize :active, ch10-deploy, 2025-11-13, 1d
1275
1292
  ```
1276
1293
 
1277
1294
  ### 16‑SPEC Roadmap
@@ -1522,8 +1539,8 @@ cd frontend
1522
1539
  | ------------------------ | ------------------------------------------------------- |
1523
1540
  | **GitHub Repository** | https://github.com/modu-ai/moai-adk |
1524
1541
  | **Issues & Discussions** | https://github.com/modu-ai/moai-adk/issues |
1525
- | **PyPI Package** | https://pypi.org/project/moai-adk/ (Latest: v0.4.6) |
1526
- | **Latest Release** | https://github.com/modu-ai/moai-adk/releases/tag/v0.4.6 |
1542
+ | **PyPI Package** | https://pypi.org/project/moai-adk/ (Latest: v0.4.11) |
1543
+ | **Latest Release** | https://github.com/modu-ai/moai-adk/releases/tag/v0.4.11 |
1527
1544
  | **Documentation** | See `.moai/`, `.claude/`, `docs/` within project |
1528
1545
 
1529
1546
  ---
@@ -1544,10 +1561,12 @@ Start a new experience of **trustworthy AI development** with Alfred! 🤖
1544
1561
 
1545
1562
  ---
1546
1563
 
1547
- **MoAI-ADK v0.4.6** — SPEC-First TDD with AI SuperAgent & Complete Skills v2.0
1564
+ **MoAI-ADK v0.4.11** — SPEC-First TDD with AI SuperAgent & Complete Skills v2.0 + TAG Guard
1548
1565
  - 📦 PyPI: https://pypi.org/project/moai-adk/
1549
1566
  - 🏠 GitHub: https://github.com/modu-ai/moai-adk
1550
1567
  - 📝 License: MIT
1551
- - ⭐ Skills: 56/56 Complete (100% Production-Ready)
1568
+ - ⭐ Skills: 55+ Production-Ready Guides
1569
+ - ✅ Tests: 467/476 Passing (85.60% coverage)
1570
+ - 🏷️ TAG Guard: Automatic @TAG validation in PreToolUse Hook
1552
1571
 
1553
1572
  ---
@@ -38,7 +38,7 @@ moai_adk/core/template/languages.py,sha256=V0wLcxCIOve9Q_0_NhrHGQevSIN_MB612GwrO
38
38
  moai_adk/core/template/merger.py,sha256=ZV8_U1HZJ3bfAtgyNmSxgj8KdTMt4eUnUG6kVVRT7bE,6909
39
39
  moai_adk/core/template/processor.py,sha256=W4M3BNrlfA0dHRwvPWIkJmJwhkNDglXaNzsYBoVTSnQ,17019
40
40
  moai_adk/templates/.gitignore,sha256=6VNKResdDpyaii3cmJA4pOLwK2PhYARIWkUODYtKyxg,310
41
- moai_adk/templates/CLAUDE.md,sha256=Vr5z4cUZna1FB6gEi8Cwz-G9pSh7YZKHxJ6wPEZvZZo,42170
41
+ moai_adk/templates/CLAUDE.md,sha256=k4XxvngGZkdGO24As5cNIGv9R7wdA0JlLt4_FMDZ7pE,42149
42
42
  moai_adk/templates/__init__.py,sha256=6MV1gCB7PLZMiL4gaD_dZSKxtcQyo45MMTuN8fVdchA,104
43
43
  moai_adk/templates/.claude/settings.json,sha256=sXQ8gV3oyZJHqPHMxYaH-ps-LXliIMpLMj-Xx2jjE7o,3269
44
44
  moai_adk/templates/.claude/agents/alfred/cc-manager.md,sha256=nyiNtcSqvLKK8Mp88hhTFBqrpsRiTqtNTpnAo1m0qQg,8048
@@ -57,16 +57,19 @@ moai_adk/templates/.claude/commands/alfred/0-project.md,sha256=c0aCthvHu57Eg4QHB
57
57
  moai_adk/templates/.claude/commands/alfred/1-plan.md,sha256=4Afx44Xx1yp4kp5FwrJg4QxMt-NBkkfgNNi05lk0glg,21792
58
58
  moai_adk/templates/.claude/commands/alfred/2-run.md,sha256=UMscmBrpqysmWoKvwyGXEnCEzDWVeS5VEvvYABFYC4g,20194
59
59
  moai_adk/templates/.claude/commands/alfred/3-sync.md,sha256=xF9XnP20cJrRuCFEG_J3RnZtwMy5Ym3nj_f6eryBFBE,21535
60
+ moai_adk/templates/.claude/hooks/alfred/HOOK_SCHEMA_VALIDATION.md,sha256=5dd6KRFQXzp0L8lAWKRN7Momgg_8XNV1QZ6VGs03_pc,9064
60
61
  moai_adk/templates/.claude/hooks/alfred/README.md,sha256=8JirNg3Jn2OUFmHySYBd8QxQgPkG7kcev86Zkf80asY,6852
61
- moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py,sha256=dPlwlj7LlsJd-c-D5ONiQGkih4qULFcjzNvZQyto_kc,7547
62
- moai_adk/templates/.claude/hooks/alfred/core/__init__.py,sha256=0G35NawGba73POlkG--xjLnaibUCLxS6LUmdJdWBh30,5982
62
+ moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py,sha256=ILYbruVD1o284wmKPFaE2LPARekVtecpcovCvqy7eEc,7570
63
+ moai_adk/templates/.claude/hooks/alfred/test_hook_output.py,sha256=3pk-JBUPdSQZBjx27qKu-db7D1WFYBmlIZmeAFBil6M,5646
64
+ moai_adk/templates/.claude/hooks/alfred/core/__init__.py,sha256=nx_02kZDVFlKOgxBfFz3nqVrxMkmrkE0x7crJhdjl5E,6377
63
65
  moai_adk/templates/.claude/hooks/alfred/core/checkpoint.py,sha256=dsvFDSXQNSQlaQLpvhqFbytGOrOivyovi43Y18EmNeI,8483
64
66
  moai_adk/templates/.claude/hooks/alfred/core/context.py,sha256=RQd6yk8OGT-twgYtUiNmJIL-UEt_h4oktxqiRP_wXAI,2103
65
67
  moai_adk/templates/.claude/hooks/alfred/core/project.py,sha256=XVm-Y5TVjBBznW8AkFhk_uVg-EF1lZ2wx59Rxt_LOBA,9125
68
+ moai_adk/templates/.claude/hooks/alfred/core/tags.py,sha256=XcYYCS1VmCejp7Ga9xZ3hDfrWWsKM-WyPD_N5gY1q1w,6359
66
69
  moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py,sha256=j5L7nayKt7tnFQOZuO5sWiie815vmbmYJOn2VRiidLY,569
67
70
  moai_adk/templates/.claude/hooks/alfred/handlers/notification.py,sha256=8TcEqGlz4EpLf2lpouaIuhVbpKOVeY31KPmIq2snt9U,662
68
71
  moai_adk/templates/.claude/hooks/alfred/handlers/session.py,sha256=jGmiDPY-unTlQlTWQVisr82Rxhbt1Rkhrun4bggTxQ4,3374
69
- moai_adk/templates/.claude/hooks/alfred/handlers/tool.py,sha256=PBtx72UbHwTt59jlL3Wkv54O3_N-Px5Ow-WEmDMAEpM,2260
72
+ moai_adk/templates/.claude/hooks/alfred/handlers/tool.py,sha256=0bNtAf2M7nupTAkcrEiZMBCmD2f-dLjjZa5p1CWiNyM,3383
70
73
  moai_adk/templates/.claude/hooks/alfred/handlers/user.py,sha256=PyQI201oezWBzLrKo8ntWoRa9GDyVwLYktdu9vLT84s,1389
71
74
  moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md,sha256=nSP5iB5TOVf7WOqAibb28WpWFehCTG3-8WLY77l5o1M,19376
72
75
  moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md,sha256=fXsSMavQ3v9l64JST1LCR3BRJ8id9AvJ4N3pf1KwCog,17294
@@ -101,7 +104,7 @@ moai_adk/templates/.claude/skills/moai-cc-commands/templates/command-template.md
101
104
  moai_adk/templates/.claude/skills/moai-cc-hooks/SKILL.md,sha256=ZZmnr68CJUVQ_nvVzISm3Dbi3CdMYbeU7y9riGQ7SN8,6114
102
105
  moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/pre-bash-check.sh,sha256=_I5PrOGLp6uSDgRyoXFbO1-OpCPRte0tyPdB-JzRiMQ,319
103
106
  moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/preserve-permissions.sh,sha256=aZt473lVf5zL3t3ZVwEVsFYGneeyqWgJQe6ZXA9ewBI,474
104
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/validate-bash-command.py,sha256=9-7Em28aS9wGEVeo3FXGglJ_5RNKEBOOWzNzTeJb5Ps,592
107
+ moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/validate-bash-command.py,sha256=EUuQO_QFufNIRA4O1MkacM9ij0Rwsgzxe2okFcc_nJM,675
105
108
  moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/SKILL.md,sha256=O2QBmBKe6lyU-sXyxhWzTdgTLuxxKvKzES-hV4EQetA,4887
106
109
  moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/templates/settings-mcp-template.json,sha256=t2B7_Jd6DQbrSi2HmhdLLTYphy9UTOnch9FsV79onMw,968
107
110
  moai_adk/templates/.claude/skills/moai-cc-memory/SKILL.md,sha256=H51IpkBCD2vCYIjynO_77whsamCuPE2uieudybW0yJU,7726
@@ -258,8 +261,8 @@ moai_adk/templates/.moai/project/tech.md,sha256=REecMv8wOvutt-pQZ5nlGk5YdReTan7A
258
261
  moai_adk/utils/__init__.py,sha256=VnVfQzzKHvKw4bNdEw5xdscnRQYFrnr-v_TOBr3naPs,225
259
262
  moai_adk/utils/banner.py,sha256=znppKd5yo-tTqgyhgPVJjstrTrfcy_v3X1_RFQxP4Fk,1878
260
263
  moai_adk/utils/logger.py,sha256=g-m07PGKjK2bKRIInfSn6m-024Bedai-pV_WjZKDeu8,5064
261
- moai_adk-0.4.8.dist-info/METADATA,sha256=SL2pkhKPxjBJj348Ho7LdEBRLd08ulRoSYeDgZ9rTaY,61797
262
- moai_adk-0.4.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
263
- moai_adk-0.4.8.dist-info/entry_points.txt,sha256=P9no1794UipqH72LP-ltdyfVd_MeB1WKJY_6-JQgV3U,52
264
- moai_adk-0.4.8.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
265
- moai_adk-0.4.8.dist-info/RECORD,,
264
+ moai_adk-0.4.11.dist-info/METADATA,sha256=Aby3HbsAA95ekpDTArVQKFtTdfAsq-_Cnw-k3vpUUuU,62660
265
+ moai_adk-0.4.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
266
+ moai_adk-0.4.11.dist-info/entry_points.txt,sha256=P9no1794UipqH72LP-ltdyfVd_MeB1WKJY_6-JQgV3U,52
267
+ moai_adk-0.4.11.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
268
+ moai_adk-0.4.11.dist-info/RECORD,,