moai-adk 0.9.0__py3-none-any.whl → 0.15.0__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 (186) hide show
  1. moai_adk/cli/commands/init.py +14 -2
  2. moai_adk/cli/commands/update.py +214 -56
  3. moai_adk/core/issue_creator.py +2 -2
  4. moai_adk/core/project/detector.py +201 -12
  5. moai_adk/core/project/initializer.py +62 -1
  6. moai_adk/core/project/phase_executor.py +48 -6
  7. moai_adk/core/tags/ci_validator.py +34 -4
  8. moai_adk/core/tags/pre_commit_validator.py +40 -2
  9. moai_adk/core/tags/reporter.py +2 -3
  10. moai_adk/core/tags/validator.py +1 -1
  11. moai_adk/core/template_engine.py +20 -5
  12. moai_adk/templates/.claude/agents/alfred/backend-expert.md +319 -0
  13. moai_adk/templates/.claude/agents/alfred/devops-expert.md +464 -0
  14. moai_adk/templates/.claude/agents/alfred/doc-syncer.md +1 -1
  15. moai_adk/templates/.claude/agents/alfred/frontend-expert.md +357 -0
  16. moai_adk/templates/.claude/agents/alfred/git-manager.md +2 -2
  17. moai_adk/templates/.claude/agents/alfred/implementation-planner.md +76 -3
  18. moai_adk/templates/.claude/agents/alfred/project-manager.md +49 -10
  19. moai_adk/templates/.claude/agents/alfred/quality-gate.md +3 -3
  20. moai_adk/templates/.claude/agents/alfred/spec-builder.md +108 -3
  21. moai_adk/templates/.claude/agents/alfred/tag-agent.md +74 -0
  22. moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +107 -5
  23. moai_adk/templates/.claude/agents/alfred/trust-checker.md +2 -2
  24. moai_adk/templates/.claude/agents/alfred/ui-ux-expert.md +571 -0
  25. moai_adk/templates/.claude/commands/alfred/0-project.md +465 -129
  26. moai_adk/templates/.claude/commands/alfred/1-plan.md +139 -65
  27. moai_adk/templates/.claude/commands/alfred/2-run.md +214 -50
  28. moai_adk/templates/.claude/commands/alfred/3-sync.md +372 -46
  29. moai_adk/templates/.claude/commands/alfred/9-feedback.md +1 -1
  30. moai_adk/templates/.claude/hooks/alfred/core/project.py +25 -27
  31. moai_adk/templates/.claude/hooks/alfred/core/timeout.py +136 -0
  32. moai_adk/templates/.claude/hooks/alfred/core/ttl_cache.py +108 -0
  33. moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +4 -4
  34. moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +29 -0
  35. moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py +11 -19
  36. moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py +11 -19
  37. moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py +11 -19
  38. moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py +10 -18
  39. moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py +2 -2
  40. moai_adk/templates/.claude/hooks/alfred/shared/core/checkpoint.py +3 -3
  41. moai_adk/templates/.claude/hooks/alfred/shared/core/context.py +5 -5
  42. moai_adk/templates/.claude/hooks/alfred/shared/core/project.py +40 -41
  43. moai_adk/templates/.claude/hooks/alfred/shared/core/tags.py +55 -23
  44. moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +4 -4
  45. moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py +132 -3
  46. moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py +9 -10
  47. moai_adk/templates/.claude/hooks/alfred/shared/handlers/tool.py +3 -6
  48. moai_adk/templates/.claude/hooks/alfred/shared/handlers/user.py +19 -0
  49. moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py +14 -22
  50. moai_adk/templates/.claude/hooks/alfred/utils/__init__.py +1 -0
  51. moai_adk/templates/.claude/hooks/alfred/utils/timeout.py +161 -0
  52. moai_adk/templates/.claude/settings.json +5 -5
  53. moai_adk/templates/.claude/skills/moai-alfred-agent-guide/SKILL.md +70 -0
  54. moai_adk/templates/.claude/skills/moai-alfred-agent-guide/examples.md +62 -0
  55. moai_adk/templates/{.moai/memory/CLAUDE-AGENTS-GUIDE.md → .claude/skills/moai-alfred-agent-guide/reference.md} +34 -0
  56. moai_adk/templates/.claude/skills/moai-alfred-config-schema/SKILL.md +56 -0
  57. moai_adk/templates/.claude/skills/moai-alfred-config-schema/examples.md +28 -0
  58. moai_adk/templates/.claude/skills/moai-alfred-config-schema/reference.md +444 -0
  59. moai_adk/templates/.claude/skills/moai-alfred-context-budget/SKILL.md +62 -0
  60. moai_adk/templates/.claude/skills/moai-alfred-context-budget/examples.md +28 -0
  61. moai_adk/templates/.claude/skills/moai-alfred-context-budget/reference.md +405 -0
  62. moai_adk/templates/.claude/skills/moai-alfred-dev-guide/SKILL.md +51 -0
  63. moai_adk/templates/.claude/skills/moai-alfred-dev-guide/examples.md +355 -0
  64. moai_adk/templates/.claude/skills/moai-alfred-dev-guide/reference.md +239 -0
  65. moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/SKILL.md +323 -0
  66. moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/examples.md +286 -0
  67. moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/reference.md +126 -0
  68. moai_adk/templates/.claude/skills/moai-alfred-gitflow-policy/SKILL.md +74 -0
  69. moai_adk/templates/.claude/skills/moai-alfred-gitflow-policy/examples.md +4 -0
  70. moai_adk/templates/.claude/skills/moai-alfred-gitflow-policy/reference.md +269 -0
  71. moai_adk/templates/.claude/skills/moai-alfred-issue-labels/SKILL.md +19 -0
  72. moai_adk/templates/.claude/skills/moai-alfred-issue-labels/examples.md +4 -0
  73. moai_adk/templates/.claude/skills/moai-alfred-persona-roles/SKILL.md +198 -0
  74. moai_adk/templates/.claude/skills/moai-alfred-persona-roles/examples.md +431 -0
  75. moai_adk/templates/.claude/skills/moai-alfred-persona-roles/reference.md +141 -0
  76. moai_adk/templates/.claude/skills/moai-alfred-practices/SKILL.md +89 -0
  77. moai_adk/templates/.claude/skills/moai-alfred-practices/examples.md +122 -0
  78. moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/SKILL.md +508 -0
  79. moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/examples.md +481 -0
  80. moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/reference.md +100 -0
  81. moai_adk/templates/.claude/skills/moai-alfred-reporting/SKILL.md +273 -0
  82. moai_adk/templates/.claude/skills/moai-alfred-rules/SKILL.md +77 -0
  83. moai_adk/templates/.claude/skills/moai-alfred-rules/examples.md +265 -0
  84. moai_adk/templates/.claude/skills/moai-alfred-session-state/SKILL.md +19 -0
  85. moai_adk/templates/.claude/skills/moai-alfred-session-state/examples.md +4 -0
  86. moai_adk/templates/.claude/skills/moai-alfred-session-state/reference.md +84 -0
  87. moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/SKILL.md +5 -5
  88. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-extended/SKILL.md +115 -0
  89. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-extended/examples.md +4 -0
  90. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-extended/reference.md +348 -0
  91. moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/SKILL.md +19 -0
  92. moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/examples.md +4 -0
  93. moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/reference.md +211 -0
  94. moai_adk/templates/.claude/skills/moai-alfred-workflow/SKILL.md +288 -0
  95. moai_adk/templates/.claude/skills/moai-cc-skill-descriptions/SKILL.md +19 -0
  96. moai_adk/templates/.claude/skills/moai-cc-skill-descriptions/examples.md +4 -0
  97. moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/SKILL.md +3 -3
  98. moai_adk/templates/.claude/skills/moai-design-systems/SKILL.md +802 -0
  99. moai_adk/templates/.claude/skills/moai-design-systems/examples.md +1238 -0
  100. moai_adk/templates/.claude/skills/moai-design-systems/reference.md +673 -0
  101. moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +17 -13
  102. moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +15 -12
  103. moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +14 -12
  104. moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +14 -11
  105. moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +10 -8
  106. moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +15 -12
  107. moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +13 -11
  108. moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +16 -10
  109. moai_adk/templates/.claude/skills/moai-project-documentation.md +622 -0
  110. moai_adk/templates/.git-hooks/pre-push +143 -0
  111. moai_adk/templates/.github/workflows/c-tag-validation.yml +11 -0
  112. moai_adk/templates/.github/workflows/cpp-tag-validation.yml +11 -0
  113. moai_adk/templates/.github/workflows/csharp-tag-validation.yml +11 -0
  114. moai_adk/templates/.github/workflows/dart-tag-validation.yml +11 -0
  115. moai_adk/templates/.github/workflows/go-tag-validation.yml +130 -0
  116. moai_adk/templates/.github/workflows/java-tag-validation.yml +11 -0
  117. moai_adk/templates/.github/workflows/javascript-tag-validation.yml +135 -0
  118. moai_adk/templates/.github/workflows/kotlin-tag-validation.yml +11 -0
  119. moai_adk/templates/.github/workflows/moai-gitflow.yml +182 -25
  120. moai_adk/templates/.github/workflows/moai-release-pipeline.yml +35 -29
  121. moai_adk/templates/.github/workflows/php-tag-validation.yml +11 -0
  122. moai_adk/templates/.github/workflows/python-tag-validation.yml +118 -0
  123. moai_adk/templates/.github/workflows/release.yml +76 -7
  124. moai_adk/templates/.github/workflows/ruby-tag-validation.yml +11 -0
  125. moai_adk/templates/.github/workflows/rust-tag-validation.yml +11 -0
  126. moai_adk/templates/.github/workflows/shell-tag-validation.yml +11 -0
  127. moai_adk/templates/.github/workflows/spec-issue-sync.yml +208 -41
  128. moai_adk/templates/.github/workflows/swift-tag-validation.yml +11 -0
  129. moai_adk/templates/.github/workflows/tag-report.yml +269 -0
  130. moai_adk/templates/.github/workflows/tag-validation.yml +186 -0
  131. moai_adk/templates/.github/workflows/typescript-tag-validation.yml +154 -0
  132. moai_adk/templates/.moai/config.json +3 -1
  133. moai_adk/templates/CLAUDE.md +940 -45
  134. moai_adk/templates/workflows/go-tag-validation.yml +30 -0
  135. moai_adk/templates/workflows/javascript-tag-validation.yml +41 -0
  136. moai_adk/templates/workflows/python-tag-validation.yml +42 -0
  137. moai_adk/templates/workflows/typescript-tag-validation.yml +31 -0
  138. moai_adk/utils/banner.py +5 -5
  139. {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/METADATA +1166 -455
  140. {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/RECORD +169 -109
  141. moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +0 -209
  142. moai_adk/templates/.claude/hooks/alfred/notification__handle_events.py +0 -102
  143. moai_adk/templates/.claude/hooks/alfred/stop__handle_interrupt.py +0 -102
  144. moai_adk/templates/.claude/hooks/alfred/subagent_stop__handle_subagent_end.py +0 -102
  145. moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +0 -640
  146. moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +0 -696
  147. moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +0 -474
  148. moai_adk/templates/.github/ISSUE_TEMPLATE/spec.yml +0 -176
  149. moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +0 -69
  150. moai_adk/templates/.moai/memory/DEVELOPMENT-GUIDE.md +0 -344
  151. moai_adk/templates/.moai/memory/SPEC-METADATA.md +0 -356
  152. moai_adk/templates/.moai/memory/gitflow-protection-policy.md +0 -330
  153. moai_adk/templates/.moai/project/product.md +0 -161
  154. moai_adk/templates/.moai/project/structure.md +0 -156
  155. moai_adk/templates/.moai/project/tech.md +0 -227
  156. moai_adk/templates/README.md +0 -256
  157. moai_adk/templates/__init__.py +0 -2
  158. /moai_adk/templates/{.moai/memory/ISSUE-LABEL-MAPPING.md → .claude/skills/moai-alfred-issue-labels/reference.md} +0 -0
  159. /moai_adk/templates/{.moai/memory/CLAUDE-PRACTICES.md → .claude/skills/moai-alfred-practices/reference.md} +0 -0
  160. /moai_adk/templates/{.moai/memory/CLAUDE-RULES.md → .claude/skills/moai-alfred-rules/reference.md} +0 -0
  161. /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/README.md +0 -0
  162. /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/examples/validate-spec.sh +0 -0
  163. /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/examples.md +0 -0
  164. /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/reference.md +0 -0
  165. /moai_adk/templates/{.moai/memory/SKILLS-DESCRIPTION-POLICY.md → .claude/skills/moai-cc-skill-descriptions/reference.md} +0 -0
  166. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/CHECKLIST.md +0 -0
  167. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/EXAMPLES.md +0 -0
  168. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/INTERACTIVE-DISCOVERY.md +0 -0
  169. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/METADATA.md +0 -0
  170. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/PARALLEL-ANALYSIS-REPORT.md +0 -0
  171. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/PYTHON-VERSION-MATRIX.md +0 -0
  172. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/SKILL-FACTORY-WORKFLOW.md +0 -0
  173. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/SKILL-UPDATE-ADVISOR.md +0 -0
  174. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/STEP-BY-STEP-GUIDE.md +0 -0
  175. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/STRUCTURE.md +0 -0
  176. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/WEB-RESEARCH.md +0 -0
  177. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/reference.md +0 -0
  178. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/scripts/generate-structure.sh +0 -0
  179. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/scripts/validate-skill.sh +0 -0
  180. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/SKILL_TEMPLATE.md +0 -0
  181. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/examples-template.md +0 -0
  182. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/reference-template.md +0 -0
  183. /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/scripts-template.sh +0 -0
  184. {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/WHEEL +0 -0
  185. {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/entry_points.txt +0 -0
  186. {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: moai-domain-frontend
3
- version: 2.0.0
3
+ version: 2.1.0
4
4
  created: 2025-10-22
5
- updated: 2025-10-22
5
+ updated: 2025-11-02
6
6
  status: active
7
- description: React 19/Vue 3.5/Angular 19 with state management, performance optimization, and accessibility.
8
- keywords: ['react', 'vue', 'angular', 'state', 'accessibility']
7
+ description: React 19/Vue 3.5/Angular 19 with state management, performance optimization, accessibility, and meta-frameworks (Nuxt, SvelteKit, Astro, SolidJS).
8
+ keywords: ['react', 'vue', 'angular', 'state', 'accessibility', 'nuxt', 'sveltekit', 'astro', 'solidjs']
9
9
  allowed-tools:
10
10
  - Read
11
11
  - Bash
@@ -18,7 +18,7 @@ allowed-tools:
18
18
  | Field | Value |
19
19
  | ----- | ----- |
20
20
  | **Skill Name** | moai-domain-frontend |
21
- | **Version** | 2.0.0 (2025-10-22) |
21
+ | **Version** | 2.1.0 (2025-11-02) |
22
22
  | **Allowed tools** | Read (read_file), Bash (terminal) |
23
23
  | **Auto-load** | On demand when keywords detected |
24
24
  | **Tier** | Domain |
@@ -27,13 +27,14 @@ allowed-tools:
27
27
 
28
28
  ## What It Does
29
29
 
30
- React 19/Vue 3.5/Angular 19 with state management, performance optimization, and accessibility.
30
+ React 19/Vue 3.5/Angular 19 with state management, performance optimization, accessibility, and meta-frameworks (Nuxt, SvelteKit, Astro, SolidJS).
31
31
 
32
32
  **Key capabilities**:
33
- - ✅ Best practices enforcement for domain domain
33
+ - ✅ Best practices enforcement for frontend domain
34
34
  - ✅ TRUST 5 principles integration
35
- - ✅ Latest tool versions (2025-10-22)
35
+ - ✅ Latest tool versions (2025-11-02)
36
36
  - ✅ TDD workflow support
37
+ - ✅ Meta-framework patterns (Nuxt, SvelteKit, Astro)
37
38
 
38
39
  ---
39
40
 
@@ -51,14 +52,17 @@ React 19/Vue 3.5/Angular 19 with state management, performance optimization, and
51
52
 
52
53
  ---
53
54
 
54
- ## Tool Version Matrix (2025-10-22)
55
+ ## Tool Version Matrix (2025-11-02)
55
56
 
56
57
  | Tool | Version | Purpose | Status |
57
58
  |------|---------|---------|--------|
58
- | **React** | 19.0.0 | Primary | ✅ Current |
59
- | **Vue** | 3.5.13 | Primary | ✅ Current |
60
- | **Angular** | 19.0.0 | Primary | ✅ Current |
61
- | **Vite** | 6.0.5 | Primary | ✅ Current |
59
+ | **React** | 19.0.0 | UI Library | ✅ Current |
60
+ | **Vue** | 3.5.13 | UI Framework | ✅ Current |
61
+ | **Angular** | 19.0.0 | UI Framework | ✅ Current |
62
+ | **Svelte** | 4.2+ | UI Framework | ✅ Current |
63
+ | **SolidJS** | 1.2.0 | UI Library | ✅ Current |
64
+ | **Vite** | 6.0.5 | Build tool | ✅ Current |
65
+ | **Astro** | 5.15.3 | Static site gen | ✅ Current |
62
66
 
63
67
  ---
64
68
 
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: moai-lang-go
3
- version: 2.0.0
3
+ version: 2.1.0
4
4
  created: 2025-10-22
5
- updated: 2025-10-22
5
+ updated: 2025-11-02
6
6
  status: active
7
- description: Go 1.24+ best practices with go test, golangci-lint, gofmt, and standard library utilization.
8
- keywords: ['go', 'golang', 'testing', 'golangci-lint', 'gofmt']
7
+ description: Go 1.24+ best practices with go test, golangci-lint, gofmt, standard library utilization, and web frameworks (Gin, Beego).
8
+ keywords: ['go', 'golang', 'testing', 'golangci-lint', 'gofmt', 'gin', 'beego']
9
9
  allowed-tools:
10
10
  - Read
11
11
  - Bash
@@ -18,7 +18,7 @@ allowed-tools:
18
18
  | Field | Value |
19
19
  | ----- | ----- |
20
20
  | **Skill Name** | moai-lang-go |
21
- | **Version** | 2.0.0 (2025-10-22) |
21
+ | **Version** | 2.1.0 (2025-11-02) |
22
22
  | **Allowed tools** | Read (read_file), Bash (terminal) |
23
23
  | **Auto-load** | On demand when keywords detected |
24
24
  | **Tier** | Language |
@@ -27,13 +27,14 @@ allowed-tools:
27
27
 
28
28
  ## What It Does
29
29
 
30
- Go 1.24+ best practices with go test, golangci-lint, gofmt, and standard library utilization.
30
+ Go 1.24+ best practices with go test, golangci-lint, gofmt, standard library utilization, and web frameworks (Gin, Beego).
31
31
 
32
32
  **Key capabilities**:
33
33
  - ✅ Best practices enforcement for language domain
34
34
  - ✅ TRUST 5 principles integration
35
- - ✅ Latest tool versions (2025-10-22)
35
+ - ✅ Latest tool versions (2025-11-02)
36
36
  - ✅ TDD workflow support
37
+ - ✅ Web framework patterns (Gin, Beego)
37
38
 
38
39
  ---
39
40
 
@@ -51,14 +52,16 @@ Go 1.24+ best practices with go test, golangci-lint, gofmt, and standard library
51
52
 
52
53
  ---
53
54
 
54
- ## Tool Version Matrix (2025-10-22)
55
+ ## Tool Version Matrix (2025-11-02)
55
56
 
56
57
  | Tool | Version | Purpose | Status |
57
58
  |------|---------|---------|--------|
58
- | **Go** | 1.24.0 | Primary | ✅ Current |
59
- | **golangci-lint** | 1.62.2 | Primary | ✅ Current |
60
- | **gofmt** | 1.24.0 | Primary | ✅ Current |
61
- | **gotestsum** | 1.12.0 | Primary | ✅ Current |
59
+ | **Go** | 1.24.0 | Runtime | ✅ Current |
60
+ | **golangci-lint** | 1.62.2 | Linter | ✅ Current |
61
+ | **gofmt** | 1.24.0 | Formatter | ✅ Current |
62
+ | **gotestsum** | 1.12.0 | Test runner | ✅ Current |
63
+ | **Gin** | 1.11.0 | Web framework | ✅ Current |
64
+ | **Beego** | 2.x | Web framework | ✅ Current |
62
65
 
63
66
  ---
64
67
 
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: moai-lang-java
3
- version: 2.0.0
3
+ version: 2.1.0
4
4
  created: 2025-10-22
5
- updated: 2025-10-22
5
+ updated: 2025-11-02
6
6
  status: active
7
- description: Java 23+ best practices with JUnit 5, Maven/Gradle, CheckStyle, and modern patterns.
8
- keywords: ['java', 'junit', 'maven', 'gradle', 'checkstyle']
7
+ description: Java 23+ best practices with JUnit 5, Maven/Gradle, CheckStyle, modern patterns, and Spring Boot.
8
+ keywords: ['java', 'junit', 'maven', 'gradle', 'checkstyle', 'spring-boot']
9
9
  allowed-tools:
10
10
  - Read
11
11
  - Bash
@@ -18,7 +18,7 @@ allowed-tools:
18
18
  | Field | Value |
19
19
  | ----- | ----- |
20
20
  | **Skill Name** | moai-lang-java |
21
- | **Version** | 2.0.0 (2025-10-22) |
21
+ | **Version** | 2.1.0 (2025-11-02) |
22
22
  | **Allowed tools** | Read (read_file), Bash (terminal) |
23
23
  | **Auto-load** | On demand when keywords detected |
24
24
  | **Tier** | Language |
@@ -27,13 +27,14 @@ allowed-tools:
27
27
 
28
28
  ## What It Does
29
29
 
30
- Java 23+ best practices with JUnit 5, Maven/Gradle, CheckStyle, and modern patterns.
30
+ Java 23+ best practices with JUnit 5, Maven/Gradle, CheckStyle, modern patterns, and Spring Boot.
31
31
 
32
32
  **Key capabilities**:
33
33
  - ✅ Best practices enforcement for language domain
34
34
  - ✅ TRUST 5 principles integration
35
- - ✅ Latest tool versions (2025-10-22)
35
+ - ✅ Latest tool versions (2025-11-02)
36
36
  - ✅ TDD workflow support
37
+ - ✅ Spring Boot enterprise framework patterns
37
38
 
38
39
  ---
39
40
 
@@ -51,14 +52,15 @@ Java 23+ best practices with JUnit 5, Maven/Gradle, CheckStyle, and modern patte
51
52
 
52
53
  ---
53
54
 
54
- ## Tool Version Matrix (2025-10-22)
55
+ ## Tool Version Matrix (2025-11-02)
55
56
 
56
57
  | Tool | Version | Purpose | Status |
57
58
  |------|---------|---------|--------|
58
- | **Java** | 23.0.0 | Primary | ✅ Current |
59
- | **JUnit** | 5.11.0 | Primary | ✅ Current |
60
- | **Maven** | 3.9.9 | Primary | ✅ Current |
61
- | **Gradle** | 8.12.0 | Primary | ✅ Current |
59
+ | **Java** | 23.0.0 | Runtime | ✅ Current |
60
+ | **JUnit** | 5.11.0 | Testing | ✅ Current |
61
+ | **Maven** | 3.9.9 | Build tool | ✅ Current |
62
+ | **Gradle** | 8.12.0 | Build tool | ✅ Current |
63
+ | **Spring Boot** | 3.5.7 | Enterprise framework | ✅ Current |
62
64
 
63
65
  ---
64
66
 
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: moai-lang-php
3
- version: 2.0.0
3
+ version: 2.1.0
4
4
  created: 2025-10-22
5
- updated: 2025-10-22
5
+ updated: 2025-11-02
6
6
  status: active
7
- description: PHP 8.4+ best practices with PHPUnit 11, Composer, and PSR-12 standards.
8
- keywords: ['php', 'phpunit', 'composer', 'psr']
7
+ description: PHP 8.4+ best practices with PHPUnit 11, Composer, PSR-12 standards, and web frameworks (Laravel, Symfony).
8
+ keywords: ['php', 'phpunit', 'composer', 'psr', 'laravel', 'symfony']
9
9
  allowed-tools:
10
10
  - Read
11
11
  - Bash
@@ -18,7 +18,7 @@ allowed-tools:
18
18
  | Field | Value |
19
19
  | ----- | ----- |
20
20
  | **Skill Name** | moai-lang-php |
21
- | **Version** | 2.0.0 (2025-10-22) |
21
+ | **Version** | 2.1.0 (2025-11-02) |
22
22
  | **Allowed tools** | Read (read_file), Bash (terminal) |
23
23
  | **Auto-load** | On demand when keywords detected |
24
24
  | **Tier** | Language |
@@ -27,13 +27,14 @@ allowed-tools:
27
27
 
28
28
  ## What It Does
29
29
 
30
- PHP 8.4+ best practices with PHPUnit 11, Composer, and PSR-12 standards.
30
+ PHP 8.4+ best practices with PHPUnit 11, Composer, PSR-12 standards, and web frameworks (Laravel, Symfony).
31
31
 
32
32
  **Key capabilities**:
33
33
  - ✅ Best practices enforcement for language domain
34
34
  - ✅ TRUST 5 principles integration
35
- - ✅ Latest tool versions (2025-10-22)
35
+ - ✅ Latest tool versions (2025-11-02)
36
36
  - ✅ TDD workflow support
37
+ - ✅ Web framework patterns (Laravel, Symfony)
37
38
 
38
39
  ---
39
40
 
@@ -51,13 +52,15 @@ PHP 8.4+ best practices with PHPUnit 11, Composer, and PSR-12 standards.
51
52
 
52
53
  ---
53
54
 
54
- ## Tool Version Matrix (2025-10-22)
55
+ ## Tool Version Matrix (2025-11-02)
55
56
 
56
57
  | Tool | Version | Purpose | Status |
57
58
  |------|---------|---------|--------|
58
- | **PHP** | 8.4.0 | Primary | ✅ Current |
59
- | **PHPUnit** | 11.5.0 | Primary | ✅ Current |
60
- | **Composer** | 2.8.0 | Primary | ✅ Current |
59
+ | **PHP** | 8.4.0 | Runtime | ✅ Current |
60
+ | **PHPUnit** | 11.5.0 | Testing | ✅ Current |
61
+ | **Composer** | 2.8.0 | Package manager | ✅ Current |
62
+ | **Laravel** | 12.0.0 | Web framework | ✅ Current |
63
+ | **Symfony** | 7.3.5 | Web framework | ✅ Current |
61
64
 
62
65
  ---
63
66
 
@@ -1,12 +1,12 @@
1
1
  ---
2
2
 
3
3
  name: moai-lang-python
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  created: 2025-10-22
6
- updated: 2025-10-22
6
+ updated: 2025-11-02
7
7
  status: active
8
- description: Python 3.13+ best practices with pytest 8.4.2, mypy 1.8.0, ruff 0.13.1, and uv 0.9.3. Use when writing or reviewing Python code in project workflows.
9
- keywords: [python, testing, pytest, mypy, ruff, uv, async, fastapi, pydantic]
8
+ description: Python 3.13+ best practices with pytest 8.4.2, mypy 1.8.0, ruff 0.13.1, uv 0.9.3, and backend frameworks (FastAPI, Flask, Django).
9
+ keywords: [python, testing, pytest, mypy, ruff, uv, async, fastapi, flask, django, pydantic]
10
10
  allowed-tools:
11
11
  - Read
12
12
  - Bash
@@ -19,12 +19,12 @@ allowed-tools:
19
19
  | Field | Value |
20
20
  | ----- | ----- |
21
21
  | **Skill Name** | moai-lang-python |
22
- | **Version** | 2.0.0 (2025-10-22) |
22
+ | **Version** | 2.1.0 (2025-11-02) |
23
23
  | **Python Support** | 3.13.1 (latest), 3.12.7 (LTS), 3.11.10 (maintenance) |
24
24
  | **Allowed tools** | Read (read_file), Bash (terminal) |
25
25
  | **Auto-load** | On demand when language keywords detected |
26
26
  | **Trigger cues** | `.py` files, Python frameworks, TDD discussions, async patterns |
27
- | **Tier** | Language / 23 (comprehensive coverage) |
27
+ | **Tier** | Language / Fullstack backends (FastAPI, Flask, Django) |
28
28
 
29
29
  ---
30
30
 
@@ -318,7 +318,7 @@ mypy --strict . # Type check pass?
318
318
 
319
319
  ---
320
320
 
321
- ## Tool Version Matrix (2025-10-22)
321
+ ## Tool Version Matrix (2025-11-02)
322
322
 
323
323
  | Tool | Version | Purpose | Status |
324
324
  |------|---------|---------|--------|
@@ -327,7 +327,9 @@ mypy --strict . # Type check pass?
327
327
  | **ruff** | 0.13.1 | Lint/Format | ✅ New standard |
328
328
  | **mypy** | 1.8.0 | Type checking | ✅ Current |
329
329
  | **uv** | 0.9.3 | Package manager | ✅ Recommended |
330
- | **FastAPI** | 0.115.0 | Web framework | ✅ Latest |
330
+ | **FastAPI** | 0.115.0 | API framework | ✅ Latest |
331
+ | **Flask** | 3.1.2 | Micro-framework | ✅ Current |
332
+ | **Django** | 5.2.7 LTS | Fullstack framework | ✅ LTS |
331
333
  | **Pydantic** | 2.7.0 | Validation | ✅ Latest |
332
334
  | **SQLAlchemy** | 2.0.28 | ORM | ✅ Latest |
333
335
 
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: moai-lang-rust
3
- version: 2.0.0
3
+ version: 2.1.0
4
4
  created: 2025-10-22
5
- updated: 2025-10-22
5
+ updated: 2025-11-02
6
6
  status: active
7
- description: Rust 1.84+ best practices with cargo test, clippy, rustfmt, and ownership/borrow checker mastery.
8
- keywords: ['rust', 'testing', 'cargo', 'clippy', 'rustfmt', 'ownership']
7
+ description: Rust 1.84+ best practices with cargo test, clippy, rustfmt, ownership/borrow checker mastery, and web frameworks (Axum, Rocket).
8
+ keywords: ['rust', 'testing', 'cargo', 'clippy', 'rustfmt', 'ownership', 'axum', 'rocket']
9
9
  allowed-tools:
10
10
  - Read
11
11
  - Bash
@@ -18,7 +18,7 @@ allowed-tools:
18
18
  | Field | Value |
19
19
  | ----- | ----- |
20
20
  | **Skill Name** | moai-lang-rust |
21
- | **Version** | 2.0.0 (2025-10-22) |
21
+ | **Version** | 2.1.0 (2025-11-02) |
22
22
  | **Allowed tools** | Read (read_file), Bash (terminal) |
23
23
  | **Auto-load** | On demand when keywords detected |
24
24
  | **Tier** | Language |
@@ -27,13 +27,14 @@ allowed-tools:
27
27
 
28
28
  ## What It Does
29
29
 
30
- Rust 1.84+ best practices with cargo test, clippy, rustfmt, and ownership/borrow checker mastery.
30
+ Rust 1.84+ best practices with cargo test, clippy, rustfmt, ownership/borrow checker mastery, and web frameworks (Axum, Rocket).
31
31
 
32
32
  **Key capabilities**:
33
33
  - ✅ Best practices enforcement for language domain
34
34
  - ✅ TRUST 5 principles integration
35
- - ✅ Latest tool versions (2025-10-22)
35
+ - ✅ Latest tool versions (2025-11-02)
36
36
  - ✅ TDD workflow support
37
+ - ✅ Web framework patterns (Axum, Rocket)
37
38
 
38
39
  ---
39
40
 
@@ -51,14 +52,16 @@ Rust 1.84+ best practices with cargo test, clippy, rustfmt, and ownership/borrow
51
52
 
52
53
  ---
53
54
 
54
- ## Tool Version Matrix (2025-10-22)
55
+ ## Tool Version Matrix (2025-11-02)
55
56
 
56
57
  | Tool | Version | Purpose | Status |
57
58
  |------|---------|---------|--------|
58
- | **Rust** | 1.84.0 | Primary | ✅ Current |
59
- | **cargo** | 1.84.0 | Primary | ✅ Current |
60
- | **clippy** | 1.84.0 | Primary | ✅ Current |
61
- | **rustfmt** | 1.84.0 | Primary | ✅ Current |
59
+ | **Rust** | 1.84.0 | Runtime | ✅ Current |
60
+ | **cargo** | 1.84.0 | Package manager | ✅ Current |
61
+ | **clippy** | 1.84.0 | Linter | ✅ Current |
62
+ | **rustfmt** | 1.84.0 | Formatter | ✅ Current |
63
+ | **Axum** | 0.8.6 | Web framework | ✅ Current |
64
+ | **Rocket** | 0.5.0 | Web framework | ✅ Current |
62
65
 
63
66
  ---
64
67
 
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: moai-lang-scala
3
- version: 2.0.0
3
+ version: 2.1.0
4
4
  created: 2025-10-22
5
- updated: 2025-10-22
5
+ updated: 2025-11-02
6
6
  status: active
7
- description: Scala 3.6+ best practices with ScalaTest 3.2, sbt 1.10, and functional programming patterns.
8
- keywords: ['scala', 'scalatest', 'sbt', 'functional']
7
+ description: Scala 3.6+ best practices with ScalaTest 3.2, sbt 1.10, functional programming patterns, and Play Framework.
8
+ keywords: ['scala', 'scalatest', 'sbt', 'functional', 'play-framework']
9
9
  allowed-tools:
10
10
  - Read
11
11
  - Bash
@@ -18,7 +18,7 @@ allowed-tools:
18
18
  | Field | Value |
19
19
  | ----- | ----- |
20
20
  | **Skill Name** | moai-lang-scala |
21
- | **Version** | 2.0.0 (2025-10-22) |
21
+ | **Version** | 2.1.0 (2025-11-02) |
22
22
  | **Allowed tools** | Read (read_file), Bash (terminal) |
23
23
  | **Auto-load** | On demand when keywords detected |
24
24
  | **Tier** | Language |
@@ -27,13 +27,14 @@ allowed-tools:
27
27
 
28
28
  ## What It Does
29
29
 
30
- Scala 3.6+ best practices with ScalaTest 3.2, sbt 1.10, and functional programming patterns.
30
+ Scala 3.6+ best practices with ScalaTest 3.2, sbt 1.10, functional programming patterns, and Play Framework.
31
31
 
32
32
  **Key capabilities**:
33
33
  - ✅ Best practices enforcement for language domain
34
34
  - ✅ TRUST 5 principles integration
35
- - ✅ Latest tool versions (2025-10-22)
35
+ - ✅ Latest tool versions (2025-11-02)
36
36
  - ✅ TDD workflow support
37
+ - ✅ Play Framework web application patterns
37
38
 
38
39
  ---
39
40
 
@@ -51,13 +52,14 @@ Scala 3.6+ best practices with ScalaTest 3.2, sbt 1.10, and functional programmi
51
52
 
52
53
  ---
53
54
 
54
- ## Tool Version Matrix (2025-10-22)
55
+ ## Tool Version Matrix (2025-11-02)
55
56
 
56
57
  | Tool | Version | Purpose | Status |
57
58
  |------|---------|---------|--------|
58
- | **Scala** | 3.6.0 | Primary | ✅ Current |
59
- | **ScalaTest** | 3.2.19 | Primary | ✅ Current |
60
- | **sbt** | 1.10.0 | Primary | ✅ Current |
59
+ | **Scala** | 3.6.0 | Runtime | ✅ Current |
60
+ | **ScalaTest** | 3.2.19 | Testing | ✅ Current |
61
+ | **sbt** | 1.10.0 | Build tool | ✅ Current |
62
+ | **Play Framework** | 3.0.9 | Web framework | ✅ Current |
61
63
 
62
64
  ---
63
65
 
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: moai-lang-typescript
3
- version: 2.0.0
3
+ version: 2.1.0
4
4
  created: 2025-10-22
5
- updated: 2025-10-22
5
+ updated: 2025-11-02
6
6
  status: active
7
- description: TypeScript 5.7+ best practices with Vitest 2.1, Biome 1.9, strict typing, and npm/pnpm/bun package management.
8
- keywords: ['typescript', 'testing', 'vitest', 'biome', 'types', 'react', 'nextjs']
7
+ description: TypeScript 5.7+ best practices with Vitest 2.1, Biome 1.9, strict typing, npm/pnpm/bun package management, and fullstack meta-frameworks (Next.js, Remix, etc.).
8
+ keywords: ['typescript', 'testing', 'vitest', 'biome', 'types', 'nextjs', 'remix', 'express', 'fastify', 'nestjs', 'sails']
9
9
  allowed-tools:
10
10
  - Read
11
11
  - Bash
@@ -18,7 +18,7 @@ allowed-tools:
18
18
  | Field | Value |
19
19
  | ----- | ----- |
20
20
  | **Skill Name** | moai-lang-typescript |
21
- | **Version** | 2.0.0 (2025-10-22) |
21
+ | **Version** | 2.1.0 (2025-11-02) |
22
22
  | **Allowed tools** | Read (read_file), Bash (terminal) |
23
23
  | **Auto-load** | On demand when keywords detected |
24
24
  | **Tier** | Language |
@@ -27,13 +27,14 @@ allowed-tools:
27
27
 
28
28
  ## What It Does
29
29
 
30
- TypeScript 5.7+ best practices with Vitest 2.1, Biome 1.9, strict typing, and npm/pnpm/bun package management.
30
+ TypeScript 5.7+ best practices with Vitest 2.1, Biome 1.9, strict typing, npm/pnpm/bun package management, and fullstack meta-frameworks (Next.js, Remix, Express, Fastify, NestJS, Sails).
31
31
 
32
32
  **Key capabilities**:
33
33
  - ✅ Best practices enforcement for language domain
34
34
  - ✅ TRUST 5 principles integration
35
- - ✅ Latest tool versions (2025-10-22)
35
+ - ✅ Latest tool versions (2025-11-02)
36
36
  - ✅ TDD workflow support
37
+ - ✅ Fullstack meta-framework patterns (Next.js, Remix)
37
38
 
38
39
  ---
39
40
 
@@ -51,7 +52,7 @@ TypeScript 5.7+ best practices with Vitest 2.1, Biome 1.9, strict typing, and np
51
52
 
52
53
  ---
53
54
 
54
- ## Tool Version Matrix (2025-10-22)
55
+ ## Tool Version Matrix (2025-11-02)
55
56
 
56
57
  | Tool | Version | Purpose | Status |
57
58
  |------|---------|---------|--------|
@@ -60,8 +61,13 @@ TypeScript 5.7+ best practices with Vitest 2.1, Biome 1.9, strict typing, and np
60
61
  | **Biome** | 1.9.4 | Primary | ✅ Current |
61
62
  | **Bun** | 1.1.0 | Primary | ✅ Current |
62
63
  | **pnpm** | 9.14.2 | Primary | ✅ Current |
63
- | **React** | 19.0.0 | Primary | ✅ Current |
64
- | **Next.js** | 15.1.0 | Primary | ✅ Current |
64
+ | **npm** | 11.0+ | Primary | ✅ Current |
65
+ | **Next.js** | 15.1.0 | Meta-framework | ✅ Current |
66
+ | **Remix** | 2.17.0 | Meta-framework | ✅ Current |
67
+ | **Express.js** | 5.1.0 | Web framework | ✅ Current |
68
+ | **Fastify** | 5.3.2 | Web framework | ✅ Current |
69
+ | **NestJS** | 11.1.8 | Enterprise framework | ✅ Current |
70
+ | **Sails.js** | 1.5.15 | MVC framework | ✅ Current |
65
71
 
66
72
  ---
67
73