moai-adk 0.32.8__py3-none-any.whl → 0.41.2__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 +4 -1
- moai_adk/cli/commands/update.py +31 -26
- moai_adk/cli/worktree/cli.py +54 -43
- moai_adk/cli/worktree/manager.py +17 -14
- moai_adk/cli/worktree/registry.py +313 -19
- moai_adk/core/config/unified.py +237 -63
- moai_adk/core/error_recovery_system.py +22 -4
- moai_adk/core/git/conflict_detector.py +10 -1
- moai_adk/core/git/event_detector.py +16 -5
- moai_adk/core/language_config_resolver.py +96 -3
- moai_adk/core/merge/analyzer.py +509 -324
- moai_adk/core/migration/alfred_to_moai_migrator.py +7 -1
- moai_adk/core/migration/backup_manager.py +54 -4
- moai_adk/core/migration/file_migrator.py +174 -2
- moai_adk/core/migration/interactive_checkbox_ui.py +42 -31
- moai_adk/core/migration/version_detector.py +123 -19
- moai_adk/core/migration/version_migrator.py +44 -9
- moai_adk/core/project/backup_utils.py +9 -1
- moai_adk/core/project/initializer.py +33 -96
- moai_adk/core/project/phase_executor.py +79 -33
- moai_adk/core/quality/trust_checker.py +30 -10
- moai_adk/core/realtime_monitoring_dashboard.py +3 -3
- moai_adk/core/rollback_manager.py +46 -19
- moai_adk/core/template/backup.py +4 -3
- moai_adk/core/template/config.py +33 -9
- moai_adk/core/template/merger.py +34 -8
- moai_adk/core/template/processor.py +144 -9
- moai_adk/core/template_engine.py +10 -1
- moai_adk/core/template_variable_synchronizer.py +16 -2
- moai_adk/core/version_sync.py +54 -6
- moai_adk/project/configuration.py +1 -1
- moai_adk/statusline/config.py +5 -2
- moai_adk/statusline/main.py +58 -0
- moai_adk/statusline/renderer.py +56 -84
- moai_adk/templates/.claude/agents/moai/ai-nano-banana.md +218 -51
- moai_adk/templates/.claude/agents/moai/builder-agent.md +46 -11
- moai_adk/templates/.claude/agents/moai/builder-command.md +88 -26
- moai_adk/templates/.claude/agents/moai/builder-plugin.md +753 -0
- moai_adk/templates/.claude/agents/moai/builder-skill.md +79 -8
- moai_adk/templates/.claude/agents/moai/expert-backend.md +100 -28
- moai_adk/templates/.claude/agents/moai/expert-database.md +20 -12
- moai_adk/templates/.claude/agents/moai/expert-debug.md +19 -8
- moai_adk/templates/.claude/agents/moai/expert-devops.md +36 -25
- moai_adk/templates/.claude/agents/moai/expert-frontend.md +99 -38
- moai_adk/templates/.claude/agents/moai/expert-performance.md +661 -0
- moai_adk/templates/.claude/agents/moai/expert-refactoring.md +218 -0
- moai_adk/templates/.claude/agents/moai/expert-security.md +55 -4
- moai_adk/templates/.claude/agents/moai/expert-testing.md +737 -0
- moai_adk/templates/.claude/agents/moai/expert-uiux.md +20 -11
- moai_adk/templates/.claude/agents/moai/manager-claude-code.md +13 -4
- moai_adk/templates/.claude/agents/moai/manager-docs.md +15 -7
- moai_adk/templates/.claude/agents/moai/manager-git.md +192 -37
- moai_adk/templates/.claude/agents/moai/manager-project.md +13 -7
- moai_adk/templates/.claude/agents/moai/manager-quality.md +48 -6
- moai_adk/templates/.claude/agents/moai/manager-spec.md +110 -8
- moai_adk/templates/.claude/agents/moai/manager-strategy.md +203 -17
- moai_adk/templates/.claude/agents/moai/manager-tdd.md +217 -23
- moai_adk/templates/.claude/agents/moai/mcp-context7.md +102 -7
- moai_adk/templates/.claude/agents/moai/mcp-figma.md +107 -86
- moai_adk/templates/.claude/agents/moai/mcp-notion.md +50 -4
- moai_adk/templates/.claude/agents/moai/mcp-playwright.md +52 -4
- moai_adk/templates/.claude/agents/moai/mcp-sequential-thinking.md +49 -5
- moai_adk/templates/.claude/commands/moai/0-project.md +503 -307
- moai_adk/templates/.claude/commands/moai/1-plan.md +255 -323
- moai_adk/templates/.claude/commands/moai/2-run.md +257 -315
- moai_adk/templates/.claude/commands/moai/3-sync.md +421 -56
- moai_adk/templates/.claude/commands/moai/9-feedback.md +40 -34
- moai_adk/templates/.claude/hooks/moai/__init__.py +0 -0
- moai_adk/templates/.claude/hooks/moai/lib/README.md +143 -0
- moai_adk/templates/.claude/hooks/moai/lib/__init__.py +19 -0
- moai_adk/templates/.claude/hooks/moai/lib/checkpoint.py +4 -1
- moai_adk/templates/.claude/hooks/moai/lib/common.py +35 -5
- moai_adk/templates/.claude/hooks/moai/lib/config_manager.py +12 -14
- moai_adk/templates/.claude/hooks/moai/lib/exceptions.py +171 -0
- moai_adk/templates/.claude/hooks/moai/lib/git_operations_manager.py +1 -1
- moai_adk/templates/.claude/hooks/moai/lib/language_validator.py +104 -14
- moai_adk/templates/.claude/hooks/moai/lib/models.py +9 -7
- moai_adk/templates/.claude/hooks/moai/lib/path_utils.py +204 -13
- moai_adk/templates/.claude/hooks/moai/lib/project.py +23 -14
- moai_adk/templates/.claude/hooks/moai/lib/tool_registry.py +804 -0
- moai_adk/templates/.claude/hooks/moai/lib/unified_timeout_manager.py +14 -2
- moai_adk/templates/.claude/hooks/moai/post_tool__ast_grep_scan.py +256 -0
- moai_adk/templates/.claude/hooks/moai/post_tool__code_formatter.py +253 -0
- moai_adk/templates/.claude/hooks/moai/post_tool__linter.py +307 -0
- moai_adk/templates/.claude/hooks/moai/pre_tool__security_guard.py +231 -0
- moai_adk/templates/.claude/hooks/moai/session_end__auto_cleanup.py +40 -24
- moai_adk/templates/.claude/hooks/moai/session_start__show_project_info.py +248 -32
- moai_adk/templates/.claude/output-styles/moai/r2d2.md +265 -2
- moai_adk/templates/.claude/output-styles/moai/yoda.md +23 -2
- moai_adk/templates/.claude/settings.json +44 -6
- moai_adk/templates/.claude/skills/moai-ai-nano-banana/SKILL.md +303 -0
- moai_adk/templates/.claude/skills/moai-ai-nano-banana/examples.md +431 -0
- moai_adk/templates/.claude/skills/moai-ai-nano-banana/reference.md +139 -0
- moai_adk/templates/.claude/skills/moai-ai-nano-banana/scripts/batch_generate.py +560 -0
- moai_adk/templates/.claude/skills/moai-ai-nano-banana/scripts/generate_image.py +362 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/SKILL.md +252 -196
- moai_adk/templates/.claude/skills/moai-docs-generation/examples.md +252 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/README.md +39 -27
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/api-documentation.md +115 -125
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/code-documentation.md +150 -150
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/multi-format-output.md +182 -175
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/user-guides.md +198 -138
- moai_adk/templates/.claude/skills/moai-docs-generation/reference.md +234 -0
- moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +19 -13
- moai_adk/templates/.claude/skills/moai-domain-backend/examples.md +718 -0
- moai_adk/templates/.claude/skills/moai-domain-backend/reference.md +464 -0
- moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +21 -14
- moai_adk/templates/.claude/skills/moai-domain-database/examples.md +830 -0
- moai_adk/templates/.claude/skills/moai-domain-database/reference.md +545 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +124 -425
- moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md +968 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/modules/component-architecture.md +723 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/modules/nextjs16-patterns.md +713 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/modules/performance-optimization.md +694 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/modules/react19-patterns.md +591 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/modules/state-management.md +680 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/modules/vue35-patterns.md +802 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md +664 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/SKILL.md +17 -15
- moai_adk/templates/.claude/skills/moai-formats-data/SKILL.md +105 -315
- moai_adk/templates/.claude/skills/moai-formats-data/examples.md +804 -0
- moai_adk/templates/.claude/skills/moai-formats-data/modules/README.md +299 -70
- moai_adk/templates/.claude/skills/moai-formats-data/modules/toon-encoding.md +6 -6
- moai_adk/templates/.claude/skills/moai-formats-data/reference.md +585 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/SKILL.md +197 -154
- moai_adk/templates/.claude/skills/moai-foundation-claude/examples.md +732 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/advanced-agent-patterns.md +370 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-cli-reference-official.md +420 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-devcontainers-official.md +381 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-discover-plugins-official.md +379 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-headless-official.md +378 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-hooks-official.md +110 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-memory-official.md +2 -2
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-plugin-marketplaces-official.md +308 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-plugins-official.md +432 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-sandboxing-official.md +282 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-skills-official.md +425 -71
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-statusline-official.md +293 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-sub-agents-official.md +325 -143
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference.md +209 -0
- moai_adk/templates/.claude/skills/moai-foundation-context/SKILL.md +12 -1
- moai_adk/templates/.claude/skills/moai-foundation-context/examples.md +1048 -0
- moai_adk/templates/.claude/skills/moai-foundation-context/reference.md +246 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/SKILL.md +33 -134
- moai_adk/templates/.claude/skills/moai-foundation-core/examples.md +358 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/agents-reference.md +31 -18
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/commands-reference.md +30 -30
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/delegation-advanced.md +279 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/delegation-implementation.md +267 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/delegation-patterns.md +121 -650
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/patterns.md +22 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/spec-ears-format.md +200 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/spec-first-tdd.md +37 -730
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/spec-tdd-implementation.md +275 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/trust-5-framework.md +77 -819
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/trust-5-implementation.md +244 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/trust-5-validation.md +219 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/reference.md +478 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/SKILL.md +311 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/examples.md +228 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/assumption-matrix.md +80 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/cognitive-bias.md +199 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/first-principles.md +140 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/trade-off-analysis.md +154 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/reference.md +157 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/SKILL.md +17 -16
- moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +431 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/examples.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/modules/advanced-patterns.md +401 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/reference.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +194 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/examples.md +585 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/modules/aspnet-core.md +627 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/modules/blazor-components.md +767 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/modules/cqrs-validation.md +626 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/modules/csharp12-features.md +580 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/modules/efcore-patterns.md +622 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/reference.md +403 -0
- moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md +395 -0
- moai_adk/templates/.claude/skills/moai-lang-elixir/examples.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-elixir/modules/advanced-patterns.md +531 -0
- moai_adk/templates/.claude/skills/moai-lang-elixir/reference.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-flutter/SKILL.md +473 -0
- moai_adk/templates/.claude/skills/moai-lang-flutter/examples.md +1090 -0
- moai_adk/templates/.claude/skills/moai-lang-flutter/reference.md +686 -0
- moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +378 -0
- moai_adk/templates/.claude/skills/moai-lang-go/examples.md +919 -0
- moai_adk/templates/.claude/skills/moai-lang-go/reference.md +737 -0
- moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +387 -0
- moai_adk/templates/.claude/skills/moai-lang-java/examples.md +864 -0
- moai_adk/templates/.claude/skills/moai-lang-java/reference.md +291 -0
- moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +419 -0
- moai_adk/templates/.claude/skills/moai-lang-javascript/examples.md +973 -0
- moai_adk/templates/.claude/skills/moai-lang-javascript/reference.md +1543 -0
- moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +384 -0
- moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md +1006 -0
- moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md +562 -0
- moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +505 -0
- moai_adk/templates/.claude/skills/moai-lang-php/examples.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-php/modules/advanced-patterns.md +538 -0
- moai_adk/templates/.claude/skills/moai-lang-php/reference.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +490 -0
- moai_adk/templates/.claude/skills/moai-lang-python/examples.md +977 -0
- moai_adk/templates/.claude/skills/moai-lang-python/reference.md +804 -0
- moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +390 -0
- moai_adk/templates/.claude/skills/moai-lang-r/examples.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-r/modules/advanced-patterns.md +489 -0
- moai_adk/templates/.claude/skills/moai-lang-r/reference.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +433 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/examples.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/modules/advanced-patterns.md +309 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/modules/testing-patterns.md +306 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/reference.md +17 -0
- moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +378 -0
- moai_adk/templates/.claude/skills/moai-lang-rust/examples.md +659 -0
- moai_adk/templates/.claude/skills/moai-lang-rust/reference.md +504 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +212 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/examples.md +633 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/modules/akka-actors.md +479 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/modules/cats-effect.md +489 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/modules/functional-programming.md +460 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/modules/spark-data.md +498 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/modules/zio-patterns.md +541 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/reference.md +423 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +192 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/examples.md +918 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/modules/combine-reactive.md +256 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/modules/concurrency.md +270 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/modules/swift6-features.md +265 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/modules/swiftui-patterns.md +314 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/reference.md +672 -0
- moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +365 -0
- moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md +1089 -0
- moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md +731 -0
- moai_adk/templates/.claude/skills/moai-library-mermaid/SKILL.md +94 -227
- moai_adk/templates/.claude/skills/moai-library-nextra/SKILL.md +26 -6
- moai_adk/templates/.claude/skills/moai-library-nextra/examples.md +592 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/advanced-patterns.md +331 -12
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/configuration.md +330 -37
- moai_adk/templates/.claude/skills/moai-library-nextra/reference.md +379 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/SKILL.md +17 -13
- moai_adk/templates/.claude/skills/moai-library-shadcn/modules/shadcn-theming.md +1 -1
- moai_adk/templates/.claude/skills/moai-platform-auth0/SKILL.md +284 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/examples.md +2446 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/adaptive-mfa.md +233 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/akamai-integration.md +214 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/application-credentials.md +280 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/attack-protection-log-events.md +224 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/attack-protection-overview.md +140 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/bot-detection.md +144 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/breached-password-detection.md +187 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/brute-force-protection.md +189 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/certifications.md +282 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/compliance-overview.md +263 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/continuous-session-protection.md +307 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/customize-mfa.md +177 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/dpop-implementation.md +283 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/fapi-implementation.md +259 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/gdpr-compliance.md +313 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/guardian-configuration.md +269 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/highly-regulated-identity.md +272 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/jwt-fundamentals.md +248 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/mdl-verification.md +210 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/mfa-api-management.md +278 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/mfa-factors.md +226 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/mfa-overview.md +174 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/mtls-sender-constraining.md +316 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/ropg-flow-mfa.md +216 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/security-center.md +325 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/security-guidance.md +277 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/state-parameters.md +177 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/step-up-authentication.md +251 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/suspicious-ip-throttling.md +240 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/tenant-access-control.md +179 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/modules/webauthn-fido.md +235 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/reference.md +224 -0
- moai_adk/templates/.claude/skills/moai-platform-clerk/SKILL.md +426 -0
- moai_adk/templates/.claude/skills/moai-platform-clerk/modules/advanced-patterns.md +417 -0
- moai_adk/templates/.claude/skills/moai-platform-clerk/reference.md +273 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/SKILL.md +229 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/examples.md +506 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/modules/auth-integration.md +421 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/modules/file-storage.md +474 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/modules/reactive-queries.md +302 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/modules/server-functions.md +452 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/reference.md +385 -0
- moai_adk/templates/.claude/skills/moai-platform-firebase-auth/SKILL.md +250 -0
- moai_adk/templates/.claude/skills/moai-platform-firebase-auth/examples.md +514 -0
- moai_adk/templates/.claude/skills/moai-platform-firebase-auth/modules/custom-claims.md +374 -0
- moai_adk/templates/.claude/skills/moai-platform-firebase-auth/modules/phone-auth.md +372 -0
- moai_adk/templates/.claude/skills/moai-platform-firebase-auth/modules/social-auth.md +339 -0
- moai_adk/templates/.claude/skills/moai-platform-firebase-auth/reference.md +382 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/SKILL.md +231 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/examples.md +445 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/modules/offline-cache.md +392 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/modules/realtime-listeners.md +441 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/modules/security-rules.md +352 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/modules/transactions.md +452 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/reference.md +322 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/SKILL.md +206 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/examples.md +470 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/modules/auto-scaling.md +349 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/modules/branching-workflows.md +354 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/modules/connection-pooling.md +412 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/modules/pitr-backups.md +458 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/reference.md +272 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/SKILL.md +224 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/examples.md +539 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/modules/docker-deployment.md +261 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/modules/multi-service.md +291 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/modules/networking-domains.md +338 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/modules/volumes-storage.md +353 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/reference.md +374 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/SKILL.md +207 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/examples.md +502 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/modules/auth-integration.md +384 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/modules/edge-functions.md +371 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/modules/postgresql-pgvector.md +231 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/modules/realtime-presence.md +354 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/modules/row-level-security.md +286 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/modules/storage-cdn.md +319 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/modules/typescript-patterns.md +453 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/reference.md +284 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/SKILL.md +210 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/examples.md +502 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/modules/analytics-speed.md +348 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/modules/deployment-config.md +344 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/modules/edge-functions.md +222 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/modules/isr-caching.md +306 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/modules/kv-storage.md +399 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/reference.md +360 -0
- moai_adk/templates/.claude/skills/moai-plugin-builder/SKILL.md +474 -0
- moai_adk/templates/.claude/skills/moai-plugin-builder/examples.md +621 -0
- moai_adk/templates/.claude/skills/moai-plugin-builder/modules/migration.md +341 -0
- moai_adk/templates/.claude/skills/moai-plugin-builder/modules/validation.md +373 -0
- moai_adk/templates/.claude/skills/moai-plugin-builder/reference.md +464 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/SKILL.md +307 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/examples.md +1099 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/modules/language-specific.md +307 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/modules/pattern-syntax.md +237 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/modules/refactoring-patterns.md +260 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/modules/security-rules.md +239 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/reference.md +288 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/languages/go.yml +90 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/languages/python.yml +101 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/languages/typescript.yml +83 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/quality/complexity-check.yml +94 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/quality/deprecated-apis.yml +84 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/security/secrets-detection.yml +89 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/security/sql-injection.yml +45 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/security/xss-prevention.yml +50 -0
- moai_adk/templates/.claude/skills/moai-tool-ast-grep/rules/sgconfig.yml +54 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/SKILL.md +215 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/examples.md +697 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/index.md +96 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/acp.md +115 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/agents.md +241 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/commands.md +197 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/custom-tools.md +197 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/formatters.md +164 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/keybinds.md +150 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/lsp-servers.md +156 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/mcp-servers.md +214 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/models.md +197 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/permissions.md +162 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/rules.md +129 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/skills.md +192 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/themes.md +200 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/configure/tools.md +169 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/core/config.md +211 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/core/enterprise.md +68 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/core/intro.md +127 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/core/migration-1.0.md +82 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/core/network.md +72 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/core/providers.md +310 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/core/troubleshooting.md +124 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/develop/ecosystem.md +75 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/develop/plugins.md +218 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/develop/sdk.md +266 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/develop/server.md +207 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/usage/cli.md +159 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/usage/github.md +181 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/usage/gitlab.md +122 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/usage/ide.md +74 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/usage/share.md +106 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/usage/tui.md +129 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/modules/usage/zen.md +118 -0
- moai_adk/templates/.claude/skills/moai-tool-opencode/reference.md +790 -0
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/SKILL.md +190 -424
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/examples.md +544 -0
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/reference.md +307 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/SKILL.md +188 -314
- moai_adk/templates/.claude/skills/moai-workflow-project/examples.md +547 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/reference.md +275 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/schemas/tab_schema.json +284 -212
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/product-template.md +2 -2
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/structure-template.md +1 -1
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/tech-template.md +22 -1
- moai_adk/templates/.claude/skills/moai-workflow-spec/SKILL.md +337 -0
- moai_adk/templates/.claude/skills/moai-workflow-spec/examples.md +900 -0
- moai_adk/templates/.claude/skills/moai-workflow-spec/modules/advanced-patterns.md +237 -0
- moai_adk/templates/.claude/skills/moai-workflow-spec/reference.md +704 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/SKILL.md +13 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/examples.md +552 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/reference.md +346 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/SKILL.md +222 -367
- moai_adk/templates/.claude/skills/moai-workflow-testing/examples.md +672 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/README.md +52 -3
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/ai-debugging.md +263 -806
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/context7-integration.md +286 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/review-workflows.md +500 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/trust5-framework/relevance-analysis.md +154 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/trust5-framework/safety-analysis.md +148 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/trust5-framework/scoring-algorithms.md +196 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/trust5-framework/timeliness-analysis.md +168 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/trust5-framework/truthfulness-analysis.md +136 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/trust5-framework/usability-analysis.md +153 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review/trust5-framework.md +257 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review.md +191 -1344
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/code-review/analysis-patterns.md +340 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/code-review/core-classes.md +299 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/code-review/tool-integration.md +380 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/debugging/debugging-workflows.md +451 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/debugging/error-analysis.md +442 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance/optimization-patterns.md +473 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance/profiling-techniques.md +481 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization/ai-optimization.md +241 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization/bottleneck-detection.md +397 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization/optimization-plan.md +315 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization/profiler-core.md +277 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization/real-time-monitoring.md +187 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization.md +287 -1194
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/quality-metrics.md +415 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/refactoring/ai-workflows.md +620 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/refactoring/patterns.md +692 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/security-analysis.md +429 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/smart-refactoring.md +262 -1192
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/static-analysis.md +438 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd/core-classes.md +397 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7/advanced-features.md +494 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7/red-green-refactor.md +316 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7/test-generation.md +471 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7/test-patterns.md +371 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7.md +227 -1222
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/trust5-validation.md +428 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/reference.md +440 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/SKILL.md +228 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/integration-patterns.md +149 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/moai-adk-integration.md +245 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/parallel-advanced.md +310 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/parallel-development.md +202 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/parallel-workflows.md +302 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/registry-architecture.md +271 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/resource-optimization.md +300 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/tools-integration.md +280 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/troubleshooting.md +397 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/worktree-commands.md +296 -0
- moai_adk/templates/.claude/skills/moai-workflow-worktree/modules/worktree-management.md +217 -0
- moai_adk/templates/.git-hooks/pre-push +168 -50
- moai_adk/templates/.gitignore +0 -3
- moai_adk/templates/.lsp.json +152 -0
- moai_adk/templates/.mcp.json +5 -12
- moai_adk/templates/.moai/config/config.yaml +20 -306
- moai_adk/templates/.moai/config/multilingual-triggers.yaml +213 -0
- moai_adk/templates/.moai/config/questions/_schema.yaml +105 -10
- moai_adk/templates/.moai/config/questions/tab0-init.yaml +259 -0
- moai_adk/templates/.moai/config/questions/tab1-user.yaml +4 -5
- moai_adk/templates/.moai/config/questions/tab2-project.yaml +12 -55
- moai_adk/templates/.moai/config/questions/tab3-git.yaml +111 -21
- moai_adk/templates/.moai/config/questions/tab4-quality.yaml +34 -18
- moai_adk/templates/.moai/config/questions/tab5-system.yaml +19 -75
- moai_adk/templates/.moai/config/sections/git-strategy.yaml +83 -7
- moai_adk/templates/.moai/config/sections/language.yaml +7 -7
- moai_adk/templates/.moai/config/sections/project.yaml +1 -1
- moai_adk/templates/.moai/config/sections/quality.yaml +7 -4
- moai_adk/templates/.moai/config/sections/system.yaml +11 -1
- moai_adk/templates/.moai/config/statusline-config.yaml +19 -13
- moai_adk/templates/.moai/scripts/setup-glm.py +4 -4
- moai_adk/templates/CLAUDE.md +578 -154
- moai_adk/utils/common.py +33 -0
- moai_adk/version.py +1 -1
- {moai_adk-0.32.8.dist-info → moai_adk-0.41.2.dist-info}/METADATA +905 -109
- moai_adk-0.41.2.dist-info/RECORD +683 -0
- moai_adk/core/config/auto_spec_config.py +0 -340
- moai_adk/core/hooks/post_tool_auto_spec_completion.py +0 -901
- moai_adk/core/spec/confidence_scoring.py +0 -680
- moai_adk/core/spec/ears_template_engine.py +0 -1247
- moai_adk/core/spec/quality_validator.py +0 -687
- moai_adk/templates/.claude/skills/moai-domain-uiux/modules/design-system-tokens.md +0 -405
- moai_adk/templates/.claude/skills/moai-integration-mcp/SKILL.md +0 -352
- moai_adk/templates/.claude/skills/moai-integration-mcp/modules/README.md +0 -52
- moai_adk/templates/.claude/skills/moai-integration-mcp/modules/error-handling.md +0 -334
- moai_adk/templates/.claude/skills/moai-integration-mcp/modules/integration-patterns.md +0 -310
- moai_adk/templates/.claude/skills/moai-integration-mcp/modules/security-authentication.md +0 -256
- moai_adk/templates/.claude/skills/moai-integration-mcp/modules/server-architecture.md +0 -253
- moai_adk/templates/.claude/skills/moai-lang-unified/README.md +0 -133
- moai_adk/templates/.claude/skills/moai-lang-unified/SKILL.md +0 -296
- moai_adk/templates/.claude/skills/moai-lang-unified/examples.md +0 -1269
- moai_adk/templates/.claude/skills/moai-lang-unified/reference.md +0 -331
- moai_adk/templates/.claude/skills/moai-library-nextra/advanced-patterns.md +0 -336
- moai_adk/templates/.claude/skills/moai-platform-baas/README.md +0 -186
- moai_adk/templates/.claude/skills/moai-platform-baas/SKILL.md +0 -290
- moai_adk/templates/.claude/skills/moai-platform-baas/examples.md +0 -1225
- moai_adk/templates/.claude/skills/moai-platform-baas/reference.md +0 -567
- moai_adk/templates/.claude/skills/moai-platform-baas/scripts/provider-selector.py +0 -323
- moai_adk/templates/.claude/skills/moai-platform-baas/templates/stack-config.yaml +0 -204
- moai_adk/templates/.claude/skills/moai-workflow-project/__init__.py +0 -520
- moai_adk/templates/.claude/skills/moai-workflow-project/complete_workflow_demo_fixed.py +0 -574
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_project_setup.py +0 -317
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_workflow_demo.py +0 -663
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/config-migration-example.json +0 -190
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/question-examples.json +0 -135
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/quick_start.py +0 -196
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/__init__.py +0 -17
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/advanced-patterns.md +0 -158
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/ask_user_integration.py +0 -340
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/batch_questions.py +0 -713
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/config_manager.py +0 -538
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/documentation_manager.py +0 -1336
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/language_initializer.py +0 -730
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/migration_manager.py +0 -608
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/template_optimizer.py +0 -1005
- moai_adk/templates/.claude/skills/moai-workflow-project/test_integration_simple.py +0 -436
- moai_adk/templates/.claude/skills/moai-worktree/SKILL.md +0 -410
- moai_adk/templates/.claude/skills/moai-worktree/modules/integration-patterns.md +0 -982
- moai_adk/templates/.claude/skills/moai-worktree/modules/parallel-development.md +0 -778
- moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-commands.md +0 -646
- moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-management.md +0 -782
- moai_adk/templates/.moai/cache/personalization.json +0 -10
- moai_adk/templates/.moai/config/presets/manual.yaml +0 -28
- moai_adk/templates/.moai/config/presets/personal.yaml +0 -30
- moai_adk/templates/.moai/config/presets/team.yaml +0 -33
- moai_adk-0.32.8.dist-info/RECORD +0 -396
- /moai_adk/templates/.claude/skills/moai-library-mermaid/{advanced-patterns.md → modules/advanced-patterns.md} +0 -0
- /moai_adk/templates/.claude/skills/moai-library-mermaid/{optimization.md → modules/optimization.md} +0 -0
- /moai_adk/templates/.claude/skills/moai-library-nextra/{optimization.md → modules/optimization.md} +0 -0
- /moai_adk/templates/.claude/skills/moai-workflow-jit-docs/{advanced-patterns.md → modules/advanced-patterns.md} +0 -0
- /moai_adk/templates/.claude/skills/moai-workflow-jit-docs/{optimization.md → modules/optimization.md} +0 -0
- /moai_adk/templates/.claude/skills/moai-workflow-testing/{advanced-patterns.md → modules/advanced-patterns.md} +0 -0
- /moai_adk/templates/.claude/skills/moai-workflow-testing/{optimization.md → modules/optimization.md} +0 -0
- /moai_adk/templates/.claude/skills/{moai-worktree → moai-workflow-worktree}/examples.md +0 -0
- /moai_adk/templates/.claude/skills/{moai-worktree → moai-workflow-worktree}/reference.md +0 -0
- {moai_adk-0.32.8.dist-info → moai_adk-0.41.2.dist-info}/WHEEL +0 -0
- {moai_adk-0.32.8.dist-info → moai_adk-0.41.2.dist-info}/entry_points.txt +0 -0
- {moai_adk-0.32.8.dist-info → moai_adk-0.41.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moai-adk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.41.2
|
|
4
4
|
Summary: MoAI Agentic Development Kit - SPEC-First TDD with Alfred SuperAgent & Unified moai-core-* Skills
|
|
5
5
|
Project-URL: Homepage, https://github.com/modu-ai/moai-adk
|
|
6
6
|
Project-URL: Repository, https://github.com/modu-ai/moai-adk
|
|
@@ -88,8 +88,8 @@ MoAI-ADK (Agentic Development Kit) is an open-source framework that combines **S
|
|
|
88
88
|
|
|
89
89
|
| Section | Goal |
|
|
90
90
|
| ----------------------------------------------------------------- | -------------------------- |
|
|
91
|
-
| [8. Agent Guide](#8-agent-guide-
|
|
92
|
-
| [9. Skill Library](#9-skill-library-
|
|
91
|
+
| [8. Agent Guide](#8-agent-guide-27-agents) | Utilize specialized agents |
|
|
92
|
+
| [9. Skill Library](#9-skill-library-48-skills) | Explore 48 skills |
|
|
93
93
|
| [10. Composition Patterns](#10-composition-patterns-and-examples) | Real project examples |
|
|
94
94
|
| [11. TRUST 5 Quality](#11-trust-5-quality-assurance) | Quality assurance system |
|
|
95
95
|
| [12. Advanced Features](#12-advanced-features) | Git Worktree & enhanced log management |
|
|
@@ -109,7 +109,7 @@ MoAI-ADK (Agentic Development Kit) is an open-source framework that combines **S
|
|
|
109
109
|
|
|
110
110
|
### 🗿 What is MoAI-ADK?
|
|
111
111
|
|
|
112
|
-
**MoAI-ADK** (Agentic Development Kit) is a next-generation development framework powered by AI agents. It combines **SPEC-First development methodology**, **TDD** (Test-Driven Development), and **
|
|
112
|
+
**MoAI-ADK** (Agentic Development Kit) is a next-generation development framework powered by AI agents. It combines **SPEC-First development methodology**, **TDD** (Test-Driven Development), and **28 specialized AI agents** to deliver a complete and transparent development lifecycle.
|
|
113
113
|
|
|
114
114
|
### ✨ Why Use MoAI-ADK?
|
|
115
115
|
|
|
@@ -137,7 +137,9 @@ MoAI-ADK solutions:
|
|
|
137
137
|
| ---------------------- | ---------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
138
138
|
| **SPEC-First** | All development starts with clear specifications | **90% reduction** in rework from requirement changes<br/>Clear SPEC eliminates developer-planner misunderstandings |
|
|
139
139
|
| **TDD Enforcement** | Automated Red-Green-Refactor cycle | **70% reduction** in bugs (with 85%+ coverage)<br/>**15% shorter** total development time including test writing |
|
|
140
|
-
| **AI Orchestration** | Mr.Alfred commands
|
|
140
|
+
| **AI Orchestration** | Mr.Alfred commands 28 specialized AI agents (5-Tier) | **Average token savings**: 5,000 tokens per session (Conditional Auto-load)<br/>**Simple tasks**: 0 tokens (Quick Reference)<br/>**Complex tasks**: 8,470 tokens (Auto-load skill)<br/>**60-70% time savings** vs manual |
|
|
141
|
+
| **Multilingual Routing** | Automatic agent selection in 4 languages (EN/KO/JA/ZH) | **100% language coverage** for agent invocation<br/>XLT (Cross-Lingual Thought) protocol for semantic matching<br/>Works with Korean, Japanese, Chinese requests |
|
|
142
|
+
| **AST-Grep Integration** | Structural code search, security scanning, and refactoring | **Pattern-based code analysis** (not text-based regex)<br/>Support for **40+ programming languages**<br/>**Automatic security scanning** on code changes<br/>**Large-scale refactoring** with expert-refactoring agent |
|
|
141
143
|
| **Auto Documentation** | Automatic doc sync on code changes (`> /moai:3-sync`) | **100% documentation freshness**<br/>Eliminates manual doc writing<br/>Auto-sync since last commit |
|
|
142
144
|
| **TRUST 5 Quality** | Test, Readable, Unified, Secured, Trackable | Enterprise-grade quality assurance<br/>**99% reduction** in post-deployment emergency patches |
|
|
143
145
|
|
|
@@ -425,6 +427,34 @@ Mr.Alfred is MoAI-ADK's **chief orchestrator** who analyzes user requests, selec
|
|
|
425
427
|
3. **Execute**: Delegate tasks to specialized agents (sequential/parallel)
|
|
426
428
|
4. **Integrate**: Collect all results and report to user
|
|
427
429
|
|
|
430
|
+
### 🌐 Multilingual Agent Routing (NEW in v0.40.0)
|
|
431
|
+
|
|
432
|
+
**Supported Languages:** English (EN), Korean (KO), Japanese (JA), Chinese (ZH)
|
|
433
|
+
|
|
434
|
+
Alfred now automatically routes requests in **any supported language** to the correct agent:
|
|
435
|
+
|
|
436
|
+
**How It Works:**
|
|
437
|
+
|
|
438
|
+
1. **Keyword Detection**: Each agent has multilingual trigger keywords
|
|
439
|
+
2. **XLT Protocol**: Cross-Lingual Thought processing for semantic matching
|
|
440
|
+
3. **Automatic Delegation**: Alfred invokes the appropriate agent
|
|
441
|
+
|
|
442
|
+
**Example:**
|
|
443
|
+
|
|
444
|
+
| Request Language | User Request | Agent Invoked |
|
|
445
|
+
|-----------------|--------------|---------------|
|
|
446
|
+
| English | "Design backend API" | expert-backend |
|
|
447
|
+
| Korean | "백엔드 API 설계해줘" | expert-backend |
|
|
448
|
+
| Japanese | "バックエンドAPIを設計して" | expert-backend |
|
|
449
|
+
| Chinese | "设计后端API" | expert-backend |
|
|
450
|
+
|
|
451
|
+
**Multilingual Keyword Examples:**
|
|
452
|
+
|
|
453
|
+
- **Backend**: backend, 백엔드, バックエンド, 后端
|
|
454
|
+
- **Frontend**: frontend, 프론트엔드, フロントエンド, 前端
|
|
455
|
+
- **Testing**: test, 테스트, テスト, 测试
|
|
456
|
+
- **Security**: security, 보안, セキュリティ, 安全
|
|
457
|
+
|
|
428
458
|
```mermaid
|
|
429
459
|
flowchart TD
|
|
430
460
|
User[👤 User] -->|Request| Alfred[🎩 Mr.Alfred]
|
|
@@ -440,9 +470,9 @@ flowchart TD
|
|
|
440
470
|
|
|
441
471
|
### 🔧 Agent System (5-Tier Hierarchy)
|
|
442
472
|
|
|
443
|
-
MoAI-ADK organizes **
|
|
473
|
+
MoAI-ADK organizes **28 specialized agents** into **5 tiers** for optimal performance.
|
|
444
474
|
|
|
445
|
-
**Tier 1: Domain Experts** (
|
|
475
|
+
**Tier 1: Domain Experts** (10 agents)
|
|
446
476
|
|
|
447
477
|
- `expert-backend`: Backend architecture, API development
|
|
448
478
|
- `expert-frontend`: Frontend, React/Vue implementation
|
|
@@ -451,6 +481,9 @@ MoAI-ADK organizes **24 specialized agents** into **5 tiers** for optimal perfor
|
|
|
451
481
|
- `expert-devops`: Deployment, infrastructure, CI/CD
|
|
452
482
|
- `expert-uiux`: UI/UX design, components
|
|
453
483
|
- `expert-debug`: Debugging, error analysis
|
|
484
|
+
- `expert-performance`: Performance profiling, optimization
|
|
485
|
+
- `expert-refactoring`: Code refactoring, AST-grep based transforms
|
|
486
|
+
- `expert-testing`: Test strategy, coverage optimization
|
|
454
487
|
|
|
455
488
|
**Tier 2: Workflow Managers** (8 agents)
|
|
456
489
|
|
|
@@ -463,13 +496,14 @@ MoAI-ADK organizes **24 specialized agents** into **5 tiers** for optimal perfor
|
|
|
463
496
|
- `manager-git`: Git workflow
|
|
464
497
|
- `manager-claude-code`: Claude Code integration
|
|
465
498
|
|
|
466
|
-
**Tier 3: Meta-generators** (
|
|
499
|
+
**Tier 3: Meta-generators** (4 agents)
|
|
467
500
|
|
|
468
501
|
- `builder-agent`: Create new agents
|
|
469
502
|
- `builder-skill`: Create new skills
|
|
470
503
|
- `builder-command`: Create new commands
|
|
504
|
+
- `builder-plugin`: Create new plugins
|
|
471
505
|
|
|
472
|
-
**Tier 4: MCP Integrators** (
|
|
506
|
+
**Tier 4: MCP Integrators** (5 agents)
|
|
473
507
|
|
|
474
508
|
- `mcp-context7`: Real-time library documentation lookup
|
|
475
509
|
- `mcp-sequential-thinking`: Complex reasoning analysis
|
|
@@ -592,13 +626,21 @@ In this phase:
|
|
|
592
626
|
|
|
593
627
|
This phase automatically executes:
|
|
594
628
|
|
|
629
|
+
- 🔍 **Phase 0.5: Quality Verification** *(NEW)*
|
|
630
|
+
- Auto-detect project language (16 languages supported)
|
|
631
|
+
- Run language-specific test runner, linter, and type checker
|
|
632
|
+
- Execute code-review via manager-quality agent
|
|
633
|
+
- Coverage target from config (`constitution.test_coverage_target`)
|
|
595
634
|
- 🔴 **Final test execution**: Auto-run all tests
|
|
596
|
-
- 📊 **Coverage verification**: Auto-guarantee
|
|
597
|
-
- 🔍 **Code quality check**:
|
|
635
|
+
- 📊 **Coverage verification**: Auto-guarantee configured coverage target
|
|
636
|
+
- 🔍 **Code quality check**: Language-specific linting (ruff/eslint/clippy/etc.)
|
|
598
637
|
- 📝 **Auto commit generation**: Auto-create "Ready for merge" commit
|
|
599
638
|
- 📚 **Documentation update**: Auto-update API docs, README
|
|
600
639
|
- 🚀 **Merge readiness**: Claude Code auto-completes merge preparation
|
|
601
640
|
|
|
641
|
+
**Supported Languages for Phase 0.5**:
|
|
642
|
+
Python, TypeScript, JavaScript, Go, Rust, Ruby, Java, PHP, Kotlin, Swift, C#, C++, Elixir, R, Flutter/Dart, Scala
|
|
643
|
+
|
|
602
644
|
**Output**: Tests pass + documentation complete + merge ready
|
|
603
645
|
|
|
604
646
|
---
|
|
@@ -870,13 +912,9 @@ moai-worktree new SPEC-AUTH-001
|
|
|
870
912
|
**Step 2: Navigate to Worktree and Start Development**
|
|
871
913
|
|
|
872
914
|
```bash
|
|
873
|
-
# Navigate to worktree (
|
|
915
|
+
# Navigate to worktree (opens new shell)
|
|
874
916
|
moai-worktree go SPEC-AUTH-001
|
|
875
|
-
# →
|
|
876
|
-
|
|
877
|
-
# Or navigate directly in new shell
|
|
878
|
-
moai-worktree switch SPEC-AUTH-001
|
|
879
|
-
# → Navigate to worktree in new terminal
|
|
917
|
+
# → Opens new shell in ~/moai/worktrees/MoAI-ADK/SPEC-AUTH-001
|
|
880
918
|
```
|
|
881
919
|
|
|
882
920
|
**Step 3: Develop in Isolated Environment**
|
|
@@ -1027,9 +1065,8 @@ moai-worktree status # Detailed status check
|
|
|
1027
1065
|
moai-worktree sync SPEC-AUTH-001 # Sync specific worktree
|
|
1028
1066
|
moai-worktree sync --all # Sync all worktrees
|
|
1029
1067
|
|
|
1030
|
-
# Worktree navigation
|
|
1031
|
-
moai-worktree go SPEC-001
|
|
1032
|
-
moai-worktree switch SPEC-001 # Open worktree in new shell
|
|
1068
|
+
# Worktree navigation
|
|
1069
|
+
moai-worktree go SPEC-001 # Open worktree in new shell
|
|
1033
1070
|
|
|
1034
1071
|
# Automatic conflict resolution
|
|
1035
1072
|
moai-worktree sync SPEC-AUTH-001 --auto-resolve
|
|
@@ -1064,8 +1101,7 @@ This section details direct commands that can be used alongside Claude Code auto
|
|
|
1064
1101
|
| ---------------------- | --------------------------- | ----------------------------------- | -------------------------------------------- |
|
|
1065
1102
|
| `moai-worktree new` | Create new worktree | `moai-worktree new SPEC-001` | Create isolated workspace for SPEC-001 |
|
|
1066
1103
|
| `moai-worktree list` | List worktrees | `moai-worktree list` | Display all active worktrees |
|
|
1067
|
-
| `moai-worktree go` |
|
|
1068
|
-
| `moai-worktree switch` | Open worktree in new shell | `moai-worktree switch SPEC-001` | Navigate to worktree in new terminal |
|
|
1104
|
+
| `moai-worktree go` | Go to worktree | `moai-worktree go SPEC-001` | Open worktree in new shell |
|
|
1069
1105
|
| `moai-worktree remove` | Remove worktree | `moai-worktree remove SPEC-001` | Delete specific worktree |
|
|
1070
1106
|
| `moai-worktree status` | Check status | `moai-worktree status` | Display all worktree statuses |
|
|
1071
1107
|
|
|
@@ -1424,12 +1460,9 @@ moai-worktree new SPEC-001
|
|
|
1424
1460
|
# List all active worktrees
|
|
1425
1461
|
moai-worktree list
|
|
1426
1462
|
|
|
1427
|
-
#
|
|
1463
|
+
# Go to worktree (opens new shell)
|
|
1428
1464
|
moai-worktree go SPEC-001
|
|
1429
1465
|
|
|
1430
|
-
# Switch to worktree (open new shell)
|
|
1431
|
-
moai-worktree switch SPEC-001
|
|
1432
|
-
|
|
1433
1466
|
# Sync worktree with base branch
|
|
1434
1467
|
moai-worktree sync SPEC-001
|
|
1435
1468
|
|
|
@@ -1449,7 +1482,7 @@ moai-worktree config set <key> <value>
|
|
|
1449
1482
|
|
|
1450
1483
|
---
|
|
1451
1484
|
|
|
1452
|
-
## 8. Agent Guide (
|
|
1485
|
+
## 8. Agent Guide (27 Agents)
|
|
1453
1486
|
|
|
1454
1487
|
### 🎯 Agent Selection Guide
|
|
1455
1488
|
|
|
@@ -1468,7 +1501,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1468
1501
|
- Server performance optimization
|
|
1469
1502
|
|
|
1470
1503
|
```bash
|
|
1471
|
-
>
|
|
1504
|
+
> Use the expert-backend subagent to"Develop user authentication API with FastAPI"
|
|
1472
1505
|
```
|
|
1473
1506
|
|
|
1474
1507
|
---
|
|
@@ -1484,7 +1517,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1484
1517
|
- Responsive design
|
|
1485
1518
|
|
|
1486
1519
|
```bash
|
|
1487
|
-
>
|
|
1520
|
+
> Use the expert-frontend subagent to"Implement dashboard UI with React"
|
|
1488
1521
|
```
|
|
1489
1522
|
|
|
1490
1523
|
---
|
|
@@ -1500,7 +1533,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1500
1533
|
- Performance tuning
|
|
1501
1534
|
|
|
1502
1535
|
```bash
|
|
1503
|
-
>
|
|
1536
|
+
> Use the expert-database subagent to"Optimize large PostgreSQL tables"
|
|
1504
1537
|
```
|
|
1505
1538
|
|
|
1506
1539
|
---
|
|
@@ -1516,7 +1549,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1516
1549
|
- Data encryption
|
|
1517
1550
|
|
|
1518
1551
|
```bash
|
|
1519
|
-
>
|
|
1552
|
+
> Use the expert-security subagent to"Security audit for login feature"
|
|
1520
1553
|
```
|
|
1521
1554
|
|
|
1522
1555
|
---
|
|
@@ -1532,7 +1565,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1532
1565
|
- Infrastructure automation
|
|
1533
1566
|
|
|
1534
1567
|
```bash
|
|
1535
|
-
>
|
|
1568
|
+
> Use the expert-devops subagent to"Setup Docker deployment for Next.js app"
|
|
1536
1569
|
```
|
|
1537
1570
|
|
|
1538
1571
|
---
|
|
@@ -1548,7 +1581,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1548
1581
|
- User experience optimization
|
|
1549
1582
|
|
|
1550
1583
|
```bash
|
|
1551
|
-
>
|
|
1584
|
+
> Use the expert-uiux subagent to"Build design system based on shadcn/ui"
|
|
1552
1585
|
```
|
|
1553
1586
|
|
|
1554
1587
|
---
|
|
@@ -1564,12 +1597,44 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1564
1597
|
- Memory leak detection
|
|
1565
1598
|
|
|
1566
1599
|
```bash
|
|
1567
|
-
>
|
|
1600
|
+
> Use the expert-debug subagent to"Analyze slow API response time"
|
|
1568
1601
|
```
|
|
1569
1602
|
|
|
1570
1603
|
---
|
|
1571
1604
|
|
|
1572
|
-
|
|
1605
|
+
#### expert-performance (Performance Optimization)
|
|
1606
|
+
|
|
1607
|
+
**Expertise**: Performance profiling, load testing, optimization strategies
|
|
1608
|
+
**Use cases**:
|
|
1609
|
+
|
|
1610
|
+
- Application performance optimization
|
|
1611
|
+
- Memory usage analysis
|
|
1612
|
+
- Database query optimization
|
|
1613
|
+
- Caching strategies
|
|
1614
|
+
|
|
1615
|
+
```bash
|
|
1616
|
+
> Use the expert-performance subagent to"Optimize application response time"
|
|
1617
|
+
```
|
|
1618
|
+
|
|
1619
|
+
---
|
|
1620
|
+
|
|
1621
|
+
#### expert-testing (Testing Strategy)
|
|
1622
|
+
|
|
1623
|
+
**Expertise**: Test planning, test automation, quality assurance
|
|
1624
|
+
**Use cases**:
|
|
1625
|
+
|
|
1626
|
+
- Test strategy design
|
|
1627
|
+
- Test automation framework setup
|
|
1628
|
+
- Performance testing
|
|
1629
|
+
- Integration testing
|
|
1630
|
+
|
|
1631
|
+
```bash
|
|
1632
|
+
> Use the expert-testing subagent to"Design comprehensive test strategy"
|
|
1633
|
+
```
|
|
1634
|
+
|
|
1635
|
+
---
|
|
1636
|
+
|
|
1637
|
+
### Tier 2: Workflow Managers (8 Managers)
|
|
1573
1638
|
|
|
1574
1639
|
#### manager-spec (SPEC Writing)
|
|
1575
1640
|
|
|
@@ -1577,7 +1642,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1577
1642
|
**Auto-invoked**: When executing `> /moai:1-plan`
|
|
1578
1643
|
|
|
1579
1644
|
```bash
|
|
1580
|
-
>
|
|
1645
|
+
> Use the manager-spec subagent to"Write SPEC for user profile API"
|
|
1581
1646
|
```
|
|
1582
1647
|
|
|
1583
1648
|
---
|
|
@@ -1588,7 +1653,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1588
1653
|
**Auto-invoked**: When executing `> /moai:2-run`
|
|
1589
1654
|
|
|
1590
1655
|
```bash
|
|
1591
|
-
>
|
|
1656
|
+
> Use the manager-tdd subagent to"Implement SPEC-001"
|
|
1592
1657
|
```
|
|
1593
1658
|
|
|
1594
1659
|
---
|
|
@@ -1599,7 +1664,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1599
1664
|
**Auto-invoked**: When executing `> /moai:3-sync`
|
|
1600
1665
|
|
|
1601
1666
|
```bash
|
|
1602
|
-
>
|
|
1667
|
+
> Use the manager-docs subagent to"Generate documentation for login feature"
|
|
1603
1668
|
```
|
|
1604
1669
|
|
|
1605
1670
|
---
|
|
@@ -1610,7 +1675,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1610
1675
|
**Auto-invoked**: After `> /moai:2-run` completion
|
|
1611
1676
|
|
|
1612
1677
|
```bash
|
|
1613
|
-
>
|
|
1678
|
+
> Use the manager-quality subagent to"Verify code quality"
|
|
1614
1679
|
```
|
|
1615
1680
|
|
|
1616
1681
|
---
|
|
@@ -1625,14 +1690,57 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1625
1690
|
- Performance optimization strategy
|
|
1626
1691
|
|
|
1627
1692
|
```bash
|
|
1628
|
-
>
|
|
1693
|
+
> Use the manager-strategy subagent to"Plan monolith to microservices migration"
|
|
1629
1694
|
# Or use Built-in agent
|
|
1630
|
-
>
|
|
1695
|
+
> Use the Plan subagent to"Plan monolith to microservices migration"
|
|
1631
1696
|
```
|
|
1632
1697
|
|
|
1633
1698
|
---
|
|
1634
1699
|
|
|
1635
|
-
|
|
1700
|
+
#### manager-claude-code (Claude Code Integration)
|
|
1701
|
+
|
|
1702
|
+
**Purpose**: Claude Code configuration, optimization, and integration management
|
|
1703
|
+
**Use cases**:
|
|
1704
|
+
|
|
1705
|
+
- Claude Code settings optimization
|
|
1706
|
+
- Hook configuration and management
|
|
1707
|
+
- MCP server integration
|
|
1708
|
+
- Performance tuning
|
|
1709
|
+
|
|
1710
|
+
```bash
|
|
1711
|
+
> Use the manager-claude-code subagent to"Optimize Claude Code configuration"
|
|
1712
|
+
```
|
|
1713
|
+
|
|
1714
|
+
---
|
|
1715
|
+
|
|
1716
|
+
#### manager-git (Git Workflow)
|
|
1717
|
+
|
|
1718
|
+
**Purpose**: Git workflow management, branch strategies, and automation
|
|
1719
|
+
**Use cases**:
|
|
1720
|
+
|
|
1721
|
+
- Git workflow setup
|
|
1722
|
+
- Branch strategy design
|
|
1723
|
+
- Commit message optimization
|
|
1724
|
+
- Merge request automation
|
|
1725
|
+
|
|
1726
|
+
```bash
|
|
1727
|
+
> Use the manager-git subagent to"Setup Git workflow for team collaboration"
|
|
1728
|
+
```
|
|
1729
|
+
|
|
1730
|
+
---
|
|
1731
|
+
|
|
1732
|
+
#### manager-project (Project Management)
|
|
1733
|
+
|
|
1734
|
+
**Purpose**: Project initialization, metadata management, and template optimization
|
|
1735
|
+
**Auto-invoked**: When executing `> /moai:0-project`
|
|
1736
|
+
|
|
1737
|
+
```bash
|
|
1738
|
+
> Use the manager-project subagent to"Initialize project with optimal settings"
|
|
1739
|
+
```
|
|
1740
|
+
|
|
1741
|
+
---
|
|
1742
|
+
|
|
1743
|
+
### Tier 3: Meta-generators (4 Generators)
|
|
1636
1744
|
|
|
1637
1745
|
#### builder-agent
|
|
1638
1746
|
|
|
@@ -1640,7 +1748,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1640
1748
|
**Use case**: Create organization-specific agents
|
|
1641
1749
|
|
|
1642
1750
|
```bash
|
|
1643
|
-
>
|
|
1751
|
+
> Use the builder-agent subagent to "Create data analysis specialist agent"
|
|
1644
1752
|
```
|
|
1645
1753
|
|
|
1646
1754
|
---
|
|
@@ -1651,7 +1759,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1651
1759
|
**Use case**: Develop team-specific skills
|
|
1652
1760
|
|
|
1653
1761
|
```bash
|
|
1654
|
-
>
|
|
1762
|
+
> Use the builder-skill subagent to"Create GraphQL API development skill module"
|
|
1655
1763
|
```
|
|
1656
1764
|
|
|
1657
1765
|
---
|
|
@@ -1662,12 +1770,25 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1662
1770
|
**Use case**: Custom workflow automation
|
|
1663
1771
|
|
|
1664
1772
|
```bash
|
|
1665
|
-
>
|
|
1773
|
+
> Use the builder-command subagent to"Create > /moai:deploy command (auto-deployment workflow)"
|
|
1774
|
+
```
|
|
1775
|
+
|
|
1776
|
+
---
|
|
1777
|
+
|
|
1778
|
+
#### builder-plugin
|
|
1779
|
+
|
|
1780
|
+
**Purpose**: Create and manage Claude Code plugins
|
|
1781
|
+
**Use case**: Plugin creation (Standalone/MoAI-Integrated modes), validation, migration, and marketplace setup
|
|
1782
|
+
**New in v0.40**: Standalone mode for MoAI-independent plugins, comprehensive testing section
|
|
1783
|
+
|
|
1784
|
+
```bash
|
|
1785
|
+
> Use the builder-plugin subagent to"Create security-tools plugin with commands, agents, and hooks"
|
|
1786
|
+
> Use the builder-plugin subagent to"Create standalone plugin for public distribution"
|
|
1666
1787
|
```
|
|
1667
1788
|
|
|
1668
1789
|
---
|
|
1669
1790
|
|
|
1670
|
-
### Tier 4: MCP Integrators (
|
|
1791
|
+
### Tier 4: MCP Integrators (6 Integrators)
|
|
1671
1792
|
|
|
1672
1793
|
#### mcp-context7 (Documentation Lookup)
|
|
1673
1794
|
|
|
@@ -1679,7 +1800,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1679
1800
|
- Verify library compatibility
|
|
1680
1801
|
|
|
1681
1802
|
```bash
|
|
1682
|
-
>
|
|
1803
|
+
> Use the mcp-context7 subagent to"Lookup React 19 latest Hooks API"
|
|
1683
1804
|
```
|
|
1684
1805
|
|
|
1685
1806
|
---
|
|
@@ -1695,7 +1816,7 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1695
1816
|
- SPEC analysis
|
|
1696
1817
|
|
|
1697
1818
|
```bash
|
|
1698
|
-
>
|
|
1819
|
+
> Use the mcp-sequential-thinking subagent to"Analyze microservices architecture design"
|
|
1699
1820
|
```
|
|
1700
1821
|
|
|
1701
1822
|
---
|
|
@@ -1710,12 +1831,44 @@ Each agent has specific domain expertise. Select the right agent for your task.
|
|
|
1710
1831
|
- Cross-browser verification
|
|
1711
1832
|
|
|
1712
1833
|
```bash
|
|
1713
|
-
>
|
|
1834
|
+
> Use the mcp-playwright subagent to"Create E2E tests for login feature"
|
|
1835
|
+
```
|
|
1836
|
+
|
|
1837
|
+
---
|
|
1838
|
+
|
|
1839
|
+
#### mcp-figma (Design Integration)
|
|
1840
|
+
|
|
1841
|
+
**Purpose**: Figma design system integration, UI components extraction
|
|
1842
|
+
**Use cases**:
|
|
1843
|
+
|
|
1844
|
+
- Design system analysis
|
|
1845
|
+
- UI component extraction
|
|
1846
|
+
- Design token management
|
|
1847
|
+
- Design-to-code workflow
|
|
1848
|
+
|
|
1849
|
+
```bash
|
|
1850
|
+
> Use the mcp-figma subagent to"Extract design system from Figma file"
|
|
1714
1851
|
```
|
|
1715
1852
|
|
|
1716
1853
|
---
|
|
1717
1854
|
|
|
1718
|
-
|
|
1855
|
+
#### mcp-notion (Workspace Management)
|
|
1856
|
+
|
|
1857
|
+
**Purpose**: Notion workspace management, database operations, content management
|
|
1858
|
+
**Use cases**:
|
|
1859
|
+
|
|
1860
|
+
- Documentation management
|
|
1861
|
+
- Database operations
|
|
1862
|
+
- Content synchronization
|
|
1863
|
+
- Knowledge base organization
|
|
1864
|
+
|
|
1865
|
+
```bash
|
|
1866
|
+
> Use the mcp-notion subagent to"Sync project documentation with Notion"
|
|
1867
|
+
```
|
|
1868
|
+
|
|
1869
|
+
---
|
|
1870
|
+
|
|
1871
|
+
### Tier 5: AI Services (1 Service)
|
|
1719
1872
|
|
|
1720
1873
|
#### ai-nano-banana (Image Generation)
|
|
1721
1874
|
|
|
@@ -1731,38 +1884,236 @@ For more details, see [15. 📸 ai-nano-banana Agent Usage Guide](#15---ai-nano-
|
|
|
1731
1884
|
|
|
1732
1885
|
---
|
|
1733
1886
|
|
|
1734
|
-
## 9. Skill Library (
|
|
1887
|
+
## 9. Skill Library (49 Skills)
|
|
1735
1888
|
|
|
1736
1889
|

|
|
1737
1890
|
|
|
1738
|
-
MoAI-ADK provides **
|
|
1739
|
-
|
|
1740
|
-
###
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1891
|
+
MoAI-ADK provides **49 specialized skills** in 8 categories. Each skill can be used independently or in combination.
|
|
1892
|
+
|
|
1893
|
+
### 🏗️ Foundation
|
|
1894
|
+
|
|
1895
|
+
Core philosophy and execution rules foundation skills.
|
|
1896
|
+
|
|
1897
|
+
- **moai-foundation-core**
|
|
1898
|
+
- TRUST 5, SPEC-First TDD, agent delegation patterns, token optimization
|
|
1899
|
+
- Execution rules for building all AI-powered development workflows
|
|
1900
|
+
|
|
1901
|
+
- **moai-foundation-context**
|
|
1902
|
+
- Enterprise context management with token budget optimization and state persistence
|
|
1903
|
+
- Session memory system and efficient token utilization strategies
|
|
1904
|
+
|
|
1905
|
+
- **moai-foundation-claude**
|
|
1906
|
+
- Skill authoring kit aligned with Claude Code official documentation
|
|
1907
|
+
- Agents, sub-agent templates, slash commands, hooks, memory, IAM rules
|
|
1908
|
+
|
|
1909
|
+
- **moai-foundation-quality**
|
|
1910
|
+
- TRUST 5 validation, proactive analysis, automated best practices enforcement
|
|
1911
|
+
- Enterprise-grade code quality assurance system
|
|
1912
|
+
|
|
1913
|
+
- **moai-plugin-builder**
|
|
1914
|
+
- Claude Code plugin development patterns, templates, and best practices
|
|
1915
|
+
- Plugin structure, component generation, validation, and migration guides
|
|
1916
|
+
- Standalone mode for MoAI-independent plugins, marketplace creation support
|
|
1917
|
+
|
|
1918
|
+
### 🎯 Domain
|
|
1919
|
+
|
|
1920
|
+
Deep expertise for specific technology domains.
|
|
1921
|
+
|
|
1922
|
+
- **moai-domain-backend**
|
|
1923
|
+
- Framework-agnostic backend design, 13+ framework expertise
|
|
1924
|
+
- API design, database integration, microservices architecture
|
|
1925
|
+
|
|
1926
|
+
- **moai-domain-frontend**
|
|
1927
|
+
- Modern UI/UX patterns including React 19, Next.js 16, Vue 3.5
|
|
1928
|
+
- Component architecture, state management, responsive design
|
|
1929
|
+
|
|
1930
|
+
- **moai-domain-database**
|
|
1931
|
+
- Database expertise including PostgreSQL, MongoDB, Redis
|
|
1932
|
+
- Query performance optimization, data modeling, database strategies
|
|
1933
|
+
|
|
1934
|
+
- **moai-domain-uiux**
|
|
1935
|
+
- Enterprise design systems, component architecture, accessibility
|
|
1936
|
+
- WCAG compliance, design tokens, icons, theming system
|
|
1937
|
+
|
|
1938
|
+
### 💻 Language (16 Skills)
|
|
1939
|
+
|
|
1940
|
+
Support for various programming languages and frameworks.
|
|
1941
|
+
|
|
1942
|
+
- **moai-lang-python**
|
|
1943
|
+
- Python 3.13+ for FastAPI, Django, async patterns, data science
|
|
1944
|
+
- Testing with pytest, modern Python features and async programming
|
|
1945
|
+
|
|
1946
|
+
- **moai-lang-javascript** *(NEW)*
|
|
1947
|
+
- ES2024+, Node.js 22 LTS, Deno, Bun runtimes
|
|
1948
|
+
- Express, Fastify, Hono frameworks; Vitest/Jest testing; ESLint 9 flat config
|
|
1949
|
+
|
|
1950
|
+
- **moai-lang-typescript**
|
|
1951
|
+
- React 19, Next.js 16 App Router, type-safe APIs with tRPC
|
|
1952
|
+
- Zod validation, modern TypeScript 5.9+ patterns and frontend
|
|
1953
|
+
|
|
1954
|
+
- **moai-lang-go**
|
|
1955
|
+
- High-performance microservices with Fiber, Gin, GORM
|
|
1956
|
+
- Go 1.23+ concurrency patterns and cloud-native applications
|
|
1957
|
+
|
|
1958
|
+
- **moai-lang-rust**
|
|
1959
|
+
- Memory-safe systems programming with Axum, Tokio, SQLx
|
|
1960
|
+
- Rust 1.91+ for WebAssembly and high-performance applications
|
|
1961
|
+
|
|
1962
|
+
- **moai-lang-java**
|
|
1963
|
+
- Spring Boot 3.3, virtual threads, Java 21 LTS enterprise patterns
|
|
1964
|
+
- Microservices, Android apps, Akka actor systems
|
|
1965
|
+
|
|
1966
|
+
- **moai-lang-csharp**
|
|
1967
|
+
- C# 12/.NET 8 for ASP.NET Core, Entity Framework, Blazor
|
|
1968
|
+
- Enterprise applications and MAUI cross-platform development
|
|
1969
|
+
|
|
1970
|
+
- **moai-lang-swift**
|
|
1971
|
+
- iOS/macOS development with SwiftUI, Combine, Swift 6 concurrency
|
|
1972
|
+
- Apple ecosystem and modern Swift language features
|
|
1973
|
+
|
|
1974
|
+
- **moai-lang-kotlin**
|
|
1975
|
+
- Kotlin 2.0 for Ktor, coroutines, Compose Multiplatform
|
|
1976
|
+
- Android 15, KMP cross-platform and Kotlin-idiomatic patterns
|
|
1977
|
+
|
|
1978
|
+
- **moai-lang-ruby**
|
|
1979
|
+
- Ruby 3.3+ for Ruby on Rails 8, ActiveRecord, Hotwire/Turbo
|
|
1980
|
+
- Modern Ruby patterns and web development automation
|
|
1981
|
+
|
|
1982
|
+
- **moai-lang-php**
|
|
1983
|
+
- PHP 8.3+ for Laravel 11, Symfony 7, Eloquent ORM
|
|
1984
|
+
- Modern PHP architecture and web application development
|
|
1985
|
+
|
|
1986
|
+
- **moai-lang-elixir**
|
|
1987
|
+
- Elixir 1.17+ development with Phoenix 1.7, LiveView, Ecto
|
|
1988
|
+
- Real-time applications, distributed systems, OTP patterns
|
|
1989
|
+
|
|
1990
|
+
- **moai-lang-scala**
|
|
1991
|
+
- Scala 3.4+ for Akka, Cats Effect, ZIO, Spark
|
|
1992
|
+
- Distributed systems and big data applications
|
|
1993
|
+
|
|
1994
|
+
- **moai-lang-cpp**
|
|
1995
|
+
- C++23/20 with RAII, smart pointers, concepts, modules
|
|
1996
|
+
- High-performance systems, game engines, embedded systems
|
|
1997
|
+
|
|
1998
|
+
- **moai-lang-flutter**
|
|
1999
|
+
- Flutter 3.24+/Dart 3.5+ development with Riverpod, go_router
|
|
2000
|
+
- Cross-platform mobile apps and desktop applications
|
|
2001
|
+
|
|
2002
|
+
- **moai-lang-r**
|
|
2003
|
+
- R 4.4+ data analysis with tidyverse, ggplot2, Shiny
|
|
2004
|
+
- Statistical modeling, data visualization, interactive web apps
|
|
2005
|
+
|
|
2006
|
+
### 🚀 Platform (10 Skills)
|
|
2007
|
+
|
|
2008
|
+
Integration with major cloud platforms and BaaS services.
|
|
2009
|
+
|
|
2010
|
+
- **moai-platform-supabase**
|
|
2011
|
+
- Supabase with PostgreSQL 16, pgvector, RLS, real-time subscriptions
|
|
2012
|
+
- Serverless functions, auto-sync, Edge Functions deployment
|
|
2013
|
+
|
|
2014
|
+
- **moai-platform-auth0**
|
|
2015
|
+
- Auth0 security specialist: Attack Protection, MFA, Token Security, DPoP/mTLS
|
|
2016
|
+
- SSO, SAML, OIDC, organizations, FAPI/GDPR/HIPAA compliance
|
|
2017
|
+
|
|
2018
|
+
- **moai-platform-clerk**
|
|
2019
|
+
- Clerk for WebAuthn, passkeys, passwordless authentication
|
|
2020
|
+
- Modern user management and beautiful UI components
|
|
2021
|
+
|
|
2022
|
+
- **moai-platform-neon**
|
|
2023
|
+
- Neon with auto-scaling, database branching, PITR
|
|
2024
|
+
- Serverless PostgreSQL and connection pooling optimization
|
|
2025
|
+
|
|
2026
|
+
- **moai-platform-firebase-auth**
|
|
2027
|
+
- Firebase Authentication with social auth, phone auth, anonymous login
|
|
2028
|
+
- Google ecosystem and mobile-first authentication patterns
|
|
2029
|
+
|
|
2030
|
+
- **moai-platform-firestore**
|
|
2031
|
+
- NoSQL data modeling, real-time sync, offline support
|
|
2032
|
+
- Mobile-first apps and Security Rules configuration
|
|
2033
|
+
|
|
2034
|
+
- **moai-platform-vercel**
|
|
2035
|
+
- Vercel for Edge Functions, Next.js optimization, ISR
|
|
2036
|
+
- Edge-first deployment and preview deployment strategies
|
|
2037
|
+
|
|
2038
|
+
- **moai-platform-railway**
|
|
2039
|
+
- Railway for Docker, multi-service architectures, persistent volumes
|
|
2040
|
+
- Containerized full-stack applications and auto-scaling
|
|
2041
|
+
|
|
2042
|
+
- **moai-platform-convex**
|
|
2043
|
+
- Convex for TypeScript-first reactive patterns, optimistic updates
|
|
2044
|
+
- Real-time collaborative apps and server functions
|
|
2045
|
+
|
|
2046
|
+
### 🛠️ Tool (2 Skills)
|
|
2047
|
+
|
|
2048
|
+
Developer tools and code analysis utilities.
|
|
2049
|
+
|
|
2050
|
+
- **moai-tool-ast-grep**
|
|
2051
|
+
- AST-based structural code search, security scanning, refactoring
|
|
2052
|
+
- 40+ language support with pattern matching and code transformation
|
|
2053
|
+
|
|
2054
|
+
- **moai-tool-opencode**
|
|
2055
|
+
- OpenCode.ai open-source AI coding agent reference
|
|
2056
|
+
- TUI, CLI, IDE integration, MCP servers, plugins, and SDK development
|
|
2057
|
+
|
|
2058
|
+
### 📋 Workflow (7 Skills)
|
|
2059
|
+
|
|
2060
|
+
Workflow skills for automating and optimizing development processes.
|
|
2061
|
+
|
|
2062
|
+
- **moai-workflow-spec**
|
|
2063
|
+
- EARS format, requirements clarification, Plan-Run-Sync integration
|
|
2064
|
+
- SPEC workflow orchestration and acceptance criteria definition
|
|
2065
|
+
|
|
2066
|
+
- **moai-workflow-testing**
|
|
2067
|
+
- TDD, debugging, performance optimization, code review integration
|
|
2068
|
+
- Comprehensive development workflows and quality assurance
|
|
2069
|
+
|
|
2070
|
+
- **moai-workflow-project**
|
|
2071
|
+
- Project management, documentation, language initialization modules
|
|
2072
|
+
- Integrated project system and template optimization
|
|
2073
|
+
|
|
2074
|
+
- **moai-workflow-templates**
|
|
2075
|
+
- Code boilerplates, feedback templates, project optimization
|
|
2076
|
+
- Enterprise template management and asset reuse maximization
|
|
2077
|
+
|
|
2078
|
+
- **moai-workflow-jit-docs**
|
|
2079
|
+
- Intent-based intelligent document search and caching
|
|
2080
|
+
- Real-time API documentation access and version compatibility checks
|
|
2081
|
+
|
|
2082
|
+
- **moai-workflow-docs**
|
|
2083
|
+
- Nextra documentation system, technical writing, API documentation
|
|
2084
|
+
- Automated documentation generation and knowledge base management
|
|
2085
|
+
|
|
2086
|
+
- **moai-worktree**
|
|
2087
|
+
- Git worktree management for parallel SPEC development
|
|
2088
|
+
- Isolated workspaces, automatic registration, MoAI-ADK integration
|
|
2089
|
+
|
|
2090
|
+
### 📚 Library (4 Skills)
|
|
2091
|
+
|
|
2092
|
+
Skills specialized for specific libraries and frameworks.
|
|
2093
|
+
|
|
2094
|
+
- **moai-library-shadcn**
|
|
2095
|
+
- Professional implementation guide for shadcn/ui, Radix, Tailwind CSS
|
|
2096
|
+
- React components and modern UI design systems
|
|
2097
|
+
|
|
2098
|
+
- **moai-library-mermaid**
|
|
2099
|
+
- Enterprise Mermaid diagramming with MCP Playwright
|
|
2100
|
+
- 21 diagram types and visual workflow documentation
|
|
2101
|
+
|
|
2102
|
+
- **moai-library-nextra**
|
|
2103
|
+
- Next.js-based enterprise documentation framework
|
|
2104
|
+
- Markdown optimization and dynamic documentation generation
|
|
2105
|
+
|
|
2106
|
+
- **moai-formats-data**
|
|
2107
|
+
- TOON encoding, JSON/YAML optimization, data serialization
|
|
2108
|
+
- Data validation and processing for modern applications
|
|
2109
|
+
|
|
2110
|
+
### 🤖 AI Integration (1 Skill)
|
|
2111
|
+
|
|
2112
|
+
Specialized skills for AI service integration.
|
|
2113
|
+
|
|
2114
|
+
- **moai-ai-nano-banana**
|
|
2115
|
+
- Image generation with Gemini 3 Nano Banana Pro
|
|
2116
|
+
- Professional visual content creation with natural language prompts
|
|
1766
2117
|
|
|
1767
2118
|
### 🎯 Skill Usage Guide
|
|
1768
2119
|
|
|
@@ -1770,22 +2121,24 @@ MoAI-ADK provides **24 specialized skills** in 6 categories. Each skill can be u
|
|
|
1770
2121
|
|
|
1771
2122
|
```python
|
|
1772
2123
|
# Method 1: Direct invocation (developers)
|
|
1773
|
-
Skill("moai-lang-
|
|
2124
|
+
Skill("moai-lang-python")
|
|
1774
2125
|
|
|
1775
2126
|
# Method 2: Alfred auto-selection (general users)
|
|
1776
2127
|
"Create a FastAPI server in Python"
|
|
1777
|
-
→ Alfred automatically selects moai-lang-
|
|
2128
|
+
→ Alfred automatically selects moai-lang-python + moai-platform-supabase
|
|
1778
2129
|
```
|
|
1779
2130
|
|
|
1780
2131
|
#### Skill Composition Patterns
|
|
1781
2132
|
|
|
1782
|
-
**Backend API**: `moai-foundation-core` + `moai-lang-
|
|
2133
|
+
**Backend API**: `moai-foundation-core` + `moai-lang-python` + `moai-platform-supabase`
|
|
1783
2134
|
|
|
1784
|
-
**Frontend UI**: `moai-
|
|
2135
|
+
**Frontend UI**: `moai-domain-uiux` + `moai-lang-typescript` + `moai-library-shadcn`
|
|
1785
2136
|
|
|
1786
2137
|
**Documentation**: `moai-library-nextra` + `moai-workflow-docs` + `moai-library-mermaid`
|
|
1787
2138
|
|
|
1788
|
-
**Testing**: `moai-lang-
|
|
2139
|
+
**Testing**: `moai-lang-python` + `moai-workflow-testing` + `moai-foundation-quality`
|
|
2140
|
+
|
|
2141
|
+
**Data Analysis**: `moai-lang-r` + `moai-domain-database` + `moai-formats-data`
|
|
1789
2142
|
|
|
1790
2143
|
---
|
|
1791
2144
|
|
|
@@ -1793,7 +2146,7 @@ Skill("moai-lang-unified")
|
|
|
1793
2146
|
|
|
1794
2147
|
### 🎭 Agent Composition Patterns
|
|
1795
2148
|
|
|
1796
|
-
MoAI-ADK's
|
|
2149
|
+
MoAI-ADK's 28 agents execute in optimal combinations based on task type.
|
|
1797
2150
|
|
|
1798
2151
|
### Pattern 1: New Feature Development
|
|
1799
2152
|
|
|
@@ -1834,16 +2187,16 @@ manager-quality (Verification)
|
|
|
1834
2187
|
**Example**:
|
|
1835
2188
|
|
|
1836
2189
|
```bash
|
|
1837
|
-
>
|
|
2190
|
+
> Use the expert-debug subagent to"Analyze slow API response"
|
|
1838
2191
|
# → Finds bottleneck (DB query N+1 problem)
|
|
1839
2192
|
|
|
1840
|
-
>
|
|
2193
|
+
> Use the mcp-sequential-thinking subagent to"Plan N+1 problem optimization strategy"
|
|
1841
2194
|
# → Suggests ORM query optimization
|
|
1842
2195
|
|
|
1843
|
-
>
|
|
2196
|
+
> Use the expert-backend subagent to"Implement ORM query optimization"
|
|
1844
2197
|
# → Applies select_related(), prefetch_related()
|
|
1845
2198
|
|
|
1846
|
-
>
|
|
2199
|
+
> Use the manager-quality subagent to"Performance test and verification"
|
|
1847
2200
|
# → Response time 500ms → 50ms (90% improvement)
|
|
1848
2201
|
```
|
|
1849
2202
|
|
|
@@ -1862,13 +2215,13 @@ mcp-playwright (E2E testing)
|
|
|
1862
2215
|
**Example**:
|
|
1863
2216
|
|
|
1864
2217
|
```bash
|
|
1865
|
-
>
|
|
2218
|
+
> Use the expert-uiux subagent to"Login page design based on shadcn/ui"
|
|
1866
2219
|
# → Combination of Button, Input, Card components
|
|
1867
2220
|
|
|
1868
|
-
>
|
|
2221
|
+
> Use the expert-frontend subagent to"Implement React login form"
|
|
1869
2222
|
# → Implementation using shadcn/ui components
|
|
1870
2223
|
|
|
1871
|
-
>
|
|
2224
|
+
> Use the mcp-playwright subagent to"E2E test for login scenario"
|
|
1872
2225
|
# → Auto-test success/failure cases
|
|
1873
2226
|
```
|
|
1874
2227
|
|
|
@@ -1889,16 +2242,16 @@ manager-quality (Re-verification)
|
|
|
1889
2242
|
### Pattern 5: Microservices Architecture Design
|
|
1890
2243
|
|
|
1891
2244
|
```bash
|
|
1892
|
-
>
|
|
2245
|
+
> Use the mcp-sequential-thinking subagent to"Monolith to microservices migration strategy"
|
|
1893
2246
|
# → Service decomposition strategy, API gateway design
|
|
1894
2247
|
|
|
1895
|
-
>
|
|
2248
|
+
> Use the expert-backend subagent to"Develop user service & order service"
|
|
1896
2249
|
# → Service-specific API implementation
|
|
1897
2250
|
|
|
1898
|
-
>
|
|
2251
|
+
> Use the expert-devops subagent to"Kubernetes deployment configuration"
|
|
1899
2252
|
# → Auto-generate Docker, K8s manifests
|
|
1900
2253
|
|
|
1901
|
-
>
|
|
2254
|
+
> Use the manager-docs subagent to"Service example documentation"
|
|
1902
2255
|
# → Service map, API docs, deployment guide
|
|
1903
2256
|
```
|
|
1904
2257
|
|
|
@@ -2002,7 +2355,226 @@ flowchart TD
|
|
|
2002
2355
|
|
|
2003
2356
|
---
|
|
2004
2357
|
|
|
2005
|
-
## 12.
|
|
2358
|
+
## 12. AST-Grep Integration
|
|
2359
|
+
|
|
2360
|
+
### 🔍 What is AST-Grep?
|
|
2361
|
+
|
|
2362
|
+
**AST-Grep** (sg CLI) is a structural code search and refactoring tool that uses Abstract Syntax Tree (AST) pattern matching instead of text-based regex. This enables:
|
|
2363
|
+
|
|
2364
|
+
- **Precise code analysis** (understands code structure, not just text)
|
|
2365
|
+
- **Language-aware patterns** (works with 40+ programming languages)
|
|
2366
|
+
- **Safe refactoring** (AST-level transformations preserve semantics)
|
|
2367
|
+
- **Security vulnerability detection** (pattern-based security scanning)
|
|
2368
|
+
|
|
2369
|
+
### 🎯 Core Capabilities
|
|
2370
|
+
|
|
2371
|
+
| Capability | Description | Example Use Cases |
|
|
2372
|
+
|------------|-------------|-------------------|
|
|
2373
|
+
| **Structural Search** | Find code patterns by AST structure, not text | Find all SQL queries without parameterization |
|
|
2374
|
+
| **Security Scanning** | Automatic vulnerability detection on code changes | Detect SQL injection, XSS, hardcoded secrets |
|
|
2375
|
+
| **Pattern-Based Refactoring** | Safe code transformations using AST patterns | Rename variables across files, extract functions |
|
|
2376
|
+
| **Multi-Language Support** | Works with 40+ programming languages | Python, TypeScript, Go, Rust, Java, C++, etc. |
|
|
2377
|
+
|
|
2378
|
+
### 🔧 How It Works in MoAI-ADK
|
|
2379
|
+
|
|
2380
|
+
#### Automatic Security Scanning
|
|
2381
|
+
|
|
2382
|
+
Every time you write or edit code, MoAI-ADK automatically runs AST-Grep security scanning:
|
|
2383
|
+
|
|
2384
|
+
```bash
|
|
2385
|
+
# After any Write or Edit operation
|
|
2386
|
+
$ ast-grep scan --rule .claude/skills/moai-tool-ast-grep/rules/security/
|
|
2387
|
+
```
|
|
2388
|
+
|
|
2389
|
+
**Detected vulnerabilities:**
|
|
2390
|
+
- SQL injection (SQL queries without parameterization)
|
|
2391
|
+
- XSS vulnerabilities (unsafe HTML rendering)
|
|
2392
|
+
- Hardcoded secrets (API keys, passwords in code)
|
|
2393
|
+
- Insecure deserialization
|
|
2394
|
+
- Path traversal vulnerabilities
|
|
2395
|
+
|
|
2396
|
+
#### Large-Scale Refactoring
|
|
2397
|
+
|
|
2398
|
+
Use the `expert-refactoring` agent for complex code transformations:
|
|
2399
|
+
|
|
2400
|
+
```bash
|
|
2401
|
+
# Rename a variable across the entire codebase
|
|
2402
|
+
> Use the expert-refactoring subagent to"Rename all occurrences of 'userName' to 'username'"
|
|
2403
|
+
|
|
2404
|
+
# Extract repeated code into a function
|
|
2405
|
+
> Use the expert-refactoring subagent to"Extract this authentication logic into a separate function"
|
|
2406
|
+
|
|
2407
|
+
# Apply design patterns
|
|
2408
|
+
> Use the expert-refactoring subagent to"Apply Singleton pattern to DatabaseConnection class"
|
|
2409
|
+
```
|
|
2410
|
+
|
|
2411
|
+
### 📁 AST-Grep Components in MoAI-ADK
|
|
2412
|
+
|
|
2413
|
+
```
|
|
2414
|
+
.claude/
|
|
2415
|
+
├── skills/moai-tool-ast-grep/ # AST-Grep skill
|
|
2416
|
+
│ ├── SKILL.md # Main skill documentation
|
|
2417
|
+
│ ├── modules/ # Pattern modules
|
|
2418
|
+
│ │ ├── pattern-syntax.md # Pattern syntax guide
|
|
2419
|
+
│ │ ├── security-rules.md # Security rule definitions
|
|
2420
|
+
│ │ ├── refactoring-patterns.md # Refactoring patterns
|
|
2421
|
+
│ │ └── language-specific.md # Language-specific patterns
|
|
2422
|
+
│ └── rules/ # Rule files
|
|
2423
|
+
│ ├── sgconfig.yml # Global configuration
|
|
2424
|
+
│ ├── security/ # Security rules
|
|
2425
|
+
│ │ ├── sql-injection.yml
|
|
2426
|
+
│ │ ├── xss.yml
|
|
2427
|
+
│ │ └── hardcoded-secrets.yml
|
|
2428
|
+
│ ├── quality/ # Quality rules
|
|
2429
|
+
│ │ ├── code-duplication.yml
|
|
2430
|
+
│ │ └── naming-convention.yml
|
|
2431
|
+
│ └── languages/ # Language-specific rules
|
|
2432
|
+
│ ├── python.yml
|
|
2433
|
+
│ ├── typescript.yml
|
|
2434
|
+
│ └── go.yml
|
|
2435
|
+
├── agents/moai/expert-refactoring.md # Refactoring agent
|
|
2436
|
+
└── hooks/moai/post_tool__ast_grep_scan.py # Auto-scan hook
|
|
2437
|
+
```
|
|
2438
|
+
|
|
2439
|
+
### 🚀 Quick Start
|
|
2440
|
+
|
|
2441
|
+
#### Basic Structural Search
|
|
2442
|
+
|
|
2443
|
+
```bash
|
|
2444
|
+
# Find all SQL queries in Python code
|
|
2445
|
+
sg -p 'sql_query($$$)' --lang python
|
|
2446
|
+
|
|
2447
|
+
# Find all React useEffect hooks
|
|
2448
|
+
sg -p 'useEffect($$$, $$$)' --lang typescript
|
|
2449
|
+
```
|
|
2450
|
+
|
|
2451
|
+
#### Security Scanning
|
|
2452
|
+
|
|
2453
|
+
```bash
|
|
2454
|
+
# Scan for security vulnerabilities
|
|
2455
|
+
ast-grep scan -r .claude/skills/moai-tool-ast-grep/rules/security/
|
|
2456
|
+
|
|
2457
|
+
# Scan specific files
|
|
2458
|
+
ast-grep scan src/auth.py -r .claude/skills/moai-tool-ast-grep/rules/security/sql-injection.yml
|
|
2459
|
+
```
|
|
2460
|
+
|
|
2461
|
+
#### Refactoring with AST-Grep
|
|
2462
|
+
|
|
2463
|
+
```bash
|
|
2464
|
+
# Rename variable across project
|
|
2465
|
+
ast-grep rewrite --pattern 'old_name' --rewrite 'new_name' src/
|
|
2466
|
+
|
|
2467
|
+
# Apply custom refactoring rule
|
|
2468
|
+
ast-grep rewrite -r .claude/skills/moai-tool-ast-grep/rules/refactoring/extract-function.yml
|
|
2469
|
+
```
|
|
2470
|
+
|
|
2471
|
+
### 🔐 Security Rule Examples
|
|
2472
|
+
|
|
2473
|
+
**SQL Injection Detection Rule** (`sql-injection.yml`):
|
|
2474
|
+
|
|
2475
|
+
```yaml
|
|
2476
|
+
id: sql-injection
|
|
2477
|
+
message: SQL query uses string formatting (potential injection)
|
|
2478
|
+
severity: error
|
|
2479
|
+
language: python
|
|
2480
|
+
rule:
|
|
2481
|
+
pattern: execute($$$)
|
|
2482
|
+
inside:
|
|
2483
|
+
pattern: function($X, $$$)
|
|
2484
|
+
has:
|
|
2485
|
+
pattern: format($$$)
|
|
2486
|
+
stopBy: end
|
|
2487
|
+
```
|
|
2488
|
+
|
|
2489
|
+
**Hardcoded Secrets Detection** (`hardcoded-secrets.yml`):
|
|
2490
|
+
|
|
2491
|
+
```yaml
|
|
2492
|
+
id: hardcoded-secrets
|
|
2493
|
+
message: Hardcoded secret detected in code
|
|
2494
|
+
severity: warning
|
|
2495
|
+
language: generic
|
|
2496
|
+
rule:
|
|
2497
|
+
any:
|
|
2498
|
+
- pattern: password = $S
|
|
2499
|
+
metavariable:
|
|
2500
|
+
S:
|
|
2501
|
+
regex: '["\'].*["\']'
|
|
2502
|
+
- pattern: api_key = $S
|
|
2503
|
+
metavariable:
|
|
2504
|
+
S:
|
|
2505
|
+
regex: '["\'].*["\']'
|
|
2506
|
+
```
|
|
2507
|
+
|
|
2508
|
+
### 🎯 Expert-Refactoring Agent
|
|
2509
|
+
|
|
2510
|
+
The `expert-refactoring` agent specializes in large-scale code transformations:
|
|
2511
|
+
|
|
2512
|
+
**Use Cases:**
|
|
2513
|
+
|
|
2514
|
+
1. **Variable/Function Renaming**: Safe renaming across files
|
|
2515
|
+
2. **Code Extraction**: Extract repeated logic into functions
|
|
2516
|
+
3. **Design Pattern Application**: Apply patterns (Singleton, Factory, etc.)
|
|
2517
|
+
4. **API Migration**: Upgrade API versions across codebase
|
|
2518
|
+
5. **Dead Code Removal**: Find and remove unused code
|
|
2519
|
+
|
|
2520
|
+
**Example Session:**
|
|
2521
|
+
|
|
2522
|
+
```bash
|
|
2523
|
+
> Use the expert-refactoring subagent to"I need to extract user authentication logic into a separate module"
|
|
2524
|
+
|
|
2525
|
+
# Agent will:
|
|
2526
|
+
# 1. Analyze current authentication code structure
|
|
2527
|
+
# 2. Identify repeated authentication patterns
|
|
2528
|
+
# 3. Create new auth module with extracted functions
|
|
2529
|
+
# 4. Update all callers to use new module
|
|
2530
|
+
# 5. Run tests to verify transformation
|
|
2531
|
+
# 6. Report changes made
|
|
2532
|
+
```
|
|
2533
|
+
|
|
2534
|
+
### 📊 Benefits
|
|
2535
|
+
|
|
2536
|
+
| Benefit | Description | Impact |
|
|
2537
|
+
|---------|-------------|--------|
|
|
2538
|
+
| **Early Detection** | Security issues detected immediately | **95% reduction** in security bugs reaching production |
|
|
2539
|
+
| **Safe Refactoring** | AST-level transformations preserve semantics | **99% reduction** in refactoring-induced bugs |
|
|
2540
|
+
| **Language Coverage** | Supports 40+ programming languages | **Unified tool** across polyglot codebases |
|
|
2541
|
+
| **Automation** | Automatic scanning on every code change | **Zero manual effort** for security checks |
|
|
2542
|
+
|
|
2543
|
+
### 🔗 Integration with MoAI-ADK Workflow
|
|
2544
|
+
|
|
2545
|
+
AST-Grep integrates seamlessly with the Plan-Run-Sync cycle:
|
|
2546
|
+
|
|
2547
|
+
```
|
|
2548
|
+
Plan (SPEC) → Run (TDD + AST-Grep Scan) → Sync (Documentation)
|
|
2549
|
+
↓
|
|
2550
|
+
[Automatic Security Scanning]
|
|
2551
|
+
↓
|
|
2552
|
+
[Instant Vulnerability Feedback]
|
|
2553
|
+
```
|
|
2554
|
+
|
|
2555
|
+
**During TDD Phase:**
|
|
2556
|
+
- Write test (Red)
|
|
2557
|
+
- Implement code (Green)
|
|
2558
|
+
- **AST-Grep automatically scans for security issues**
|
|
2559
|
+
- Refactor with confidence (Refactor)
|
|
2560
|
+
|
|
2561
|
+
**If vulnerability detected:**
|
|
2562
|
+
```bash
|
|
2563
|
+
⚠️ AST-Grep: Potential SQL injection detected in src/auth.py:47
|
|
2564
|
+
Pattern: execute(f"SELECT * FROM users WHERE id={user_id}")
|
|
2565
|
+
Suggestion: Use parameterized query: execute("SELECT * FROM users WHERE id=%s", (user_id,))
|
|
2566
|
+
```
|
|
2567
|
+
|
|
2568
|
+
### 📚 Additional Resources
|
|
2569
|
+
|
|
2570
|
+
- **AST-Grep Documentation**: https://ast-grep.github.io/
|
|
2571
|
+
- **Rule Writing Guide**: `.claude/skills/moai-tool-ast-grep/modules/pattern-syntax.md`
|
|
2572
|
+
- **Security Rules**: `.claude/skills/moai-tool-ast-grep/rules/security/`
|
|
2573
|
+
- **Expert-Refactoring Agent**: `.claude/agents/moai/expert-refactoring.md`
|
|
2574
|
+
|
|
2575
|
+
---
|
|
2576
|
+
|
|
2577
|
+
## 13. Advanced Features
|
|
2006
2578
|
|
|
2007
2579
|
### 🌳 Git Worktree CLI (Parallel Development)
|
|
2008
2580
|
|
|
@@ -2017,8 +2589,8 @@ moai worktree create SPEC-001 feature/user-auth
|
|
|
2017
2589
|
# List all worktrees
|
|
2018
2590
|
moai worktree list
|
|
2019
2591
|
|
|
2020
|
-
#
|
|
2021
|
-
moai worktree
|
|
2592
|
+
# Go to worktree
|
|
2593
|
+
moai worktree go SPEC-001
|
|
2022
2594
|
|
|
2023
2595
|
# Remove completed worktree
|
|
2024
2596
|
moai worktree remove SPEC-001
|
|
@@ -2046,8 +2618,8 @@ cd ~/project-worktrees/SPEC-001
|
|
|
2046
2618
|
> /moai:2-run SPEC-001
|
|
2047
2619
|
# ... implement authentication ...
|
|
2048
2620
|
|
|
2049
|
-
#
|
|
2050
|
-
moai worktree
|
|
2621
|
+
# Go back to main for new feature
|
|
2622
|
+
moai worktree go main
|
|
2051
2623
|
> /moai:1-plan "user dashboard" # Creates SPEC-002
|
|
2052
2624
|
```
|
|
2053
2625
|
|
|
@@ -2074,7 +2646,7 @@ moai worktree switch main
|
|
|
2074
2646
|
|
|
2075
2647
|
---
|
|
2076
2648
|
|
|
2077
|
-
##
|
|
2649
|
+
## 14. Advanced Configuration
|
|
2078
2650
|
|
|
2079
2651
|
### 🔧 Configuration File Location
|
|
2080
2652
|
|
|
@@ -2201,7 +2773,7 @@ flowchart TD
|
|
|
2201
2773
|
|
|
2202
2774
|
---
|
|
2203
2775
|
|
|
2204
|
-
##
|
|
2776
|
+
## 15. FAQ & Quick Reference
|
|
2205
2777
|
|
|
2206
2778
|
### Q1: Is SPEC always required?
|
|
2207
2779
|
|
|
@@ -2219,7 +2791,7 @@ flowchart TD
|
|
|
2219
2791
|
|
|
2220
2792
|
```bash
|
|
2221
2793
|
# Skip SPEC and implement directly
|
|
2222
|
-
>
|
|
2794
|
+
> Use the expert-backend subagent to"simple bug fix"
|
|
2223
2795
|
```
|
|
2224
2796
|
|
|
2225
2797
|
**Proceed with SPEC:**
|
|
@@ -2270,7 +2842,7 @@ cat .mcp.json
|
|
|
2270
2842
|
|
|
2271
2843
|
---
|
|
2272
2844
|
|
|
2273
|
-
##
|
|
2845
|
+
## 16. 📸 ai-nano-banana Agent Usage Guide
|
|
2274
2846
|
|
|
2275
2847
|
**Purpose**: Professional image generation using Google Gemini 3 Nano Banana Pro
|
|
2276
2848
|
|
|
@@ -2294,7 +2866,7 @@ cat .mcp.json
|
|
|
2294
2866
|
|
|
2295
2867
|
```bash
|
|
2296
2868
|
# In Claude Code
|
|
2297
|
-
>
|
|
2869
|
+
> Use the ai-nano-banana subagent to"Generate professional login page UI mockup"
|
|
2298
2870
|
```
|
|
2299
2871
|
|
|
2300
2872
|
#### Image Generation Prompts
|
|
@@ -2426,7 +2998,231 @@ White background, consistent style"
|
|
|
2426
2998
|
|
|
2427
2999
|
---
|
|
2428
3000
|
|
|
2429
|
-
##
|
|
3001
|
+
## 17. 🚀 GLM Integration with z.ai (Cost-Effective Alternative)
|
|
3002
|
+
|
|
3003
|
+
### Overview
|
|
3004
|
+
|
|
3005
|
+
For developers concerned about Claude Code usage costs, MoAI-ADK supports **GLM 4.6** integration through **z.ai** at a fraction of the cost. This configuration provides full compatibility with Claude Code while offering significant cost savings.
|
|
3006
|
+
|
|
3007
|
+
### 💡 Why Choose GLM over Claude?
|
|
3008
|
+
|
|
3009
|
+
| Feature | Claude Code | z.ai GLM 4.6 |
|
|
3010
|
+
| --------------------- | ------------------------------- | ----------------------------- |
|
|
3011
|
+
| **Cost** | $20/month (Pro plan) | **$6-$60/month (Flexible)** |
|
|
3012
|
+
| **Models** | Claude 4.5 Sonnet, Opus, Haiku | GLM 4.6, GLM 4.5-air |
|
|
3013
|
+
| **Compatibility** | Native | **100% Claude Compatible** |
|
|
3014
|
+
| **Token Limits** | Limited | **Unlimited on paid plans** |
|
|
3015
|
+
| **API Access** | Included | **Full API access** |
|
|
3016
|
+
| **Speed** | Fast | **Comparable performance** |
|
|
3017
|
+
|
|
3018
|
+
### 🎯 GLM Coding Plan Subscription
|
|
3019
|
+
|
|
3020
|
+
**Exclusive Invitation Link**:
|
|
3021
|
+
🚀 **You've been invited to join the GLM Coding Plan! Enjoy full support for Claude Code, Cline, and 10+ top coding tools. Starting from $3/month.**
|
|
3022
|
+
|
|
3023
|
+
👉 **Subscribe here**: https://z.ai/subscribe?ic=1NDV03BGWU
|
|
3024
|
+
By subscribing through this link, you'll receive a 10% additional discount and dedicated credits from Z.AI to support MoAI-ADK open source development.
|
|
3025
|
+
|
|
3026
|
+
#### Subscription Plans:
|
|
3027
|
+
|
|
3028
|
+
| Plan | Price | Features | Best For |
|
|
3029
|
+
| ------------- | ---------------------------------- | ----------------------------------------------------------------------- | --------------------------------- |
|
|
3030
|
+
| **Lite** | First month $3<br/>From 2nd month $6/month | • 3x Claude Pro usage<br/>• GLM-4.6 powered<br/>• 10+ coding tools compatible | Lightweight workloads, getting started |
|
|
3031
|
+
| **Pro** | First month $15<br/>From 2nd month $30/month | • All Lite benefits<br/>• 5× Lite plan usage<br/>• 40-60% faster<br/>• Vision, Web Search, Web Reader | Professional developers, teams |
|
|
3032
|
+
| **Max** | First month $30<br/>From 2nd month $60/month | • All Pro benefits<br/>• 4× Pro plan usage<br/>• Guaranteed peak performance<br/>• Early feature access | High-volume workloads, power users |
|
|
3033
|
+
| **Enterprise**| Custom | • Custom pricing<br/>• Dedicated support<br/>• SLA guarantees | Large organizations, custom needs |
|
|
3034
|
+
|
|
3035
|
+
#### Benefits for GLM Coding Plan Subscribers:
|
|
3036
|
+
|
|
3037
|
+
1. **Massive Cost Savings**: Lite plan at $6/month (3x Claude Pro usage)
|
|
3038
|
+
2. **Full Tool Compatibility**: Supports Claude Code, Roo Code, Cline, Kilo Code, OpenCode, Crush, Goose, and more
|
|
3039
|
+
3. **High-Performance Models**: Powered by GLM-4.6 (comparable to Claude 4.5 Sonnet)
|
|
3040
|
+
4. **Flexible Pricing**: From $6 Lite to $60 Max (scales with your needs)
|
|
3041
|
+
5. **Performance Options**: Pro plan 40-60% faster, Max plan with guaranteed peak performance
|
|
3042
|
+
6. **Advanced Features**: Vision Understanding, Web Search, Web Reader MCP (Pro+)
|
|
3043
|
+
7. **Support MoAI-ADK**: A portion of your subscription supports continued MoAI-ADK development
|
|
3044
|
+
|
|
3045
|
+
#### **🌟 Recommended Upgrade Path**
|
|
3046
|
+
|
|
3047
|
+
**Step 1: Start with Lite Plan ($6/month)**
|
|
3048
|
+
- Get 3x Claude Pro usage at just $6/month
|
|
3049
|
+
- Try GLM-4.6 with your actual projects for 2-3 weeks
|
|
3050
|
+
- Experience compatibility with 10+ coding tools
|
|
3051
|
+
|
|
3052
|
+
**Step 2: Upgrade Based on Usage**
|
|
3053
|
+
- **For regular development**: Upgrade to **Pro ($30/month)** for 40-60% faster performance
|
|
3054
|
+
- **For heavy workloads**: Choose **Max ($60/month)** for guaranteed peak performance
|
|
3055
|
+
- **Power users benefit**: Pro gives 5× Lite usage, Max gives 20× Lite usage
|
|
3056
|
+
|
|
3057
|
+
**Why This Approach Works:**
|
|
3058
|
+
- **Low barrier entry**: Only $6/month to start with professional AI coding
|
|
3059
|
+
- **Scale as needed**: Upgrade only when your workload requires it
|
|
3060
|
+
- **Performance gains**: Pro plan significantly faster for complex tasks
|
|
3061
|
+
- **Advanced features**: Vision, Web Search, and Web Reader MCP available on Pro+
|
|
3062
|
+
|
|
3063
|
+
#### Campaign Details (Credit Rules):
|
|
3064
|
+
|
|
3065
|
+
- 📋 **Official Rules**: https://docs.z.ai/devpack/credit-campaign-rules
|
|
3066
|
+
- 🎁 **Special Offer**: MoAI-ADK users receive additional credits
|
|
3067
|
+
- 💝 **Community Support**: Your subscription helps fund MoAI-ADK development
|
|
3068
|
+
- 🔄 **Flexible Usage**: Credits roll over monthly
|
|
3069
|
+
|
|
3070
|
+
### ⚙️ Quick Setup: GLM Configuration
|
|
3071
|
+
|
|
3072
|
+
#### Step 1: Subscribe to GLM Coding Plan
|
|
3073
|
+
|
|
3074
|
+
1. Visit: https://z.ai/subscribe?ic=1NDV03BGWU
|
|
3075
|
+
2. Choose a plan:
|
|
3076
|
+
- **Lite (First month $3, from 2nd month $6/month)**: Perfect for getting started, 3x Claude Pro usage
|
|
3077
|
+
- **Pro (First month $15, from 2nd month $30/month)**: 40-60% faster, includes Vision and Web features
|
|
3078
|
+
- **Max (First month $30, from 2nd month $60/month)**: Guaranteed performance, early feature access
|
|
3079
|
+
- **Enterprise**: Custom pricing for large organizations
|
|
3080
|
+
3. Complete registration and payment
|
|
3081
|
+
4. Note your API token from the dashboard
|
|
3082
|
+
|
|
3083
|
+
**💡 Pro Tip**: Start with the $6 Lite plan to test GLM-4.6, then upgrade to Pro for faster performance or Max for high-volume workloads!
|
|
3084
|
+
|
|
3085
|
+
#### Step 2: Configure MoAI-ADK for GLM
|
|
3086
|
+
|
|
3087
|
+
In Claude Code, run:
|
|
3088
|
+
|
|
3089
|
+
```bash
|
|
3090
|
+
# Configure GLM with your API token
|
|
3091
|
+
> /moai:0-project --glm-on YOUR_API_TOKEN
|
|
3092
|
+
|
|
3093
|
+
# Or without token (will prompt for input)
|
|
3094
|
+
> /moai:0-project --glm-on
|
|
3095
|
+
```
|
|
3096
|
+
|
|
3097
|
+
**What happens during configuration:**
|
|
3098
|
+
|
|
3099
|
+
✅ **API Token Setup**: Securely stores your GLM API token
|
|
3100
|
+
✅ **Endpoint Configuration**: Sets up z.ai API endpoints
|
|
3101
|
+
✅ **Model Mapping**: Maps GLM 4.6 to Claude model tiers
|
|
3102
|
+
✅ **Verification**: Tests connection and model availability
|
|
3103
|
+
✅ **Fallback Ready**: Keeps Claude as backup option
|
|
3104
|
+
|
|
3105
|
+
#### Step 3: Verify Configuration
|
|
3106
|
+
|
|
3107
|
+
```bash
|
|
3108
|
+
# Check current configuration
|
|
3109
|
+
> cat .claude/settings.local.json
|
|
3110
|
+
|
|
3111
|
+
# Expected output:
|
|
3112
|
+
{
|
|
3113
|
+
"env": {
|
|
3114
|
+
"ANTHROPIC_AUTH_TOKEN": "your_glm_token_here",
|
|
3115
|
+
"ANTHROPIC_BASE_URL": "https://api.z.ai/api/anthropic",
|
|
3116
|
+
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "glm-4.5-air",
|
|
3117
|
+
"ANTHROPIC_DEFAULT_SONNET_MODEL": "glm-4.6",
|
|
3118
|
+
"ANTHROPIC_DEFAULT_OPUS_MODEL": "glm-4.6"
|
|
3119
|
+
}
|
|
3120
|
+
}
|
|
3121
|
+
```
|
|
3122
|
+
|
|
3123
|
+
#### Step 4: Restart Claude Code
|
|
3124
|
+
|
|
3125
|
+
```bash
|
|
3126
|
+
# Exit Claude Code and restart
|
|
3127
|
+
> /exit
|
|
3128
|
+
# Then
|
|
3129
|
+
claude
|
|
3130
|
+
```
|
|
3131
|
+
|
|
3132
|
+
GLM 4.6 is now active and ready to use!
|
|
3133
|
+
|
|
3134
|
+
### 🔄 Managing GLM Configuration
|
|
3135
|
+
|
|
3136
|
+
#### Enable GLM Mode:
|
|
3137
|
+
|
|
3138
|
+
```bash
|
|
3139
|
+
> /moai:0-project --glm-on [YOUR_TOKEN]
|
|
3140
|
+
```
|
|
3141
|
+
|
|
3142
|
+
#### Disable GLM (Switch back to Claude):
|
|
3143
|
+
|
|
3144
|
+
```bash
|
|
3145
|
+
> /moai:0-project --glm-off
|
|
3146
|
+
```
|
|
3147
|
+
|
|
3148
|
+
#### Check Current Mode:
|
|
3149
|
+
|
|
3150
|
+
GLM is active when:
|
|
3151
|
+
- `.claude/settings.local.json` contains GLM configuration
|
|
3152
|
+
- Base URL is set to `https://api.z.ai/api/anthropic`
|
|
3153
|
+
- Models are mapped to GLM variants
|
|
3154
|
+
|
|
3155
|
+
### 📊 Performance Comparison
|
|
3156
|
+
|
|
3157
|
+
Based on real-world testing with MoAI-ADK:
|
|
3158
|
+
|
|
3159
|
+
| Task | Claude 4.5 Sonnet | GLM 4.6 | Performance Gap |
|
|
3160
|
+
| ------------------------------ | ----------------- | ------------ | --------------- |
|
|
3161
|
+
| **Code Generation** | Excellent | **Excellent** | < 5% difference |
|
|
3162
|
+
| **TDD Implementation** | Excellent | **Very Good** | 10% faster |
|
|
3163
|
+
| **Documentation Writing** | Very Good | **Good** | 15% faster |
|
|
3164
|
+
| **Complex Problem Solving** | Excellent | **Very Good** | Comparable |
|
|
3165
|
+
| **API Rate Limits** | Moderate | **Higher** | 3x-20x more usage |
|
|
3166
|
+
| **Performance Speed** | Fast | **40-60% faster (Pro+)** | Significant improvement |
|
|
3167
|
+
| **Advanced Features** | Basic | **Vision, Web Search, Web Reader (Pro+)** | Enhanced capabilities |
|
|
3168
|
+
| **Cost Efficiency** | $20-$200/month | **$6-$60/month** | **Save up to 70%** |
|
|
3169
|
+
|
|
3170
|
+
### ✅ Recommended Usage Scenarios
|
|
3171
|
+
|
|
3172
|
+
#### **GLM Lite ($6/month) Usage:**
|
|
3173
|
+
- **Getting Started**: 3x Claude Pro usage at 70% less cost
|
|
3174
|
+
- **Lightweight Workloads**: Small projects, occasional coding
|
|
3175
|
+
- **Learning Projects**: Practice, tutorials, experiments
|
|
3176
|
+
- **Budget-Conscious**: Professional AI coding at just $6/month
|
|
3177
|
+
|
|
3178
|
+
#### **GLM Pro ($30/month) Usage:**
|
|
3179
|
+
- **Professional Developers**: 40-60% faster performance for complex tasks
|
|
3180
|
+
- **Daily Development**: 5× Lite usage limit with advanced features
|
|
3181
|
+
- **Team Collaboration**: Vision understanding, web search capabilities
|
|
3182
|
+
- **Power Users**: Faster responses for complex problem solving
|
|
3183
|
+
|
|
3184
|
+
#### **GLM Max ($60/month) Usage:**
|
|
3185
|
+
- **High-Volume Workloads**: 20× Lite usage for intensive development
|
|
3186
|
+
- **Enterprise Teams**: Guaranteed peak-hour performance
|
|
3187
|
+
- **Continuous Integration**: No rate limits for automated workflows
|
|
3188
|
+
- **Early Adopters**: First access to new features and improvements
|
|
3189
|
+
|
|
3190
|
+
#### **Consider Claude for:**
|
|
3191
|
+
- **Enterprise Production**: Mission-critical deployments
|
|
3192
|
+
- **Complex Research**: Advanced reasoning tasks
|
|
3193
|
+
- **Large-Scale Migration**: Complex system transformations
|
|
3194
|
+
- **Compliance Requirements**: Specific model certifications
|
|
3195
|
+
|
|
3196
|
+
### 🛠️ Troubleshooting
|
|
3197
|
+
|
|
3198
|
+
| Issue | Solution |
|
|
3199
|
+
| ------------------------ | ------------------------------------------------------------------------ |
|
|
3200
|
+
| **Token not working** | Verify token from z.ai dashboard, ensure Coding Plan subscription |
|
|
3201
|
+
| **Model errors** | Check endpoint URL: `https://api.z.ai/api/anthropic` |
|
|
3202
|
+
| **Slow responses** | GLM may have higher latency during peak hours |
|
|
3203
|
+
| **Connection refused** | Firewall may block z.ai domain, check network settings |
|
|
3204
|
+
| **Fallback needed** | Use `--glm-off` to switch back to Claude temporarily |
|
|
3205
|
+
|
|
3206
|
+
### 🔗 Useful Links
|
|
3207
|
+
|
|
3208
|
+
- **GLM Coding Plan**: https://z.ai/subscribe?ic=1NDV03BGWU
|
|
3209
|
+
- **Credit Campaign Rules**: https://docs.z.ai/devpack/credit-campaign-rules
|
|
3210
|
+
- **GLM Documentation**: https://docs.z.ai/
|
|
3211
|
+
- **MoAI-ADK GLM Guide**: https://github.com/modu-ai/moai-adk/docs/glm-integration
|
|
3212
|
+
- **Support**: support@z.ai
|
|
3213
|
+
|
|
3214
|
+
### 💬 Community & Support
|
|
3215
|
+
|
|
3216
|
+
- **Discord**: Join the z.ai community for tips and updates
|
|
3217
|
+
- **GitHub**: Report issues and request features
|
|
3218
|
+
- **Email**: support@z.ai for technical assistance
|
|
3219
|
+
- **MoAI-ADK**: github.com/modu-ai/moai-adk for framework-specific help
|
|
3220
|
+
|
|
3221
|
+
---
|
|
3222
|
+
|
|
3223
|
+
**Start saving today while maintaining full development productivity!** 🚀
|
|
3224
|
+
|
|
3225
|
+
## 18. Additional Resources
|
|
2430
3226
|
|
|
2431
3227
|
### 🆘 Support (Support)
|
|
2432
3228
|
|
|
@@ -2472,7 +3268,7 @@ SOFTWARE.
|
|
|
2472
3268
|
|
|
2473
3269
|
### Made with ❤️ by MoAI-ADK Team
|
|
2474
3270
|
|
|
2475
|
-
**Version:** 0.
|
|
2476
|
-
**Last Updated:**
|
|
3271
|
+
**Version:** 0.40.0
|
|
3272
|
+
**Last Updated:** 2026-01-06
|
|
2477
3273
|
**Philosophy**: SPEC-First TDD + Agent Orchestration + 85% Token Efficiency
|
|
2478
3274
|
**MoAI**: MoAI stands for "Modu-ui AI" (AI for Everyone). Our goal is to make AI accessible to everyone.
|