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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: moai:0-project
|
|
3
3
|
description: "Initialize project metadata and documentation"
|
|
4
4
|
argument-hint: "[<empty>|setting|update|--glm-on <token>]"
|
|
5
|
-
allowed-tools:
|
|
5
|
+
allowed-tools: Task, AskUserQuestion, TodoWrite
|
|
6
6
|
model: inherit
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -36,7 +36,7 @@ Workflow Integration: This command implements Step 0 of Alfred's three-step exec
|
|
|
36
36
|
|
|
37
37
|
---
|
|
38
38
|
|
|
39
|
-
##
|
|
39
|
+
## Command Purpose
|
|
40
40
|
|
|
41
41
|
Initialize or update project metadata using language-first architecture. The system supports five execution modes:
|
|
42
42
|
|
|
@@ -52,7 +52,7 @@ IMPACT: Users can navigate project lifecycle without manual intervention.
|
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
55
|
-
##
|
|
55
|
+
## Associated Agents and Skills
|
|
56
56
|
|
|
57
57
|
The following agents and skills support this command:
|
|
58
58
|
|
|
@@ -68,7 +68,7 @@ IMPACT: Each agent optimizes its domain while maintaining system coherence.
|
|
|
68
68
|
|
|
69
69
|
---
|
|
70
70
|
|
|
71
|
-
##
|
|
71
|
+
## Language Configuration
|
|
72
72
|
|
|
73
73
|
Core Principle: Language configuration originates from moai-adk CLI initialization or update commands.
|
|
74
74
|
|
|
@@ -105,8 +105,8 @@ All configuration questions are defined in YAML files under .moai/config/questio
|
|
|
105
105
|
|
|
106
106
|
- _schema.yaml: Schema definition and constraints
|
|
107
107
|
- tab1-user.yaml: User and language settings (3 questions)
|
|
108
|
-
- tab2-project.yaml: Project metadata (
|
|
109
|
-
- tab3-git.yaml: Git strategy and workflow (
|
|
108
|
+
- tab2-project.yaml: Project metadata (2 questions)
|
|
109
|
+
- tab3-git.yaml: Git strategy and workflow (26 questions, includes GitHub Profile)
|
|
110
110
|
- tab4-quality.yaml: Quality principles and reports (7 questions)
|
|
111
111
|
- tab5-system.yaml: System and GitHub integration (7 questions)
|
|
112
112
|
|
|
@@ -161,7 +161,7 @@ IMPACT: CLAUDE.md loads only user.yaml and language.yaml (~17 lines vs 400+ full
|
|
|
161
161
|
|
|
162
162
|
This command uses agent execution patterns defined in CLAUDE.md (lines 96-120).
|
|
163
163
|
|
|
164
|
-
### Sequential Phase-Based Chaining
|
|
164
|
+
### Sequential Phase-Based Chaining PASS
|
|
165
165
|
|
|
166
166
|
Command implements sequential chaining through 3 main phases:
|
|
167
167
|
|
|
@@ -179,7 +179,7 @@ WHY: Sequential execution ensures proper configuration and file generation
|
|
|
179
179
|
|
|
180
180
|
IMPACT: Skipping phases would create incomplete or misconfigured project setup
|
|
181
181
|
|
|
182
|
-
### Parallel Execution
|
|
182
|
+
### Parallel Execution FAIL
|
|
183
183
|
|
|
184
184
|
Not applicable - configuration requires sequential processing
|
|
185
185
|
|
|
@@ -190,7 +190,7 @@ WHY: Project initialization has strict ordering requirements
|
|
|
190
190
|
|
|
191
191
|
IMPACT: Parallel execution would create configuration conflicts and invalid project state
|
|
192
192
|
|
|
193
|
-
### Resumable Agent Support
|
|
193
|
+
### Resumable Agent Support FAIL
|
|
194
194
|
|
|
195
195
|
Not applicable - command completes in single execution
|
|
196
196
|
|
|
@@ -207,7 +207,7 @@ Refer to CLAUDE.md "Agent Chaining Patterns" (lines 96-120) for complete pattern
|
|
|
207
207
|
|
|
208
208
|
---
|
|
209
209
|
|
|
210
|
-
##
|
|
210
|
+
## Execution Philosophy
|
|
211
211
|
|
|
212
212
|
The project setup follows explicit delegation pattern: Understand the user intent, Plan the execution, Execute through specialized agents.
|
|
213
213
|
|
|
@@ -233,7 +233,7 @@ Manager-project agent handles all implementation complexity including file opera
|
|
|
233
233
|
|
|
234
234
|
---
|
|
235
235
|
|
|
236
|
-
##
|
|
236
|
+
## PHASE 1: Command Routing and Analysis
|
|
237
237
|
|
|
238
238
|
Goal: Detect subcommand intent and prepare execution context for delegation.
|
|
239
239
|
|
|
@@ -347,7 +347,242 @@ Store: Response in `$MODE_EXECUTION_RESULT`
|
|
|
347
347
|
|
|
348
348
|
---
|
|
349
349
|
|
|
350
|
-
##
|
|
350
|
+
## PHASE 1.5: Smart Question System (INITIALIZATION Mode Only)
|
|
351
|
+
|
|
352
|
+
Goal: Collect minimal user input, research best practices via web search, and propose optimized project configuration.
|
|
353
|
+
|
|
354
|
+
WHY: Reduce user burden from 40+ questions to 3 essential questions while providing expert-level recommendations based on current industry standards.
|
|
355
|
+
|
|
356
|
+
IMPACT: Non-developers can create production-ready projects with minimal technical knowledge.
|
|
357
|
+
|
|
358
|
+
### Step 1: Collect Essential Information (3 Questions Only)
|
|
359
|
+
|
|
360
|
+
[HARD] Use AskUserQuestion to collect ONLY 3 required fields at COMMAND level.
|
|
361
|
+
|
|
362
|
+
WHY: Minimal questions reduce user friction while capturing essential project identity.
|
|
363
|
+
|
|
364
|
+
IMPACT: More questions would overwhelm non-developers and slow down project creation.
|
|
365
|
+
|
|
366
|
+
Question 1 - Project Name:
|
|
367
|
+
|
|
368
|
+
- question: Translate to user's conversation_language with friendly guidance:
|
|
369
|
+
- Korean: "프로젝트 이름을 정해주세요. 영어 소문자와 하이픈(-)만 사용할 수 있어요."
|
|
370
|
+
- English: "Choose a project name. Use only lowercase letters and hyphens (-)."
|
|
371
|
+
- header: "Project Name"
|
|
372
|
+
- type: text input (user selects "Other" to type)
|
|
373
|
+
- examples shown to user:
|
|
374
|
+
- "snake-game" (게임 프로젝트)
|
|
375
|
+
- "my-first-app" (첫 번째 앱)
|
|
376
|
+
- "todo-list" (할 일 목록)
|
|
377
|
+
- validation: lowercase, no spaces, valid directory name
|
|
378
|
+
- helper: If user enters Korean or spaces, suggest alternatives automatically
|
|
379
|
+
|
|
380
|
+
Question 2 - Project Type:
|
|
381
|
+
|
|
382
|
+
- question: Translate to user's conversation_language with beginner-friendly tone:
|
|
383
|
+
- Korean: "어떤 종류의 프로젝트를 만들고 싶으세요?"
|
|
384
|
+
- English: "What kind of project would you like to create?"
|
|
385
|
+
- header: "Project Type"
|
|
386
|
+
- multiSelect: false
|
|
387
|
+
- options (max 4, beginner-friendly labels):
|
|
388
|
+
- label: "Web Browser App"
|
|
389
|
+
korean_label: "웹 브라우저에서 보는 것"
|
|
390
|
+
description: "크롬, 사파리 등 브라우저에서 열어보는 프로그램 (게임, 웹사이트 등)"
|
|
391
|
+
tech_hint: "HTML, CSS, JavaScript 또는 React, Vue 사용"
|
|
392
|
+
- label: "Mobile App"
|
|
393
|
+
korean_label: "스마트폰 앱"
|
|
394
|
+
description: "아이폰이나 안드로이드에서 설치해서 사용하는 앱"
|
|
395
|
+
tech_hint: "React Native, Flutter 사용"
|
|
396
|
+
- label: "Command Line Tool"
|
|
397
|
+
korean_label: "터미널에서 실행하는 도구"
|
|
398
|
+
description: "명령어로 실행하는 프로그램 (자동화 스크립트 등)"
|
|
399
|
+
tech_hint: "Python, Node.js, Go 사용"
|
|
400
|
+
- label: "Backend API"
|
|
401
|
+
korean_label: "서버/백엔드 서비스"
|
|
402
|
+
description: "데이터를 저장하고 처리하는 서버 프로그램"
|
|
403
|
+
tech_hint: "FastAPI, Express, Django 사용"
|
|
404
|
+
|
|
405
|
+
Question 3 - Project Description:
|
|
406
|
+
|
|
407
|
+
- question: Translate to user's conversation_language with examples:
|
|
408
|
+
- Korean: "만들고 싶은 것을 한 문장으로 설명해주세요."
|
|
409
|
+
- English: "Describe what you want to build in one sentence."
|
|
410
|
+
- header: "Description"
|
|
411
|
+
- type: text input (user selects "Other" to type)
|
|
412
|
+
- examples shown to user (in conversation_language):
|
|
413
|
+
- "방향키로 뱀을 조종해서 음식을 먹는 게임" (스네이크 게임)
|
|
414
|
+
- "할 일을 추가하고 완료 표시하는 앱" (투두 리스트)
|
|
415
|
+
- "날씨 정보를 보여주는 웹페이지" (날씨 앱)
|
|
416
|
+
- "사진을 업로드하고 공유하는 서비스" (갤러리)
|
|
417
|
+
- validation: non-empty string
|
|
418
|
+
- helper: Encourage natural language description, no technical terms required
|
|
419
|
+
|
|
420
|
+
Store responses in: $PROJECT_ESSENTIAL_INFO
|
|
421
|
+
|
|
422
|
+
### Step 2: Web Search for Best Practices
|
|
423
|
+
|
|
424
|
+
[HARD] After collecting essential info, perform targeted web searches using WebSearch tool.
|
|
425
|
+
|
|
426
|
+
WHY: Real-time research ensures recommendations reflect current industry standards (2025).
|
|
427
|
+
|
|
428
|
+
IMPACT: Outdated recommendations would create technical debt from project start.
|
|
429
|
+
|
|
430
|
+
Based on collected project_type, execute 3 parallel searches:
|
|
431
|
+
|
|
432
|
+
Search Query 1: "[project_type] best practices 2025"
|
|
433
|
+
- Extract: Design patterns, architecture recommendations, common pitfalls
|
|
434
|
+
|
|
435
|
+
Search Query 2: "[project_type] recommended tech stack 2025"
|
|
436
|
+
- Extract: Framework comparisons, library recommendations, version requirements
|
|
437
|
+
|
|
438
|
+
Search Query 3: "[project_type] [project_description keywords] architecture patterns"
|
|
439
|
+
- Extract: Domain-specific patterns, similar project architectures
|
|
440
|
+
|
|
441
|
+
Analyze search results and compile:
|
|
442
|
+
|
|
443
|
+
- Recommended Frameworks: Top 2-3 options with pros/cons
|
|
444
|
+
- UI Library: Best options for project type
|
|
445
|
+
- Testing Framework: Industry standard for project type
|
|
446
|
+
- Build Tools: Current best practices
|
|
447
|
+
- Deployment Target: Common deployment platforms
|
|
448
|
+
|
|
449
|
+
Store analysis in: $BEST_PRACTICES_ANALYSIS
|
|
450
|
+
|
|
451
|
+
### Step 3: Generate Smart Proposal
|
|
452
|
+
|
|
453
|
+
[HARD] Create structured proposal based on web search analysis.
|
|
454
|
+
|
|
455
|
+
WHY: Expert-curated recommendations reduce decision paralysis for non-developers.
|
|
456
|
+
|
|
457
|
+
IMPACT: Poor recommendations would lead to project failure or rework.
|
|
458
|
+
|
|
459
|
+
Proposal Structure:
|
|
460
|
+
|
|
461
|
+
Complexity Detection (before proposing):
|
|
462
|
+
- Simple Projects (recommend NO framework):
|
|
463
|
+
- Keywords: "게임", "game", "간단한", "simple", "첫", "first", "연습", "practice"
|
|
464
|
+
- Project types: Browser games, simple utilities, learning projects
|
|
465
|
+
- Recommended stack: HTML5 + CSS3 + Vanilla JavaScript (+ Canvas for games)
|
|
466
|
+
- Rationale: "프레임워크 없이 기본 기술만으로 빠르게 만들 수 있어요"
|
|
467
|
+
|
|
468
|
+
- Medium Projects (recommend lightweight framework):
|
|
469
|
+
- Keywords: "블로그", "포트폴리오", "랜딩페이지"
|
|
470
|
+
- Recommended stack: Next.js or Astro with minimal dependencies
|
|
471
|
+
|
|
472
|
+
- Complex Projects (recommend full framework):
|
|
473
|
+
- Keywords: "대시보드", "관리자", "SaaS", "플랫폼"
|
|
474
|
+
- Recommended stack: Full framework with state management, testing, etc.
|
|
475
|
+
|
|
476
|
+
Technology Stack Proposal:
|
|
477
|
+
- For Simple Projects (games, learning):
|
|
478
|
+
- Framework: "프레임워크 없음 - 순수 HTML/CSS/JavaScript로 충분해요"
|
|
479
|
+
- UI: "CSS만 사용 (Canvas for games)"
|
|
480
|
+
- Testing: "브라우저 개발자 도구로 확인"
|
|
481
|
+
- Build: "빌드 도구 없음 - 파일을 바로 브라우저에서 열면 됩니다"
|
|
482
|
+
|
|
483
|
+
- For Medium/Complex Projects:
|
|
484
|
+
- Framework: Primary recommendation with rationale
|
|
485
|
+
- UI Library: Recommended option
|
|
486
|
+
- Testing: Standard for project type
|
|
487
|
+
- Build Tools: Current best practice
|
|
488
|
+
|
|
489
|
+
Architecture Proposal:
|
|
490
|
+
- Directory Structure: Recommended layout for project type
|
|
491
|
+
- Key Patterns: Component patterns, state management approach
|
|
492
|
+
- Data Flow: How data moves through the application
|
|
493
|
+
|
|
494
|
+
Quality Standards:
|
|
495
|
+
- Test Coverage Target: Industry standard percentage
|
|
496
|
+
- TRUST 5 Level: Recommended validation level
|
|
497
|
+
- Accessibility: WCAG level appropriate for project
|
|
498
|
+
|
|
499
|
+
Store proposal in: $SMART_PROPOSAL
|
|
500
|
+
|
|
501
|
+
### Step 4: Present Proposal and Get User Approval
|
|
502
|
+
|
|
503
|
+
[HARD] Use AskUserQuestion to present proposal and get explicit user approval.
|
|
504
|
+
|
|
505
|
+
WHY: User must consent before any files are created or configuration applied.
|
|
506
|
+
|
|
507
|
+
IMPACT: Automatic execution without approval violates user autonomy and may create unwanted configuration.
|
|
508
|
+
|
|
509
|
+
Proposal Presentation Format:
|
|
510
|
+
|
|
511
|
+
Present in user's conversation_language with clear sections:
|
|
512
|
+
|
|
513
|
+
```markdown
|
|
514
|
+
Based on your project "{project_name}" ({project_type}), here is my recommendation:
|
|
515
|
+
|
|
516
|
+
**Technology Stack**
|
|
517
|
+
- Framework: {framework} - {brief_rationale}
|
|
518
|
+
- UI: {ui_library} - {brief_rationale}
|
|
519
|
+
- Testing: {test_framework}
|
|
520
|
+
- Build: {build_tools}
|
|
521
|
+
|
|
522
|
+
**Architecture**
|
|
523
|
+
- Structure: {directory_pattern}
|
|
524
|
+
- Patterns: {key_patterns}
|
|
525
|
+
|
|
526
|
+
**Quality Standards**
|
|
527
|
+
- Coverage: {coverage_target}%
|
|
528
|
+
- TRUST Level: {trust_level}
|
|
529
|
+
|
|
530
|
+
Sources: [List actual WebSearch sources used]
|
|
531
|
+
```
|
|
532
|
+
|
|
533
|
+
Approval Question:
|
|
534
|
+
|
|
535
|
+
- question: Translate "Do you approve this configuration? You can modify specific parts or request a different approach." to user's conversation_language
|
|
536
|
+
- header: "Approval"
|
|
537
|
+
- multiSelect: false
|
|
538
|
+
- options:
|
|
539
|
+
- label: "Approve and Continue"
|
|
540
|
+
description: "Create project with these settings"
|
|
541
|
+
- label: "Modify Tech Stack"
|
|
542
|
+
description: "Keep architecture, change framework/libraries"
|
|
543
|
+
- label: "Modify Architecture"
|
|
544
|
+
description: "Keep tech stack, change structure/patterns"
|
|
545
|
+
- label: "Start Over"
|
|
546
|
+
description: "Re-run search with different criteria"
|
|
547
|
+
|
|
548
|
+
If user selects "Modify":
|
|
549
|
+
- Use additional AskUserQuestion to collect specific changes
|
|
550
|
+
- Update $SMART_PROPOSAL with modifications
|
|
551
|
+
- Re-present for approval
|
|
552
|
+
|
|
553
|
+
Loop until user selects "Approve and Continue"
|
|
554
|
+
|
|
555
|
+
Store approval in: $USER_APPROVAL
|
|
556
|
+
|
|
557
|
+
### Step 5: Delegate to Manager-Project Agent
|
|
558
|
+
|
|
559
|
+
[HARD] After user approval, invoke manager-project agent with complete context.
|
|
560
|
+
|
|
561
|
+
WHY: Agent receives all necessary information to generate files without further user interaction.
|
|
562
|
+
|
|
563
|
+
IMPACT: Missing context would force agent to make assumptions or fail.
|
|
564
|
+
|
|
565
|
+
Pass to manager-project via Task():
|
|
566
|
+
|
|
567
|
+
- Mode: INITIALIZATION
|
|
568
|
+
- Language: User's conversation_language
|
|
569
|
+
- Project Essential Info: $PROJECT_ESSENTIAL_INFO (name, type, description)
|
|
570
|
+
- Approved Proposal: $SMART_PROPOSAL (tech stack, architecture, quality)
|
|
571
|
+
- User Approval Status: $USER_APPROVAL
|
|
572
|
+
- WebSearch Sources: URLs used for recommendations
|
|
573
|
+
|
|
574
|
+
Agent responsibilities:
|
|
575
|
+
- Generate .moai/project/product.md from project description + approved proposal
|
|
576
|
+
- Generate .moai/project/structure.md from architecture proposal
|
|
577
|
+
- Generate .moai/project/tech.md from technology stack proposal
|
|
578
|
+
- Create .moai/config/config.yaml with all settings
|
|
579
|
+
- Apply language settings throughout
|
|
580
|
+
|
|
581
|
+
Output: Complete project initialization with documentation
|
|
582
|
+
|
|
583
|
+
---
|
|
584
|
+
|
|
585
|
+
## PHASE 2: Execute Mode
|
|
351
586
|
|
|
352
587
|
Goal: Execute the appropriate mode based on routing decision.
|
|
353
588
|
|
|
@@ -398,8 +633,6 @@ UPDATE MODE:
|
|
|
398
633
|
- Preserve all user settings and customizations
|
|
399
634
|
- Add meaningful comments explaining each section
|
|
400
635
|
- Optimize structure (remove dead fields, consolidate duplicates)
|
|
401
|
-
- Convert preset files (presets/*.json → presets/*.yaml)
|
|
402
|
-
- Remove old JSON files after successful migration
|
|
403
636
|
- Use YAML's native features:
|
|
404
637
|
- Multi-line strings for long descriptions
|
|
405
638
|
- Inline comments for field explanations
|
|
@@ -412,17 +645,13 @@ UPDATE MODE:
|
|
|
412
645
|
|
|
413
646
|
### Language-Aware Announcements
|
|
414
647
|
|
|
415
|
-
After any language selection or change, auto-translate company announcements
|
|
416
|
-
|
|
417
|
-
```bash
|
|
418
|
-
uv run $CLAUDE_PROJECT_DIR/.claude/hooks/moai/shared/utils/announcement_translator.py
|
|
419
|
-
```
|
|
648
|
+
After any language selection or change, auto-translate company announcements by executing the announcement translator script located at .claude/hooks/moai/shared/utils/announcement_translator.py using uv run.
|
|
420
649
|
|
|
421
|
-
This ensures
|
|
650
|
+
This ensures .claude/settings.json contains announcements in the user's selected language.
|
|
422
651
|
|
|
423
652
|
---
|
|
424
653
|
|
|
425
|
-
##
|
|
654
|
+
## SETTINGS MODE: Tab-Based Configuration (NEW)
|
|
426
655
|
|
|
427
656
|
> Version: v2.0.0 | Last Updated: 2025-11-19 | Changes: Removed [tab_ID] arg, added git_strategy.mode selection, expanded Tab 3 with conditional batches, fixed 26 field name errors, +16 settings
|
|
428
657
|
|
|
@@ -439,45 +668,25 @@ The SETTINGS MODE uses a tab-based batch question system to provide organized, u
|
|
|
439
668
|
|
|
440
669
|
### Initial Entry Point: Tab Selection Screen
|
|
441
670
|
|
|
442
|
-
When user runs
|
|
671
|
+
When user runs /moai:0-project setting (without tab_ID), present tab selection using AskUserQuestion:
|
|
443
672
|
|
|
444
|
-
|
|
445
|
-
Which settings tab would you like to modify?
|
|
673
|
+
Question: Which settings tab would you like to modify?
|
|
446
674
|
|
|
447
675
|
Options:
|
|
676
|
+
- Tab 1: User and Language - Configure user name, conversation language, agent prompt language
|
|
677
|
+
- Tab 2: Project Settings - Configure project name, description
|
|
678
|
+
- Tab 3: Git Strategy and Workflow - Configure GitHub profile, Manual/Personal/Team Git settings, commit/branch strategy
|
|
679
|
+
- Tab 4: Quality Principles and Reports - Configure TRUST 5, report generation, storage location
|
|
448
680
|
|
|
449
|
-
1. Tab
|
|
450
|
-
|
|
451
|
-
- Configure user name, conversation language, agent prompt language
|
|
452
|
-
|
|
453
|
-
2. Tab 2: Project & GitHub Settings
|
|
454
|
-
|
|
455
|
-
- Configure project name, description, mode, GitHub Profile Name
|
|
456
|
-
|
|
457
|
-
3. Tab 3: Git Strategy & Workflow
|
|
458
|
-
|
|
459
|
-
- Configure Personal/Team Git settings, commit/branch strategy
|
|
460
|
-
|
|
461
|
-
4. Tab 4: Quality Principles & Reports
|
|
462
|
-
|
|
463
|
-
- Configure TRUST 5, report generation, storage location
|
|
464
|
-
|
|
465
|
-
5. Tab 5: System & GitHub Integration
|
|
466
|
-
|
|
467
|
-
- Configure MoAI system, GitHub automation
|
|
468
|
-
|
|
469
|
-
6. Modify All Tabs
|
|
470
|
-
- Recommended: Tab 1 → Tab 2 → Tab 3 → Others
|
|
471
|
-
```
|
|
681
|
+
Note: Additional option "Modify All Tabs" guides user through Tab 1 through Tab 5 in sequence. Tab 5 covers System and GitHub Integration settings.
|
|
472
682
|
|
|
473
683
|
After Tab Completion:
|
|
474
684
|
|
|
475
|
-
|
|
476
|
-
Would you like to modify another settings tab?
|
|
685
|
+
Question: Would you like to modify another settings tab?
|
|
477
686
|
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
687
|
+
Options:
|
|
688
|
+
- No, finish settings
|
|
689
|
+
- Select another tab
|
|
481
690
|
|
|
482
691
|
### Tab Schema Reference
|
|
483
692
|
|
|
@@ -490,26 +699,32 @@ Tab 1: User & Language (Required Foundation)
|
|
|
490
699
|
- NOTE: conversation_language_name is auto-updated when conversation_language changes
|
|
491
700
|
- Setting count: 3 | Critical checkpoint
|
|
492
701
|
|
|
493
|
-
Tab 2: Project
|
|
702
|
+
Tab 2: Project Settings (Recommended)
|
|
494
703
|
|
|
495
|
-
- Batch 2.1: Project metadata (
|
|
496
|
-
- Project name, description
|
|
497
|
-
-
|
|
704
|
+
- Batch 2.1: Project metadata (2 questions)
|
|
705
|
+
- Project name, description
|
|
706
|
+
- NOTE: GitHub Profile moved to Tab 3, Project Mode removed
|
|
707
|
+
- Batch 2.2: Auto-processed locale settings (0 questions - internal analysis only)
|
|
498
708
|
- project.locale, default_language, optimized_for_language (auto-determined from conversation_language)
|
|
499
709
|
- NOTE: No user input needed. These 3 fields update automatically when conversation_language changes
|
|
500
710
|
- Auto-Processing Delegation: Command does NOT perform auto-processing. manager-project agent receives user selections, determines derived fields, then delegates atomic update to UnifiedConfigManager skill.
|
|
501
|
-
- Setting count:
|
|
711
|
+
- Setting count: 2
|
|
502
712
|
|
|
503
713
|
Tab 3: Git Strategy & Workflow (Recommended with Validation - REDESIGNED v2.0.0)
|
|
504
714
|
|
|
505
|
-
- Batch 3.
|
|
506
|
-
-
|
|
507
|
-
- Batch 3.
|
|
508
|
-
- Batch 3.
|
|
509
|
-
- Batch 3.
|
|
510
|
-
- Batch 3.
|
|
511
|
-
- Batch 3.
|
|
512
|
-
-
|
|
715
|
+
- Batch 3.0a: GitHub Profile (1 question) - Always shown, required for all modes
|
|
716
|
+
- GitHub username (e.g., @GoosLab) - moved from Tab 2
|
|
717
|
+
- Batch 3.0: Workflow mode selection (1 question - Manual/Personal/Team) - Controls visibility of subsequent batches
|
|
718
|
+
- Batch 3.1: Manual core settings (4 questions) - CONDITIONAL (Manual only)
|
|
719
|
+
- Batch 3.2: Manual push settings (1 question) - CONDITIONAL (Manual only)
|
|
720
|
+
- Batch 3.3: Personal core settings (4 questions) - CONDITIONAL (Personal only)
|
|
721
|
+
- Batch 3.4: Personal commit & push settings (3 questions) - CONDITIONAL (Personal only)
|
|
722
|
+
- Batch 3.5: Personal branch settings (2 questions) - CONDITIONAL (Personal only)
|
|
723
|
+
- Batch 3.6: Team core settings (4 questions) - CONDITIONAL (Team only)
|
|
724
|
+
- Batch 3.7: Team commit & PR settings (3 questions) - CONDITIONAL (Team only)
|
|
725
|
+
- Batch 3.8: Team branch & protection settings (3 questions) - CONDITIONAL (Team only)
|
|
726
|
+
- Batch 3.9: Team branch naming settings (2 questions) - CONDITIONAL (Team only)
|
|
727
|
+
- Setting count: 26 | Critical checkpoint for Git conflicts & mode consistency
|
|
513
728
|
|
|
514
729
|
Tab 4: Quality Principles & Reports (Optional - UPDATED v2.0.0)
|
|
515
730
|
|
|
@@ -527,83 +742,68 @@ Tab 5: System & GitHub Integration (Optional - UPDATED v2.0.0)
|
|
|
527
742
|
|
|
528
743
|
#### Step 1: Load Tab Schema
|
|
529
744
|
|
|
530
|
-
|
|
531
|
-
Load: .claude/skills/moai-workflow-project/schemas/tab_schema.json
|
|
532
|
-
Extract:
|
|
745
|
+
Load the tab schema from .claude/skills/moai-workflow-project/schemas/tab_schema.json and extract the following:
|
|
533
746
|
|
|
534
|
-
- Tab definition
|
|
535
|
-
- Batch questions
|
|
747
|
+
- Tab definition including label and batches
|
|
748
|
+
- Batch questions with maximum 4 questions per batch
|
|
536
749
|
- Field mappings to config.yaml paths
|
|
537
|
-
- Current values from existing
|
|
538
|
-
- Validation rules
|
|
539
|
-
```
|
|
750
|
+
- Current values from existing configuration
|
|
751
|
+
- Validation rules for each field
|
|
540
752
|
|
|
541
753
|
#### Step 2: Execute Batch via AskUserQuestion
|
|
542
754
|
|
|
543
755
|
Single Batch Execution Example (Tab 1, Batch 1.1):
|
|
544
756
|
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
question: "What is the display name for the selected language? (current: Korean)",
|
|
571
|
-
header: "Language Display Name",
|
|
572
|
-
multiSelect: false,
|
|
573
|
-
options: [...]
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
question: "What language should agent prompts use? (current: same as conversation)",
|
|
577
|
-
header: "Agent Prompt Language",
|
|
578
|
-
multiSelect: false,
|
|
579
|
-
options: [...]
|
|
580
|
-
}
|
|
581
|
-
]
|
|
582
|
-
)
|
|
757
|
+
Call AskUserQuestion with the following questions array:
|
|
758
|
+
|
|
759
|
+
Question 1 - User Name:
|
|
760
|
+
- Question text: What is your name? To change, type your name in the text field below. (current: GoosLab)
|
|
761
|
+
- Header: User Name
|
|
762
|
+
- MultiSelect: false
|
|
763
|
+
- Options: Keep Current Value with description to continue using current value
|
|
764
|
+
|
|
765
|
+
Question 2 - Conversation Language:
|
|
766
|
+
- Question text: What language should Alfred use in conversations? (current: Korean/ko)
|
|
767
|
+
- Header: Conversation Language
|
|
768
|
+
- MultiSelect: false
|
|
769
|
+
- Options: Korean, English, Japanese, Chinese with localized descriptions
|
|
770
|
+
|
|
771
|
+
Question 3 - Language Display Name:
|
|
772
|
+
- Question text: What is the display name for the selected language? (current: Korean)
|
|
773
|
+
- Header: Language Display Name
|
|
774
|
+
- MultiSelect: false
|
|
775
|
+
|
|
776
|
+
Question 4 - Agent Prompt Language:
|
|
777
|
+
- Question text: What language should agent prompts use? (current: same as conversation)
|
|
778
|
+
- Header: Agent Prompt Language
|
|
779
|
+
- MultiSelect: false
|
|
583
780
|
|
|
584
781
|
Process user responses from AskUserQuestion into config update:
|
|
585
|
-
user.name
|
|
586
|
-
language.conversation_language
|
|
587
|
-
language.conversation_language_name
|
|
588
|
-
language.agent_prompt_language
|
|
589
|
-
```
|
|
782
|
+
- user.name receives user input or keeps current value
|
|
783
|
+
- language.conversation_language receives selected value
|
|
784
|
+
- language.conversation_language_name receives user input or keeps current value
|
|
785
|
+
- language.agent_prompt_language receives selected value
|
|
590
786
|
|
|
591
787
|
#### Step 3: Process Responses
|
|
592
788
|
|
|
593
789
|
Mapping Logic:
|
|
594
790
|
|
|
595
|
-
```markdown
|
|
596
791
|
For each question in batch:
|
|
597
792
|
|
|
598
|
-
1
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
793
|
+
Step 1: Get field path from schema (for example, user.name)
|
|
794
|
+
|
|
795
|
+
Step 2: Get user's response (selected option or custom input from Type something field)
|
|
796
|
+
|
|
797
|
+
Step 3: Convert to config.yaml value using these rules:
|
|
798
|
+
- If custom text input from Type something field: Use the typed value directly
|
|
799
|
+
- If selected preset option: Use the option's mapped value
|
|
800
|
+
- If Keep Current Value option: Use existing value from config
|
|
801
|
+
|
|
802
|
+
Step 4: Build update object with field path as key and new value as value
|
|
803
|
+
|
|
804
|
+
Step 5: Collect all updates from batch
|
|
805
|
+
|
|
806
|
+
Note: The Type something input field is auto-added by AskUserQuestion tool. Users type custom values directly in this field instead of selecting an Other option.
|
|
607
807
|
|
|
608
808
|
#### Step 4: Validate at Checkpoints
|
|
609
809
|
|
|
@@ -633,21 +833,19 @@ Checkpoint Locations (from tab_schema navigation_flow):
|
|
|
633
833
|
|
|
634
834
|
Update Pattern (Skill-delegated):
|
|
635
835
|
|
|
636
|
-
```markdown
|
|
637
836
|
Delegate ALL config update operations to UnifiedConfigManager from moai-workflow-project:
|
|
638
837
|
|
|
639
|
-
|
|
640
|
-
-
|
|
641
|
-
-
|
|
642
|
-
-
|
|
838
|
+
Manager responsibilities:
|
|
839
|
+
- Handle backup and rollback logic internally
|
|
840
|
+
- Perform deep merge with validation
|
|
841
|
+
- Write atomically to config.yaml
|
|
842
|
+
- Report success or failure
|
|
643
843
|
|
|
644
844
|
Agent responsibilities:
|
|
645
|
-
|
|
646
845
|
- Collect user responses from AskUserQuestion
|
|
647
846
|
- Map responses to config field paths
|
|
648
847
|
- Pass update map to Skill
|
|
649
848
|
- Report results to user
|
|
650
|
-
```
|
|
651
849
|
|
|
652
850
|
UnifiedConfigManager Responsibilities:
|
|
653
851
|
|
|
@@ -660,158 +858,163 @@ UnifiedConfigManager Responsibilities:
|
|
|
660
858
|
|
|
661
859
|
#### Tab 1 Execution Example
|
|
662
860
|
|
|
663
|
-
User runs:
|
|
861
|
+
User runs: /moai:0-project setting tab_1_user_language
|
|
664
862
|
|
|
665
|
-
```
|
|
666
863
|
Step 1: Project-manager loads tab schema
|
|
864
|
+
|
|
667
865
|
Step 2: Extracts Tab 1 (tab_1_user_language)
|
|
668
|
-
|
|
866
|
+
|
|
867
|
+
Step 3: Gets Batch 1.1 (Basic Settings)
|
|
868
|
+
|
|
669
869
|
Step 4: Loads current values from config.yaml including extended language settings:
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
870
|
+
- User configuration: user.name value
|
|
871
|
+
- Conversation language: language.conversation_language (ko, en, ja, zh, etc.)
|
|
872
|
+
- Agent prompt language: language.agent_prompt_language
|
|
873
|
+
- Additional language settings: git_commit_messages, code_comments, documentation, error_messages
|
|
874
|
+
|
|
875
|
+
Step 5: Calls AskUserQuestion with 3 questions for core language settings:
|
|
876
|
+
- Question 1: The user name is currently set to [current value]. Is this correct?
|
|
877
|
+
- Question 2: What language should Alfred use in conversations? (current: [language display name]/[code])
|
|
878
|
+
- Question 3: The agent internal prompt language is currently set to [display name]/[code]. How would you like to configure this?
|
|
879
|
+
|
|
678
880
|
Step 6: Receives user responses and maps them to configuration fields
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
881
|
+
|
|
882
|
+
Step 7: Processes each response (map to config fields):
|
|
883
|
+
- user.name response maps to user.name
|
|
884
|
+
- conversation_language response maps to language.conversation_language
|
|
885
|
+
- Auto-update: conversation_language_name (ko maps to Korean, en maps to English, ja maps to Japanese, es maps to Spanish)
|
|
886
|
+
- agent_prompt_language response maps to language.agent_prompt_language
|
|
887
|
+
|
|
888
|
+
Step 8: Runs Tab 1 validation checkpoint:
|
|
889
|
+
- Check language is valid
|
|
890
|
+
- Verify consistency
|
|
891
|
+
|
|
892
|
+
Step 9: Delegates atomic update to UnifiedConfigManager from moai-workflow-project:
|
|
893
|
+
- Manager handles backup and rollback internally
|
|
894
|
+
- Manager performs deep merge (including auto-updated conversation_language_name)
|
|
895
|
+
- Manager verifies final structure
|
|
896
|
+
|
|
897
|
+
Step 10: Receives result from Manager:
|
|
898
|
+
- Success: Report changes made (4 fields: user.name, conversation_language, conversation_language_name [auto], agent_prompt_language)
|
|
899
|
+
- Failure: Report error from Skill with recovery suggestions
|
|
695
900
|
|
|
696
901
|
#### Tab 3 Validation Example (Complex - NEW v2.0.0)
|
|
697
902
|
|
|
698
|
-
User runs:
|
|
903
|
+
User runs: /moai:0-project setting (or /moai:0-project setting tab_3_git_strategy)
|
|
699
904
|
|
|
700
|
-
```
|
|
701
905
|
Step 1: Load Tab 3 (tab_3_git_strategy) - 6 batches total
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
906
|
+
|
|
907
|
+
Step 2: Execute Batch 3.0 (Workflow Mode Selection):
|
|
908
|
+
- User selects: Personal, Team, or Hybrid
|
|
909
|
+
- Validation: Confirm mode selection
|
|
910
|
+
|
|
705
911
|
Step 3: CONDITIONAL LOGIC - Based on mode:
|
|
706
912
|
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
Step 4: Run Tab 3 validation checkpoint
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
913
|
+
If mode is Personal:
|
|
914
|
+
- Execute Batch 3.1 (Personal core settings)
|
|
915
|
+
- Execute Batch 3.2 (Personal branch and cleanup)
|
|
916
|
+
- Execute Batch 3.3 (Personal protection and merge)
|
|
917
|
+
- Skip Batches 3.4, 3.5, 3.6 (Team batches)
|
|
918
|
+
|
|
919
|
+
If mode is Team:
|
|
920
|
+
- Skip Batches 3.1, 3.2, 3.3 (Personal batches)
|
|
921
|
+
- Execute Batch 3.4 (Team core settings)
|
|
922
|
+
- Execute Batch 3.5 (Team branch and protection)
|
|
923
|
+
- Execute Batch 3.6 (Team safety and merge)
|
|
924
|
+
|
|
925
|
+
If mode is Hybrid:
|
|
926
|
+
- Execute ALL batches (3.1-3.6) for full flexibility
|
|
927
|
+
|
|
928
|
+
Step 4: Run Tab 3 validation checkpoint:
|
|
929
|
+
- Validate mode selection consistency
|
|
930
|
+
- Check Personal/Team conflicts:
|
|
931
|
+
- Personal mode: base_branch should be main (not develop)
|
|
932
|
+
- Team mode: prevent_main_direct_merge should be true
|
|
933
|
+
- Team mode: default_pr_base must be develop or main
|
|
934
|
+
- Branch naming consistency
|
|
935
|
+
- Let user confirm or retry if conflicts found
|
|
730
936
|
|
|
731
937
|
Step 5: Merge all executed batches into single update object
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
938
|
+
|
|
939
|
+
Step 6: Delegate atomic update to UnifiedConfigManager from moai-workflow-project:
|
|
940
|
+
- Manager handles backup and rollback internally
|
|
941
|
+
- Manager performs deep merge with final validation
|
|
735
942
|
|
|
736
943
|
Step 7: Report all 29 settings changes (or 16-20 depending on mode)
|
|
737
|
-
```
|
|
738
944
|
|
|
739
945
|
#### Multi-Tab Workflow Example
|
|
740
946
|
|
|
741
|
-
User runs:
|
|
947
|
+
User runs: /moai:0-project setting (always interactive, no tab_ID) to reach Tab Selection Screen
|
|
742
948
|
|
|
743
|
-
```
|
|
744
949
|
Flow:
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
5
|
|
950
|
+
|
|
951
|
+
Step 1: Show Tab Selection Screen (Which settings tab would you like to modify?)
|
|
952
|
+
|
|
953
|
+
Step 2: User selects tab or Modify All Tabs
|
|
954
|
+
|
|
955
|
+
Step 3: Execute selected tab:
|
|
956
|
+
- Tab 1 (REQUIRED): User and Language (1 batch, 3 questions)
|
|
957
|
+
- Tab 2 (RECOMMENDED): Project Info (2 batches, 2 questions in batch 2.1 plus 0 questions auto-processing in batch 2.2)
|
|
958
|
+
- Tab 3 (RECOMMENDED): Git Strategy (10 batches, 26 questions total, conditional by mode)
|
|
959
|
+
- Batch 3.0a: GitHub Profile (1 question) - always shown
|
|
960
|
+
- Batch 3.0: Mode selection (1 question)
|
|
961
|
+
- Manual mode: Batches 3.1-3.2 (5 questions)
|
|
962
|
+
- Personal mode: Batches 3.3-3.5 (9 questions)
|
|
963
|
+
- Team mode: Batches 3.6-3.9 (12 questions)
|
|
964
|
+
- Tab 4 (OPTIONAL): Quality and Reports (2 batches, 7 questions)
|
|
965
|
+
- Tab 5 (OPTIONAL): System and GitHub (2 batches, 8 questions)
|
|
966
|
+
|
|
967
|
+
Step 4: After tab completion, ask: Would you like to modify another settings tab?
|
|
968
|
+
- Option: No, finish settings (exit)
|
|
969
|
+
- Option: Select another tab (return to step 1)
|
|
970
|
+
|
|
971
|
+
Step 5: Final atomic update after user finishes all selected tabs
|
|
761
972
|
|
|
762
973
|
Tab-level behavior:
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
974
|
+
- If user cancels mid-tab, changes NOT saved
|
|
975
|
+
- If tab validation fails, user can retry or skip tab
|
|
976
|
+
- After ALL selected tabs complete successfully, perform final atomic update
|
|
977
|
+
- Auto-processing happens during atomic update (for example, conversation_language_name, locale)
|
|
978
|
+
- Tab 3 conditional batches respect mode selection (shown or hidden based on git_strategy.mode)
|
|
768
979
|
|
|
769
980
|
Tab completion order (recommended):
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
```
|
|
981
|
+
- Tab 1 (REQUIRED): Foundation language settings
|
|
982
|
+
- Tab 2: Project metadata
|
|
983
|
+
- Tab 3: Git workflow strategy (includes GitHub Profile)
|
|
984
|
+
- Tab 4: Quality principles
|
|
985
|
+
- Tab 5: System integration
|
|
776
986
|
|
|
777
987
|
### Tab Schema Structure
|
|
778
988
|
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
"Tab 1 checkpoint",
|
|
809
|
-
"Tab 3 checkpoint",
|
|
810
|
-
"Final validation"
|
|
811
|
-
]
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
```
|
|
989
|
+
The tab schema JSON file contains the following structure:
|
|
990
|
+
|
|
991
|
+
Root Level:
|
|
992
|
+
- version: Schema version (for example, 1.0.0)
|
|
993
|
+
- tabs: Array of tab definitions
|
|
994
|
+
- navigation_flow: Navigation and validation configuration
|
|
995
|
+
|
|
996
|
+
Tab Definition:
|
|
997
|
+
- id: Tab identifier (for example, tab_1_user_language)
|
|
998
|
+
- label: Display label (for example, Tab 1: User and Language)
|
|
999
|
+
- batches: Array of batch definitions
|
|
1000
|
+
|
|
1001
|
+
Batch Definition:
|
|
1002
|
+
- batch_id: Batch identifier (for example, 1.1)
|
|
1003
|
+
- questions: Array of question definitions
|
|
1004
|
+
|
|
1005
|
+
Question Definition:
|
|
1006
|
+
- question: Question text displayed to user
|
|
1007
|
+
- header: Section header text
|
|
1008
|
+
- field: Configuration path (for example, user.name)
|
|
1009
|
+
- type: Input type (text_input, select_single, select_multiple, or number_input)
|
|
1010
|
+
- multiSelect: Boolean for multi-select capability
|
|
1011
|
+
- options: Array of option definitions
|
|
1012
|
+
- current_value: Current configuration value
|
|
1013
|
+
- required: Boolean indicating if field is required
|
|
1014
|
+
|
|
1015
|
+
Navigation Flow:
|
|
1016
|
+
- completion_order: Array of tab IDs in recommended order (tab_1, tab_2, tab_3, tab_4, tab_5)
|
|
1017
|
+
- validation_sequence: Array of validation checkpoints (Tab 1 checkpoint, Tab 3 checkpoint, Final validation)
|
|
815
1018
|
|
|
816
1019
|
### Critical Rules
|
|
817
1020
|
|
|
@@ -838,7 +1041,7 @@ Language:
|
|
|
838
1041
|
|
|
839
1042
|
---
|
|
840
1043
|
|
|
841
|
-
##
|
|
1044
|
+
## PHASE 2.5: Save Phase Context
|
|
842
1045
|
|
|
843
1046
|
Goal: Persist phase execution results for explicit context passing to subsequent commands.
|
|
844
1047
|
|
|
@@ -846,37 +1049,34 @@ Goal: Persist phase execution results for explicit context passing to subsequent
|
|
|
846
1049
|
|
|
847
1050
|
After manager-project agent completes, extract the following information:
|
|
848
1051
|
|
|
849
|
-
- Project metadata: name,
|
|
1052
|
+
- Project metadata: name, description, language
|
|
850
1053
|
- Files created: List of generated files with absolute paths
|
|
851
1054
|
- Tech stack: Primary codebase language
|
|
852
1055
|
- Next phase: Recommended next command (1-plan)
|
|
853
1056
|
|
|
854
1057
|
### Step 2: Delegate Context Saving to manager-project
|
|
855
1058
|
|
|
856
|
-
The manager-project agent handles all context saving
|
|
1059
|
+
The manager-project agent handles all context saving.
|
|
857
1060
|
|
|
858
|
-
```markdown
|
|
859
1061
|
Context data to persist:
|
|
860
|
-
|
|
861
|
-
-
|
|
862
|
-
-
|
|
863
|
-
-
|
|
864
|
-
- Status: completed|failed
|
|
1062
|
+
- Phase: 0-project
|
|
1063
|
+
- Mode: INITIALIZATION, AUTO-DETECT, SETTINGS, or UPDATE
|
|
1064
|
+
- Timestamp: ISO8601 UTC format
|
|
1065
|
+
- Status: completed or failed
|
|
865
1066
|
- Outputs:
|
|
866
1067
|
- project_name
|
|
867
|
-
-
|
|
1068
|
+
- project_description
|
|
868
1069
|
- language (conversation_language)
|
|
869
1070
|
- tech_stack (detected primary language)
|
|
870
|
-
-
|
|
871
|
-
-
|
|
1071
|
+
- github_profile (from Tab 3)
|
|
1072
|
+
- Files created: list of absolute paths
|
|
1073
|
+
- Next phase: 1-plan
|
|
872
1074
|
|
|
873
1075
|
Agent delegates to UnifiedConfigManager from moai-workflow-project:
|
|
874
|
-
|
|
875
1076
|
- Save context via ContextManager
|
|
876
1077
|
- Handle file path validation
|
|
877
1078
|
- Implement error recovery (non-blocking)
|
|
878
|
-
- Report success
|
|
879
|
-
```
|
|
1079
|
+
- Report success or failure
|
|
880
1080
|
|
|
881
1081
|
Error Handling Strategy:
|
|
882
1082
|
|
|
@@ -886,7 +1086,7 @@ Error Handling Strategy:
|
|
|
886
1086
|
|
|
887
1087
|
---
|
|
888
1088
|
|
|
889
|
-
##
|
|
1089
|
+
## PHASE 3: Completion and Next Steps
|
|
890
1090
|
|
|
891
1091
|
Goal: Guide user to next action in their selected language.
|
|
892
1092
|
|
|
@@ -911,7 +1111,7 @@ Critical: NO EMOJIS in AskUserQuestion fields. Use clear text only.
|
|
|
911
1111
|
|
|
912
1112
|
---
|
|
913
1113
|
|
|
914
|
-
##
|
|
1114
|
+
## Critical Rules
|
|
915
1115
|
|
|
916
1116
|
### Mode Execution
|
|
917
1117
|
|
|
@@ -1027,7 +1227,7 @@ IMPACT: Deferred language selection complicates initial setup.
|
|
|
1027
1227
|
|
|
1028
1228
|
---
|
|
1029
1229
|
|
|
1030
|
-
##
|
|
1230
|
+
## Output Format
|
|
1031
1231
|
|
|
1032
1232
|
Responses and status reports must follow structured XML format for clarity and automated processing:
|
|
1033
1233
|
|
|
@@ -1062,14 +1262,27 @@ IMPACT: Unstructured output reduces ability to track execution state and causes
|
|
|
1062
1262
|
|
|
1063
1263
|
---
|
|
1064
1264
|
|
|
1065
|
-
##
|
|
1265
|
+
## Quick Reference
|
|
1266
|
+
|
|
1267
|
+
Scenario: First-time setup
|
|
1268
|
+
- Mode: INITIALIZATION
|
|
1269
|
+
- Entry Point: /moai:0-project (no config)
|
|
1270
|
+
- Key Phases: Read language then Interview then Docs
|
|
1271
|
+
|
|
1272
|
+
Scenario: Existing project
|
|
1273
|
+
- Mode: AUTO-DETECT
|
|
1274
|
+
- Entry Point: /moai:0-project (config exists)
|
|
1275
|
+
- Key Phases: Read language then Display then Options
|
|
1066
1276
|
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1277
|
+
Scenario: Modify config
|
|
1278
|
+
- Mode: SETTINGS
|
|
1279
|
+
- Entry Point: /moai:0-project setting
|
|
1280
|
+
- Key Phases: Interactive tab selection then Conditional batches then Skill update
|
|
1281
|
+
|
|
1282
|
+
Scenario: After package update
|
|
1283
|
+
- Mode: UPDATE
|
|
1284
|
+
- Entry Point: /moai:0-project update
|
|
1285
|
+
- Key Phases: Preserve language then Template merge then Announce
|
|
1073
1286
|
|
|
1074
1287
|
Associated Skills:
|
|
1075
1288
|
|
|
@@ -1104,37 +1317,20 @@ Improvements in v2.0.0:
|
|
|
1104
1317
|
|
|
1105
1318
|
After command execution completes, use AskUserQuestion tool to guide user to next action:
|
|
1106
1319
|
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
{
|
|
1115
|
-
"label": "Write Specification",
|
|
1116
|
-
"description": "Execute /moai:1-plan to define feature specifications"
|
|
1117
|
-
},
|
|
1118
|
-
{
|
|
1119
|
-
"label": "Review Project Structure",
|
|
1120
|
-
"description": "Check current project status and settings"
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"label": "Start New Session",
|
|
1124
|
-
"description": "Initialize workspace and start fresh"
|
|
1125
|
-
}
|
|
1126
|
-
]
|
|
1127
|
-
}]
|
|
1128
|
-
})
|
|
1129
|
-
```
|
|
1320
|
+
Question: Project setup is complete. What would you like to do next?
|
|
1321
|
+
Header: Next Steps
|
|
1322
|
+
MultiSelect: false
|
|
1323
|
+
Options:
|
|
1324
|
+
- Write Specification - Execute /moai:1-plan to define feature specifications
|
|
1325
|
+
- Review Project Structure - Check current project status and settings
|
|
1326
|
+
- Start New Session - Initialize workspace and start fresh
|
|
1130
1327
|
|
|
1131
1328
|
Important:
|
|
1132
|
-
|
|
1133
1329
|
- Use conversation language from config
|
|
1134
1330
|
- No emojis in any AskUserQuestion fields
|
|
1135
1331
|
- Always provide clear next step options
|
|
1136
1332
|
|
|
1137
|
-
##
|
|
1333
|
+
## EXECUTION DIRECTIVE
|
|
1138
1334
|
|
|
1139
1335
|
You must NOW execute the command following the "Execution Philosophy" described above.
|
|
1140
1336
|
|