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.
- moai_adk/cli/commands/init.py +14 -2
- moai_adk/cli/commands/update.py +214 -56
- moai_adk/core/issue_creator.py +2 -2
- moai_adk/core/project/detector.py +201 -12
- moai_adk/core/project/initializer.py +62 -1
- moai_adk/core/project/phase_executor.py +48 -6
- moai_adk/core/tags/ci_validator.py +34 -4
- moai_adk/core/tags/pre_commit_validator.py +40 -2
- moai_adk/core/tags/reporter.py +2 -3
- moai_adk/core/tags/validator.py +1 -1
- moai_adk/core/template_engine.py +20 -5
- moai_adk/templates/.claude/agents/alfred/backend-expert.md +319 -0
- moai_adk/templates/.claude/agents/alfred/devops-expert.md +464 -0
- moai_adk/templates/.claude/agents/alfred/doc-syncer.md +1 -1
- moai_adk/templates/.claude/agents/alfred/frontend-expert.md +357 -0
- moai_adk/templates/.claude/agents/alfred/git-manager.md +2 -2
- moai_adk/templates/.claude/agents/alfred/implementation-planner.md +76 -3
- moai_adk/templates/.claude/agents/alfred/project-manager.md +49 -10
- moai_adk/templates/.claude/agents/alfred/quality-gate.md +3 -3
- moai_adk/templates/.claude/agents/alfred/spec-builder.md +108 -3
- moai_adk/templates/.claude/agents/alfred/tag-agent.md +74 -0
- moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +107 -5
- moai_adk/templates/.claude/agents/alfred/trust-checker.md +2 -2
- moai_adk/templates/.claude/agents/alfred/ui-ux-expert.md +571 -0
- moai_adk/templates/.claude/commands/alfred/0-project.md +465 -129
- moai_adk/templates/.claude/commands/alfred/1-plan.md +139 -65
- moai_adk/templates/.claude/commands/alfred/2-run.md +214 -50
- moai_adk/templates/.claude/commands/alfred/3-sync.md +372 -46
- moai_adk/templates/.claude/commands/alfred/9-feedback.md +1 -1
- moai_adk/templates/.claude/hooks/alfred/core/project.py +25 -27
- moai_adk/templates/.claude/hooks/alfred/core/timeout.py +136 -0
- moai_adk/templates/.claude/hooks/alfred/core/ttl_cache.py +108 -0
- moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +4 -4
- moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +29 -0
- moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py +11 -19
- moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py +11 -19
- moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py +11 -19
- moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py +10 -18
- moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py +2 -2
- moai_adk/templates/.claude/hooks/alfred/shared/core/checkpoint.py +3 -3
- moai_adk/templates/.claude/hooks/alfred/shared/core/context.py +5 -5
- moai_adk/templates/.claude/hooks/alfred/shared/core/project.py +40 -41
- moai_adk/templates/.claude/hooks/alfred/shared/core/tags.py +55 -23
- moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +4 -4
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py +132 -3
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py +9 -10
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/tool.py +3 -6
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/user.py +19 -0
- moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py +14 -22
- moai_adk/templates/.claude/hooks/alfred/utils/__init__.py +1 -0
- moai_adk/templates/.claude/hooks/alfred/utils/timeout.py +161 -0
- moai_adk/templates/.claude/settings.json +5 -5
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/SKILL.md +70 -0
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/examples.md +62 -0
- moai_adk/templates/{.moai/memory/CLAUDE-AGENTS-GUIDE.md → .claude/skills/moai-alfred-agent-guide/reference.md} +34 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/SKILL.md +56 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/examples.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/reference.md +444 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/SKILL.md +62 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/examples.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/reference.md +405 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/SKILL.md +51 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/examples.md +355 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/reference.md +239 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/SKILL.md +323 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/examples.md +286 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/reference.md +126 -0
- moai_adk/templates/.claude/skills/moai-alfred-gitflow-policy/SKILL.md +74 -0
- moai_adk/templates/.claude/skills/moai-alfred-gitflow-policy/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-gitflow-policy/reference.md +269 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/SKILL.md +19 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-persona-roles/SKILL.md +198 -0
- moai_adk/templates/.claude/skills/moai-alfred-persona-roles/examples.md +431 -0
- moai_adk/templates/.claude/skills/moai-alfred-persona-roles/reference.md +141 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/SKILL.md +89 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/examples.md +122 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/SKILL.md +508 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/examples.md +481 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/reference.md +100 -0
- moai_adk/templates/.claude/skills/moai-alfred-reporting/SKILL.md +273 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/SKILL.md +77 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/examples.md +265 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/SKILL.md +19 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/reference.md +84 -0
- moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/SKILL.md +5 -5
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-extended/SKILL.md +115 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-extended/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-extended/reference.md +348 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/SKILL.md +19 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/reference.md +211 -0
- moai_adk/templates/.claude/skills/moai-alfred-workflow/SKILL.md +288 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-descriptions/SKILL.md +19 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-descriptions/examples.md +4 -0
- moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/SKILL.md +3 -3
- moai_adk/templates/.claude/skills/moai-design-systems/SKILL.md +802 -0
- moai_adk/templates/.claude/skills/moai-design-systems/examples.md +1238 -0
- moai_adk/templates/.claude/skills/moai-design-systems/reference.md +673 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +17 -13
- moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +15 -12
- moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +14 -12
- moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +14 -11
- moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +10 -8
- moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +15 -12
- moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +13 -11
- moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +16 -10
- moai_adk/templates/.claude/skills/moai-project-documentation.md +622 -0
- moai_adk/templates/.git-hooks/pre-push +143 -0
- moai_adk/templates/.github/workflows/c-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/cpp-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/csharp-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/dart-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/go-tag-validation.yml +130 -0
- moai_adk/templates/.github/workflows/java-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/javascript-tag-validation.yml +135 -0
- moai_adk/templates/.github/workflows/kotlin-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/moai-gitflow.yml +182 -25
- moai_adk/templates/.github/workflows/moai-release-pipeline.yml +35 -29
- moai_adk/templates/.github/workflows/php-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/python-tag-validation.yml +118 -0
- moai_adk/templates/.github/workflows/release.yml +76 -7
- moai_adk/templates/.github/workflows/ruby-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/rust-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/shell-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/spec-issue-sync.yml +208 -41
- moai_adk/templates/.github/workflows/swift-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/tag-report.yml +269 -0
- moai_adk/templates/.github/workflows/tag-validation.yml +186 -0
- moai_adk/templates/.github/workflows/typescript-tag-validation.yml +154 -0
- moai_adk/templates/.moai/config.json +3 -1
- moai_adk/templates/CLAUDE.md +940 -45
- moai_adk/templates/workflows/go-tag-validation.yml +30 -0
- moai_adk/templates/workflows/javascript-tag-validation.yml +41 -0
- moai_adk/templates/workflows/python-tag-validation.yml +42 -0
- moai_adk/templates/workflows/typescript-tag-validation.yml +31 -0
- moai_adk/utils/banner.py +5 -5
- {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/METADATA +1166 -455
- {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/RECORD +169 -109
- moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +0 -209
- moai_adk/templates/.claude/hooks/alfred/notification__handle_events.py +0 -102
- moai_adk/templates/.claude/hooks/alfred/stop__handle_interrupt.py +0 -102
- moai_adk/templates/.claude/hooks/alfred/subagent_stop__handle_subagent_end.py +0 -102
- moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +0 -640
- moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +0 -696
- moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +0 -474
- moai_adk/templates/.github/ISSUE_TEMPLATE/spec.yml +0 -176
- moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +0 -69
- moai_adk/templates/.moai/memory/DEVELOPMENT-GUIDE.md +0 -344
- moai_adk/templates/.moai/memory/SPEC-METADATA.md +0 -356
- moai_adk/templates/.moai/memory/gitflow-protection-policy.md +0 -330
- moai_adk/templates/.moai/project/product.md +0 -161
- moai_adk/templates/.moai/project/structure.md +0 -156
- moai_adk/templates/.moai/project/tech.md +0 -227
- moai_adk/templates/README.md +0 -256
- moai_adk/templates/__init__.py +0 -2
- /moai_adk/templates/{.moai/memory/ISSUE-LABEL-MAPPING.md → .claude/skills/moai-alfred-issue-labels/reference.md} +0 -0
- /moai_adk/templates/{.moai/memory/CLAUDE-PRACTICES.md → .claude/skills/moai-alfred-practices/reference.md} +0 -0
- /moai_adk/templates/{.moai/memory/CLAUDE-RULES.md → .claude/skills/moai-alfred-rules/reference.md} +0 -0
- /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/README.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/examples/validate-spec.sh +0 -0
- /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/examples.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-spec-authoring → moai-alfred-spec-authoring}/reference.md +0 -0
- /moai_adk/templates/{.moai/memory/SKILLS-DESCRIPTION-POLICY.md → .claude/skills/moai-cc-skill-descriptions/reference.md} +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/CHECKLIST.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/EXAMPLES.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/INTERACTIVE-DISCOVERY.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/METADATA.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/PARALLEL-ANALYSIS-REPORT.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/PYTHON-VERSION-MATRIX.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/SKILL-FACTORY-WORKFLOW.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/SKILL-UPDATE-ADVISOR.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/STEP-BY-STEP-GUIDE.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/STRUCTURE.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/WEB-RESEARCH.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/reference.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/scripts/generate-structure.sh +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/scripts/validate-skill.sh +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/SKILL_TEMPLATE.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/examples-template.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/reference-template.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-skill-factory → moai-cc-skill-factory}/templates/scripts-template.sh +0 -0
- {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/WHEEL +0 -0
- {moai_adk-0.9.0.dist-info → moai_adk-0.15.0.dist-info}/entry_points.txt +0 -0
- {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.
|
|
3
|
+
version: 2.1.0
|
|
4
4
|
created: 2025-10-22
|
|
5
|
-
updated: 2025-
|
|
5
|
+
updated: 2025-11-02
|
|
6
6
|
status: active
|
|
7
|
-
description: React 19/Vue 3.5/Angular 19 with state management, performance optimization, and
|
|
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.
|
|
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
|
|
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
|
|
33
|
+
- ✅ Best practices enforcement for frontend domain
|
|
34
34
|
- ✅ TRUST 5 principles integration
|
|
35
|
-
- ✅ Latest tool versions (2025-
|
|
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-
|
|
55
|
+
## Tool Version Matrix (2025-11-02)
|
|
55
56
|
|
|
56
57
|
| Tool | Version | Purpose | Status |
|
|
57
58
|
|------|---------|---------|--------|
|
|
58
|
-
| **React** | 19.0.0 |
|
|
59
|
-
| **Vue** | 3.5.13 |
|
|
60
|
-
| **Angular** | 19.0.0 |
|
|
61
|
-
| **
|
|
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.
|
|
3
|
+
version: 2.1.0
|
|
4
4
|
created: 2025-10-22
|
|
5
|
-
updated: 2025-
|
|
5
|
+
updated: 2025-11-02
|
|
6
6
|
status: active
|
|
7
|
-
description: Go 1.24+ best practices with go test, golangci-lint, gofmt,
|
|
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.
|
|
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,
|
|
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-
|
|
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-
|
|
55
|
+
## Tool Version Matrix (2025-11-02)
|
|
55
56
|
|
|
56
57
|
| Tool | Version | Purpose | Status |
|
|
57
58
|
|------|---------|---------|--------|
|
|
58
|
-
| **Go** | 1.24.0 |
|
|
59
|
-
| **golangci-lint** | 1.62.2 |
|
|
60
|
-
| **gofmt** | 1.24.0 |
|
|
61
|
-
| **gotestsum** | 1.12.0 |
|
|
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.
|
|
3
|
+
version: 2.1.0
|
|
4
4
|
created: 2025-10-22
|
|
5
|
-
updated: 2025-
|
|
5
|
+
updated: 2025-11-02
|
|
6
6
|
status: active
|
|
7
|
-
description: Java 23+ best practices with JUnit 5, Maven/Gradle, CheckStyle, and
|
|
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.
|
|
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
|
|
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-
|
|
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-
|
|
55
|
+
## Tool Version Matrix (2025-11-02)
|
|
55
56
|
|
|
56
57
|
| Tool | Version | Purpose | Status |
|
|
57
58
|
|------|---------|---------|--------|
|
|
58
|
-
| **Java** | 23.0.0 |
|
|
59
|
-
| **JUnit** | 5.11.0 |
|
|
60
|
-
| **Maven** | 3.9.9 |
|
|
61
|
-
| **Gradle** | 8.12.0 |
|
|
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.
|
|
3
|
+
version: 2.1.0
|
|
4
4
|
created: 2025-10-22
|
|
5
|
-
updated: 2025-
|
|
5
|
+
updated: 2025-11-02
|
|
6
6
|
status: active
|
|
7
|
-
description: PHP 8.4+ best practices with PHPUnit 11, Composer,
|
|
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.
|
|
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,
|
|
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-
|
|
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-
|
|
55
|
+
## Tool Version Matrix (2025-11-02)
|
|
55
56
|
|
|
56
57
|
| Tool | Version | Purpose | Status |
|
|
57
58
|
|------|---------|---------|--------|
|
|
58
|
-
| **PHP** | 8.4.0 |
|
|
59
|
-
| **PHPUnit** | 11.5.0 |
|
|
60
|
-
| **Composer** | 2.8.0 |
|
|
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.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
created: 2025-10-22
|
|
6
|
-
updated: 2025-
|
|
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,
|
|
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.
|
|
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 /
|
|
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-
|
|
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 |
|
|
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.
|
|
3
|
+
version: 2.1.0
|
|
4
4
|
created: 2025-10-22
|
|
5
|
-
updated: 2025-
|
|
5
|
+
updated: 2025-11-02
|
|
6
6
|
status: active
|
|
7
|
-
description: Rust 1.84+ best practices with cargo test, clippy, rustfmt,
|
|
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.
|
|
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,
|
|
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-
|
|
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-
|
|
55
|
+
## Tool Version Matrix (2025-11-02)
|
|
55
56
|
|
|
56
57
|
| Tool | Version | Purpose | Status |
|
|
57
58
|
|------|---------|---------|--------|
|
|
58
|
-
| **Rust** | 1.84.0 |
|
|
59
|
-
| **cargo** | 1.84.0 |
|
|
60
|
-
| **clippy** | 1.84.0 |
|
|
61
|
-
| **rustfmt** | 1.84.0 |
|
|
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.
|
|
3
|
+
version: 2.1.0
|
|
4
4
|
created: 2025-10-22
|
|
5
|
-
updated: 2025-
|
|
5
|
+
updated: 2025-11-02
|
|
6
6
|
status: active
|
|
7
|
-
description: Scala 3.6+ best practices with ScalaTest 3.2, sbt 1.10,
|
|
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.
|
|
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,
|
|
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-
|
|
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-
|
|
55
|
+
## Tool Version Matrix (2025-11-02)
|
|
55
56
|
|
|
56
57
|
| Tool | Version | Purpose | Status |
|
|
57
58
|
|------|---------|---------|--------|
|
|
58
|
-
| **Scala** | 3.6.0 |
|
|
59
|
-
| **ScalaTest** | 3.2.19 |
|
|
60
|
-
| **sbt** | 1.10.0 |
|
|
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.
|
|
3
|
+
version: 2.1.0
|
|
4
4
|
created: 2025-10-22
|
|
5
|
-
updated: 2025-
|
|
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,
|
|
8
|
-
keywords: ['typescript', 'testing', 'vitest', 'biome', 'types', '
|
|
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.
|
|
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,
|
|
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-
|
|
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-
|
|
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
|
-
| **
|
|
64
|
-
| **Next.js** | 15.1.0 |
|
|
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
|
|