moai-adk 0.8.0__py3-none-any.whl → 0.34.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moai_adk/__init__.py +2 -6
- moai_adk/__main__.py +136 -21
- moai_adk/cli/__init__.py +6 -2
- moai_adk/cli/commands/__init__.py +1 -4
- moai_adk/cli/commands/analyze.py +116 -0
- moai_adk/cli/commands/doctor.py +17 -5
- moai_adk/cli/commands/init.py +118 -48
- moai_adk/cli/commands/language.py +248 -0
- moai_adk/cli/commands/status.py +8 -13
- moai_adk/cli/commands/update.py +1978 -149
- moai_adk/cli/main.py +3 -2
- moai_adk/cli/prompts/init_prompts.py +144 -91
- moai_adk/cli/spec_status.py +263 -0
- moai_adk/cli/ui/__init__.py +44 -0
- moai_adk/cli/ui/progress.py +422 -0
- moai_adk/cli/ui/prompts.py +389 -0
- moai_adk/cli/ui/theme.py +129 -0
- moai_adk/cli/worktree/__init__.py +27 -0
- moai_adk/cli/worktree/__main__.py +31 -0
- moai_adk/cli/worktree/cli.py +683 -0
- moai_adk/cli/worktree/exceptions.py +89 -0
- moai_adk/cli/worktree/manager.py +493 -0
- moai_adk/cli/worktree/models.py +65 -0
- moai_adk/cli/worktree/registry.py +422 -0
- moai_adk/core/PHASE2_OPTIMIZATIONS.md +467 -0
- moai_adk/core/__init__.py +0 -1
- moai_adk/core/analysis/__init__.py +9 -0
- moai_adk/core/analysis/session_analyzer.py +400 -0
- moai_adk/core/claude_integration.py +393 -0
- moai_adk/core/command_helpers.py +270 -0
- moai_adk/core/comprehensive_monitoring_system.py +1183 -0
- moai_adk/core/config/__init__.py +6 -0
- moai_adk/core/config/auto_spec_config.py +340 -0
- moai_adk/core/config/migration.py +148 -17
- moai_adk/core/config/unified.py +436 -0
- moai_adk/core/context_manager.py +273 -0
- moai_adk/core/diagnostics/slash_commands.py +0 -1
- moai_adk/core/enterprise_features.py +1404 -0
- moai_adk/core/error_recovery_system.py +1902 -0
- moai_adk/core/event_driven_hook_system.py +1371 -0
- moai_adk/core/git/__init__.py +8 -1
- moai_adk/core/git/branch.py +0 -1
- moai_adk/core/git/branch_manager.py +2 -10
- moai_adk/core/git/checkpoint.py +1 -7
- moai_adk/core/git/commit.py +0 -1
- moai_adk/core/git/conflict_detector.py +413 -0
- moai_adk/core/git/event_detector.py +3 -5
- moai_adk/core/git/manager.py +91 -2
- moai_adk/core/hooks/post_tool_auto_spec_completion.py +901 -0
- moai_adk/core/input_validation_middleware.py +1006 -0
- moai_adk/core/integration/__init__.py +22 -0
- moai_adk/core/integration/engine.py +157 -0
- moai_adk/core/integration/integration_tester.py +226 -0
- moai_adk/core/integration/models.py +88 -0
- moai_adk/core/integration/utils.py +211 -0
- moai_adk/core/issue_creator.py +305 -0
- moai_adk/core/jit_context_loader.py +956 -0
- moai_adk/core/jit_enhanced_hook_manager.py +1987 -0
- moai_adk/core/language_config.py +202 -0
- moai_adk/core/language_config_resolver.py +572 -0
- moai_adk/core/language_validator.py +543 -0
- moai_adk/core/mcp/setup.py +116 -0
- moai_adk/core/merge/__init__.py +9 -0
- moai_adk/core/merge/analyzer.py +481 -0
- moai_adk/core/migration/__init__.py +18 -0
- moai_adk/core/migration/alfred_to_moai_migrator.py +383 -0
- moai_adk/core/migration/backup_manager.py +277 -0
- moai_adk/core/migration/custom_element_scanner.py +358 -0
- moai_adk/core/migration/file_migrator.py +209 -0
- moai_adk/core/migration/interactive_checkbox_ui.py +488 -0
- moai_adk/core/migration/selective_restorer.py +470 -0
- moai_adk/core/migration/template_utils.py +74 -0
- moai_adk/core/migration/user_selection_ui.py +338 -0
- moai_adk/core/migration/version_detector.py +139 -0
- moai_adk/core/migration/version_migrator.py +228 -0
- moai_adk/core/performance/__init__.py +6 -0
- moai_adk/core/performance/cache_system.py +316 -0
- moai_adk/core/performance/parallel_processor.py +116 -0
- moai_adk/core/phase_optimized_hook_scheduler.py +879 -0
- moai_adk/core/project/__init__.py +0 -1
- moai_adk/core/project/backup_utils.py +2 -7
- moai_adk/core/project/checker.py +2 -4
- moai_adk/core/project/detector.py +189 -22
- moai_adk/core/project/initializer.py +218 -27
- moai_adk/core/project/phase_executor.py +416 -44
- moai_adk/core/project/validator.py +7 -32
- moai_adk/core/quality/__init__.py +1 -1
- moai_adk/core/quality/trust_checker.py +37 -101
- moai_adk/core/quality/validators/__init__.py +1 -1
- moai_adk/core/quality/validators/base_validator.py +1 -1
- moai_adk/core/realtime_monitoring_dashboard.py +1724 -0
- moai_adk/core/robust_json_parser.py +611 -0
- moai_adk/core/rollback_manager.py +918 -0
- moai_adk/core/session_manager.py +651 -0
- moai_adk/core/skill_loading_system.py +579 -0
- moai_adk/core/spec/confidence_scoring.py +680 -0
- moai_adk/core/spec/ears_template_engine.py +1247 -0
- moai_adk/core/spec/quality_validator.py +687 -0
- moai_adk/core/spec_status_manager.py +478 -0
- moai_adk/core/template/__init__.py +0 -1
- moai_adk/core/template/backup.py +82 -17
- moai_adk/core/template/config.py +112 -40
- moai_adk/core/template/languages.py +0 -1
- moai_adk/core/template/merger.py +75 -26
- moai_adk/core/template/processor.py +750 -72
- moai_adk/core/template_engine.py +310 -0
- moai_adk/core/template_variable_synchronizer.py +417 -0
- moai_adk/core/unified_permission_manager.py +745 -0
- moai_adk/core/user_behavior_analytics.py +851 -0
- moai_adk/core/version_sync.py +429 -0
- moai_adk/foundation/__init__.py +56 -0
- moai_adk/foundation/backend.py +1027 -0
- moai_adk/foundation/database.py +1115 -0
- moai_adk/foundation/devops.py +1585 -0
- moai_adk/foundation/ears.py +431 -0
- moai_adk/foundation/frontend.py +870 -0
- moai_adk/foundation/git/commit_templates.py +557 -0
- moai_adk/foundation/git.py +376 -0
- moai_adk/foundation/langs.py +484 -0
- moai_adk/foundation/ml_ops.py +1162 -0
- moai_adk/foundation/testing.py +1524 -0
- moai_adk/foundation/trust/trust_principles.py +676 -0
- moai_adk/foundation/trust/validation_checklist.py +1573 -0
- moai_adk/project/__init__.py +0 -0
- moai_adk/project/configuration.py +1084 -0
- moai_adk/project/documentation.py +566 -0
- moai_adk/project/schema.py +447 -0
- moai_adk/statusline/__init__.py +38 -0
- moai_adk/statusline/alfred_detector.py +105 -0
- moai_adk/statusline/config.py +376 -0
- moai_adk/statusline/enhanced_output_style_detector.py +372 -0
- moai_adk/statusline/git_collector.py +190 -0
- moai_adk/statusline/main.py +322 -0
- moai_adk/statusline/metrics_tracker.py +78 -0
- moai_adk/statusline/renderer.py +343 -0
- moai_adk/statusline/update_checker.py +129 -0
- moai_adk/statusline/version_reader.py +741 -0
- moai_adk/templates/.claude/agents/moai/ai-nano-banana.md +670 -0
- moai_adk/templates/.claude/agents/moai/builder-agent.md +474 -0
- moai_adk/templates/.claude/agents/moai/builder-command.md +1172 -0
- moai_adk/templates/.claude/agents/moai/builder-skill.md +666 -0
- moai_adk/templates/.claude/agents/moai/expert-backend.md +899 -0
- moai_adk/templates/.claude/agents/moai/expert-database.md +777 -0
- moai_adk/templates/.claude/agents/moai/expert-debug.md +401 -0
- moai_adk/templates/.claude/agents/moai/expert-devops.md +720 -0
- moai_adk/templates/.claude/agents/moai/expert-frontend.md +734 -0
- moai_adk/templates/.claude/agents/moai/expert-performance.md +657 -0
- moai_adk/templates/.claude/agents/moai/expert-security.md +509 -0
- moai_adk/templates/.claude/agents/moai/expert-testing.md +733 -0
- moai_adk/templates/.claude/agents/moai/expert-uiux.md +1041 -0
- moai_adk/templates/.claude/agents/moai/manager-claude-code.md +432 -0
- moai_adk/templates/.claude/agents/moai/manager-docs.md +573 -0
- moai_adk/templates/.claude/agents/moai/manager-git.md +1020 -0
- moai_adk/templates/.claude/agents/moai/manager-project.md +891 -0
- moai_adk/templates/.claude/agents/moai/manager-quality.md +624 -0
- moai_adk/templates/.claude/agents/moai/manager-spec.md +809 -0
- moai_adk/templates/.claude/agents/moai/manager-strategy.md +780 -0
- moai_adk/templates/.claude/agents/moai/manager-tdd.md +784 -0
- moai_adk/templates/.claude/agents/moai/mcp-context7.md +458 -0
- moai_adk/templates/.claude/agents/moai/mcp-figma.md +1607 -0
- moai_adk/templates/.claude/agents/moai/mcp-notion.md +789 -0
- moai_adk/templates/.claude/agents/moai/mcp-playwright.md +469 -0
- moai_adk/templates/.claude/agents/moai/mcp-sequential-thinking.md +1032 -0
- moai_adk/templates/.claude/commands/moai/0-project.md +1384 -0
- moai_adk/templates/.claude/commands/moai/1-plan.md +1427 -0
- moai_adk/templates/.claude/commands/moai/2-run.md +943 -0
- moai_adk/templates/.claude/commands/moai/3-sync.md +1324 -0
- moai_adk/templates/.claude/commands/moai/9-feedback.md +314 -0
- moai_adk/templates/.claude/hooks/__init__.py +8 -0
- moai_adk/templates/.claude/hooks/moai/__init__.py +8 -0
- moai_adk/templates/.claude/hooks/moai/lib/__init__.py +85 -0
- moai_adk/templates/.claude/hooks/{alfred/core → moai/lib}/checkpoint.py +10 -37
- moai_adk/templates/.claude/hooks/moai/lib/common.py +131 -0
- moai_adk/templates/.claude/hooks/moai/lib/config_manager.py +446 -0
- moai_adk/templates/.claude/hooks/moai/lib/config_validator.py +639 -0
- moai_adk/templates/.claude/hooks/moai/lib/example_config.json +104 -0
- moai_adk/templates/.claude/hooks/moai/lib/git_operations_manager.py +590 -0
- moai_adk/templates/.claude/hooks/moai/lib/language_validator.py +317 -0
- moai_adk/templates/.claude/hooks/moai/lib/models.py +102 -0
- moai_adk/templates/.claude/hooks/moai/lib/path_utils.py +28 -0
- moai_adk/templates/.claude/hooks/moai/lib/project.py +768 -0
- moai_adk/templates/.claude/hooks/moai/lib/test_hooks_improvements.py +443 -0
- moai_adk/templates/.claude/hooks/moai/lib/timeout.py +160 -0
- moai_adk/templates/.claude/hooks/moai/lib/unified_timeout_manager.py +530 -0
- moai_adk/templates/.claude/hooks/moai/session_end__auto_cleanup.py +862 -0
- moai_adk/templates/.claude/hooks/moai/session_start__show_project_info.py +1075 -0
- moai_adk/templates/.claude/output-styles/moai/r2d2.md +560 -0
- moai_adk/templates/.claude/output-styles/moai/yoda.md +359 -0
- moai_adk/templates/.claude/settings.json +78 -50
- moai_adk/templates/.claude/skills/moai-ai-nano-banana/SKILL.md +438 -0
- moai_adk/templates/.claude/skills/moai-ai-nano-banana/examples.md +431 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/SKILL.md +249 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/examples.md +406 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/README.md +44 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/api-documentation.md +130 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/code-documentation.md +152 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/multi-format-output.md +178 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/modules/user-guides.md +147 -0
- moai_adk/templates/.claude/skills/moai-docs-generation/reference.md +328 -0
- moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +313 -283
- moai_adk/templates/.claude/skills/moai-domain-backend/examples.md +610 -1525
- moai_adk/templates/.claude/skills/moai-domain-backend/reference.md +423 -619
- moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +295 -95
- moai_adk/templates/.claude/skills/moai-domain-database/examples.md +817 -16
- moai_adk/templates/.claude/skills/moai-domain-database/modules/README.md +53 -0
- moai_adk/templates/.claude/skills/moai-domain-database/modules/mongodb.md +231 -0
- moai_adk/templates/.claude/skills/moai-domain-database/modules/postgresql.md +169 -0
- moai_adk/templates/.claude/skills/moai-domain-database/modules/redis.md +262 -0
- moai_adk/templates/.claude/skills/moai-domain-database/reference.md +532 -17
- moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +470 -97
- moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md +955 -16
- moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md +651 -18
- moai_adk/templates/.claude/skills/moai-domain-uiux/SKILL.md +455 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/examples.md +560 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/modules/accessibility-wcag.md +260 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/modules/component-architecture.md +228 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/modules/design-system-tokens.md +405 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/modules/icon-libraries.md +401 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/modules/theming-system.md +373 -0
- moai_adk/templates/.claude/skills/moai-domain-uiux/reference.md +243 -0
- moai_adk/templates/.claude/skills/moai-formats-data/SKILL.md +492 -0
- moai_adk/templates/.claude/skills/moai-formats-data/examples.md +804 -0
- moai_adk/templates/.claude/skills/moai-formats-data/modules/README.md +98 -0
- moai_adk/templates/.claude/skills/moai-formats-data/modules/SKILL-MODULARIZATION-TEMPLATE.md +278 -0
- moai_adk/templates/.claude/skills/moai-formats-data/modules/caching-performance.md +459 -0
- moai_adk/templates/.claude/skills/moai-formats-data/modules/data-validation.md +485 -0
- moai_adk/templates/.claude/skills/moai-formats-data/modules/json-optimization.md +374 -0
- moai_adk/templates/.claude/skills/moai-formats-data/modules/toon-encoding.md +308 -0
- moai_adk/templates/.claude/skills/moai-formats-data/reference.md +585 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/SKILL.md +202 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/examples.md +732 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/best-practices-checklist.md +616 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-custom-slash-commands-official.md +729 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-hooks-official.md +560 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-iam-official.md +635 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-memory-official.md +543 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-settings-official.md +663 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-skills-official.md +113 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-sub-agents-official.md +238 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/complete-configuration-guide.md +175 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/skill-examples.md +1674 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/skill-formatting-guide.md +729 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-examples.md +1513 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-formatting-guide.md +1086 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-integration-patterns.md +1100 -0
- moai_adk/templates/.claude/skills/moai-foundation-claude/reference.md +209 -0
- moai_adk/templates/.claude/skills/moai-foundation-context/SKILL.md +441 -0
- 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 +420 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/examples.md +358 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/README.md +296 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/agents-reference.md +359 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/commands-reference.md +432 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/delegation-patterns.md +757 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/execution-rules.md +687 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/modular-system.md +665 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/progressive-disclosure.md +649 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/spec-first-tdd.md +864 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/token-optimization.md +708 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/modules/trust-5-framework.md +981 -0
- moai_adk/templates/.claude/skills/moai-foundation-core/reference.md +478 -0
- moai_adk/templates/.claude/skills/moai-foundation-philosopher/SKILL.md +315 -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 +364 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/examples.md +1232 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/modules/best-practices.md +261 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/modules/integration-patterns.md +194 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/modules/proactive-analysis.md +229 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/modules/trust5-validation.md +169 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/reference.md +1266 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/scripts/quality-gate.sh +668 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/templates/github-actions-quality.yml +481 -0
- moai_adk/templates/.claude/skills/moai-foundation-quality/templates/quality-config.yaml +519 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +618 -93
- moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +446 -91
- moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md +612 -0
- moai_adk/templates/.claude/skills/moai-lang-flutter/SKILL.md +477 -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 +346 -94
- moai_adk/templates/.claude/skills/moai-lang-go/examples.md +906 -16
- moai_adk/templates/.claude/skills/moai-lang-go/reference.md +721 -15
- moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +352 -91
- moai_adk/templates/.claude/skills/moai-lang-java/examples.md +851 -16
- moai_adk/templates/.claude/skills/moai-lang-java/reference.md +278 -18
- moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +344 -86
- moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md +993 -16
- moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md +549 -18
- moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +617 -96
- moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +364 -314
- moai_adk/templates/.claude/skills/moai-lang-python/examples.md +849 -496
- moai_adk/templates/.claude/skills/moai-lang-python/reference.md +731 -243
- moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +545 -89
- moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +650 -87
- moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +341 -93
- moai_adk/templates/.claude/skills/moai-lang-rust/examples.md +646 -16
- moai_adk/templates/.claude/skills/moai-lang-rust/reference.md +491 -18
- moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +463 -89
- moai_adk/templates/.claude/skills/moai-lang-scala/examples.md +620 -16
- moai_adk/templates/.claude/skills/moai-lang-scala/reference.md +410 -17
- moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +486 -112
- moai_adk/templates/.claude/skills/moai-lang-swift/examples.md +905 -16
- moai_adk/templates/.claude/skills/moai-lang-swift/reference.md +659 -17
- moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +333 -92
- moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md +1076 -16
- moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md +718 -21
- moai_adk/templates/.claude/skills/moai-library-mermaid/SKILL.md +300 -0
- moai_adk/templates/.claude/skills/moai-library-mermaid/advanced-patterns.md +465 -0
- moai_adk/templates/.claude/skills/moai-library-mermaid/examples.md +270 -0
- moai_adk/templates/.claude/skills/moai-library-mermaid/optimization.md +440 -0
- moai_adk/templates/.claude/skills/moai-library-mermaid/reference.md +228 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/SKILL.md +319 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/advanced-patterns.md +336 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/examples.md +592 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/advanced-deployment-patterns.md +182 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/advanced-patterns.md +17 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/configuration.md +57 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/content-architecture-optimization.md +162 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/deployment.md +52 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/framework-core-configuration.md +186 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/i18n-setup.md +55 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/modules/mdx-components.md +52 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/optimization.md +303 -0
- moai_adk/templates/.claude/skills/moai-library-nextra/reference.md +379 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/SKILL.md +372 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/examples.md +575 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/modules/advanced-patterns.md +394 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/modules/optimization.md +278 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/modules/shadcn-components.md +457 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/modules/shadcn-theming.md +373 -0
- moai_adk/templates/.claude/skills/moai-library-shadcn/reference.md +74 -0
- moai_adk/templates/.claude/skills/moai-mcp-figma/SKILL.md +402 -0
- moai_adk/templates/.claude/skills/moai-mcp-figma/advanced-patterns.md +607 -0
- moai_adk/templates/.claude/skills/moai-mcp-notion/SKILL.md +300 -0
- moai_adk/templates/.claude/skills/moai-mcp-notion/advanced-patterns.md +537 -0
- moai_adk/templates/.claude/skills/moai-platform-auth0/SKILL.md +290 -0
- moai_adk/templates/.claude/skills/moai-platform-clerk/SKILL.md +390 -0
- moai_adk/templates/.claude/skills/moai-platform-convex/SKILL.md +398 -0
- moai_adk/templates/.claude/skills/moai-platform-firebase-auth/SKILL.md +379 -0
- moai_adk/templates/.claude/skills/moai-platform-firestore/SKILL.md +358 -0
- moai_adk/templates/.claude/skills/moai-platform-neon/SKILL.md +467 -0
- moai_adk/templates/.claude/skills/moai-platform-railway/SKILL.md +377 -0
- moai_adk/templates/.claude/skills/moai-platform-supabase/SKILL.md +466 -0
- moai_adk/templates/.claude/skills/moai-platform-vercel/SKILL.md +482 -0
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/SKILL.md +449 -0
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/advanced-patterns.md +379 -0
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/examples.md +544 -0
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/optimization.md +286 -0
- moai_adk/templates/.claude/skills/moai-workflow-jit-docs/reference.md +307 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/README.md +190 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/SKILL.md +390 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/__init__.py +520 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/complete_workflow_demo_fixed.py +574 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_project_setup.py +317 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_workflow_demo.py +663 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/config-migration-example.json +190 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/question-examples.json +175 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/examples/quick_start.py +196 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/examples.md +547 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/__init__.py +17 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/advanced-patterns.md +158 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/ask_user_integration.py +340 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/batch_questions.py +713 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/config_manager.py +538 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/documentation_manager.py +1336 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/language_initializer.py +730 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/migration_manager.py +608 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/modules/template_optimizer.py +1005 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/reference.md +275 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/schemas/config-schema.json +316 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/schemas/tab_schema.json +1462 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/config-template.json +71 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/product-template.md +44 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/structure-template.md +48 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/tech-template.md +92 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/config-manager-setup.json +109 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/language-initializer.json +228 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/menu-project-config.json +130 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/project-batch-questions.json +97 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/spec-workflow-setup.json +150 -0
- moai_adk/templates/.claude/skills/moai-workflow-project/test_integration_simple.py +436 -0
- moai_adk/templates/.claude/skills/moai-workflow-spec/SKILL.md +534 -0
- moai_adk/templates/.claude/skills/moai-workflow-spec/examples.md +900 -0
- moai_adk/templates/.claude/skills/moai-workflow-spec/reference.md +704 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/SKILL.md +377 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/examples.md +552 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/modules/code-templates.md +124 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/modules/feedback-templates.md +100 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/modules/template-optimizer.md +138 -0
- moai_adk/templates/.claude/skills/moai-workflow-templates/reference.md +346 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/LICENSE.txt +202 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/SKILL.md +456 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/advanced-patterns.md +576 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/examples/ai-powered-testing.py +294 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/examples/console_logging.py +35 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/examples/element_discovery.py +40 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/examples/static_html_automation.py +34 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/examples.md +672 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/README.md +220 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/ai-debugging.md +845 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review.md +1416 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization.md +1234 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/smart-refactoring.md +1243 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7.md +1260 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/optimization.md +505 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/reference/playwright-best-practices.md +57 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/reference.md +440 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/scripts/with_server.py +218 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/templates/alfred-integration.md +376 -0
- moai_adk/templates/.claude/skills/moai-workflow-testing/workflows/enterprise-testing-workflow.py +571 -0
- moai_adk/templates/.claude/skills/moai-worktree/SKILL.md +411 -0
- moai_adk/templates/.claude/skills/moai-worktree/examples.md +606 -0
- moai_adk/templates/.claude/skills/moai-worktree/modules/integration-patterns.md +982 -0
- moai_adk/templates/.claude/skills/moai-worktree/modules/parallel-development.md +778 -0
- moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-commands.md +646 -0
- moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-management.md +782 -0
- moai_adk/templates/.claude/skills/moai-worktree/reference.md +357 -0
- moai_adk/templates/.git-hooks/pre-commit +128 -0
- moai_adk/templates/.git-hooks/pre-push +365 -0
- moai_adk/templates/.github/workflows/ci-universal.yml +513 -0
- moai_adk/templates/.github/workflows/security-secrets-check.yml +179 -0
- moai_adk/templates/.github/workflows/spec-issue-sync.yml +206 -36
- moai_adk/templates/.gitignore +194 -13
- moai_adk/templates/.mcp.json +31 -0
- moai_adk/templates/.moai/config/config.yaml +58 -0
- moai_adk/templates/.moai/config/questions/_schema.yaml +151 -0
- moai_adk/templates/.moai/config/questions/tab0-init.yaml +251 -0
- moai_adk/templates/.moai/config/questions/tab1-user.yaml +108 -0
- moai_adk/templates/.moai/config/questions/tab2-project.yaml +81 -0
- moai_adk/templates/.moai/config/questions/tab3-git.yaml +634 -0
- moai_adk/templates/.moai/config/questions/tab4-quality.yaml +170 -0
- moai_adk/templates/.moai/config/questions/tab5-system.yaml +87 -0
- moai_adk/templates/.moai/config/sections/git-strategy.yaml +116 -0
- moai_adk/templates/.moai/config/sections/language.yaml +11 -0
- moai_adk/templates/.moai/config/sections/project.yaml +13 -0
- moai_adk/templates/.moai/config/sections/quality.yaml +17 -0
- moai_adk/templates/.moai/config/sections/system.yaml +14 -0
- moai_adk/templates/.moai/config/sections/user.yaml +5 -0
- moai_adk/templates/.moai/config/statusline-config.yaml +92 -0
- moai_adk/templates/.moai/scripts/setup-glm.py +136 -0
- moai_adk/templates/CLAUDE.md +571 -244
- moai_adk/utils/__init__.py +24 -2
- moai_adk/utils/banner.py +9 -13
- moai_adk/utils/common.py +294 -0
- moai_adk/utils/link_validator.py +241 -0
- moai_adk/utils/logger.py +4 -9
- moai_adk/utils/safe_file_reader.py +206 -0
- moai_adk/utils/timeout.py +160 -0
- moai_adk/utils/toon_utils.py +256 -0
- moai_adk/version.py +22 -0
- moai_adk-0.34.0.dist-info/METADATA +2999 -0
- moai_adk-0.34.0.dist-info/RECORD +463 -0
- {moai_adk-0.8.0.dist-info → moai_adk-0.34.0.dist-info}/WHEEL +1 -1
- {moai_adk-0.8.0.dist-info → moai_adk-0.34.0.dist-info}/entry_points.txt +1 -0
- moai_adk/cli/commands/backup.py +0 -80
- moai_adk/templates/.claude/agents/alfred/cc-manager.md +0 -293
- moai_adk/templates/.claude/agents/alfred/debug-helper.md +0 -196
- moai_adk/templates/.claude/agents/alfred/doc-syncer.md +0 -207
- moai_adk/templates/.claude/agents/alfred/git-manager.md +0 -375
- moai_adk/templates/.claude/agents/alfred/implementation-planner.md +0 -343
- moai_adk/templates/.claude/agents/alfred/project-manager.md +0 -246
- moai_adk/templates/.claude/agents/alfred/quality-gate.md +0 -320
- moai_adk/templates/.claude/agents/alfred/skill-factory.md +0 -837
- moai_adk/templates/.claude/agents/alfred/spec-builder.md +0 -272
- moai_adk/templates/.claude/agents/alfred/tag-agent.md +0 -265
- moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +0 -311
- moai_adk/templates/.claude/agents/alfred/trust-checker.md +0 -352
- moai_adk/templates/.claude/commands/alfred/0-project.md +0 -1184
- moai_adk/templates/.claude/commands/alfred/1-plan.md +0 -665
- moai_adk/templates/.claude/commands/alfred/2-run.md +0 -488
- moai_adk/templates/.claude/commands/alfred/3-sync.md +0 -623
- moai_adk/templates/.claude/hooks/alfred/HOOK_SCHEMA_VALIDATION.md +0 -313
- moai_adk/templates/.claude/hooks/alfred/README.md +0 -230
- moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +0 -174
- moai_adk/templates/.claude/hooks/alfred/core/__init__.py +0 -170
- moai_adk/templates/.claude/hooks/alfred/core/context.py +0 -67
- moai_adk/templates/.claude/hooks/alfred/core/project.py +0 -416
- moai_adk/templates/.claude/hooks/alfred/core/tags.py +0 -198
- moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +0 -21
- moai_adk/templates/.claude/hooks/alfred/handlers/notification.py +0 -25
- moai_adk/templates/.claude/hooks/alfred/handlers/session.py +0 -161
- moai_adk/templates/.claude/hooks/alfred/handlers/tool.py +0 -90
- moai_adk/templates/.claude/hooks/alfred/handlers/user.py +0 -42
- moai_adk/templates/.claude/hooks/alfred/test_hook_output.py +0 -175
- moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +0 -640
- moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +0 -696
- moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +0 -474
- moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-alfred-git-workflow/SKILL.md +0 -122
- moai_adk/templates/.claude/skills/moai-alfred-git-workflow/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-alfred-git-workflow/reference.md +0 -29
- moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/SKILL.md +0 -237
- moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/examples.md +0 -615
- moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/reference.md +0 -653
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-alfred-trust-validation/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-alfred-trust-validation/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-alfred-trust-validation/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-cc-agents/SKILL.md +0 -269
- moai_adk/templates/.claude/skills/moai-cc-agents/templates/agent-template.md +0 -32
- moai_adk/templates/.claude/skills/moai-cc-claude-md/SKILL.md +0 -298
- moai_adk/templates/.claude/skills/moai-cc-claude-md/templates/CLAUDE-template.md +0 -26
- moai_adk/templates/.claude/skills/moai-cc-commands/SKILL.md +0 -307
- moai_adk/templates/.claude/skills/moai-cc-commands/templates/command-template.md +0 -21
- moai_adk/templates/.claude/skills/moai-cc-hooks/SKILL.md +0 -252
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/pre-bash-check.sh +0 -19
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/preserve-permissions.sh +0 -19
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/validate-bash-command.py +0 -24
- moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/SKILL.md +0 -199
- moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/templates/settings-mcp-template.json +0 -39
- moai_adk/templates/.claude/skills/moai-cc-memory/SKILL.md +0 -316
- moai_adk/templates/.claude/skills/moai-cc-memory/templates/session-summary-template.md +0 -18
- moai_adk/templates/.claude/skills/moai-cc-settings/SKILL.md +0 -263
- moai_adk/templates/.claude/skills/moai-cc-settings/templates/settings-complete-template.json +0 -30
- moai_adk/templates/.claude/skills/moai-cc-skills/SKILL.md +0 -291
- moai_adk/templates/.claude/skills/moai-cc-skills/templates/SKILL-template.md +0 -15
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-domain-data-science/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-domain-data-science/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-domain-data-science/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-domain-devops/SKILL.md +0 -124
- moai_adk/templates/.claude/skills/moai-domain-devops/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-domain-devops/reference.md +0 -31
- moai_adk/templates/.claude/skills/moai-domain-ml/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-domain-ml/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-domain-ml/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-domain-security/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-domain-security/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-domain-security/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-domain-web-api/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-domain-web-api/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-domain-web-api/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-essentials-debug/SKILL.md +0 -303
- moai_adk/templates/.claude/skills/moai-essentials-debug/examples.md +0 -1064
- moai_adk/templates/.claude/skills/moai-essentials-debug/reference.md +0 -1047
- moai_adk/templates/.claude/skills/moai-essentials-perf/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-essentials-perf/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-essentials-perf/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-essentials-refactor/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-essentials-refactor/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-essentials-refactor/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-essentials-review/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-essentials-review/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-foundation-ears/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-foundation-ears/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md +0 -122
- moai_adk/templates/.claude/skills/moai-foundation-git/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-foundation-git/reference.md +0 -29
- moai_adk/templates/.claude/skills/moai-foundation-langs/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-foundation-langs/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-foundation-langs/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-foundation-specs/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-foundation-specs/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-foundation-specs/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-foundation-tags/SKILL.md +0 -113
- moai_adk/templates/.claude/skills/moai-foundation-tags/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-foundation-tags/reference.md +0 -28
- moai_adk/templates/.claude/skills/moai-foundation-trust/SKILL.md +0 -307
- moai_adk/templates/.claude/skills/moai-foundation-trust/examples.md +0 -0
- moai_adk/templates/.claude/skills/moai-foundation-trust/reference.md +0 -1099
- moai_adk/templates/.claude/skills/moai-lang-c/SKILL.md +0 -124
- moai_adk/templates/.claude/skills/moai-lang-c/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-c/reference.md +0 -31
- moai_adk/templates/.claude/skills/moai-lang-cpp/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-cpp/reference.md +0 -31
- moai_adk/templates/.claude/skills/moai-lang-csharp/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-csharp/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-lang-dart/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-lang-dart/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-dart/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +0 -125
- moai_adk/templates/.claude/skills/moai-lang-javascript/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-javascript/reference.md +0 -32
- moai_adk/templates/.claude/skills/moai-lang-php/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-php/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-lang-r/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-r/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-lang-ruby/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-ruby/reference.md +0 -31
- moai_adk/templates/.claude/skills/moai-lang-shell/SKILL.md +0 -123
- moai_adk/templates/.claude/skills/moai-lang-shell/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-shell/reference.md +0 -30
- moai_adk/templates/.claude/skills/moai-lang-sql/SKILL.md +0 -124
- moai_adk/templates/.claude/skills/moai-lang-sql/examples.md +0 -29
- moai_adk/templates/.claude/skills/moai-lang-sql/reference.md +0 -31
- moai_adk/templates/.claude/skills/moai-skill-factory/CHECKLIST.md +0 -482
- moai_adk/templates/.claude/skills/moai-skill-factory/EXAMPLES.md +0 -278
- moai_adk/templates/.claude/skills/moai-skill-factory/INTERACTIVE-DISCOVERY.md +0 -524
- moai_adk/templates/.claude/skills/moai-skill-factory/METADATA.md +0 -477
- moai_adk/templates/.claude/skills/moai-skill-factory/PARALLEL-ANALYSIS-REPORT.md +0 -429
- moai_adk/templates/.claude/skills/moai-skill-factory/PYTHON-VERSION-MATRIX.md +0 -391
- moai_adk/templates/.claude/skills/moai-skill-factory/SKILL-FACTORY-WORKFLOW.md +0 -431
- moai_adk/templates/.claude/skills/moai-skill-factory/SKILL-UPDATE-ADVISOR.md +0 -577
- moai_adk/templates/.claude/skills/moai-skill-factory/SKILL.md +0 -271
- moai_adk/templates/.claude/skills/moai-skill-factory/STEP-BY-STEP-GUIDE.md +0 -466
- moai_adk/templates/.claude/skills/moai-skill-factory/STRUCTURE.md +0 -583
- moai_adk/templates/.claude/skills/moai-skill-factory/WEB-RESEARCH.md +0 -526
- moai_adk/templates/.claude/skills/moai-skill-factory/reference.md +0 -465
- moai_adk/templates/.claude/skills/moai-skill-factory/scripts/generate-structure.sh +0 -328
- moai_adk/templates/.claude/skills/moai-skill-factory/scripts/validate-skill.sh +0 -312
- moai_adk/templates/.claude/skills/moai-skill-factory/templates/SKILL_TEMPLATE.md +0 -245
- moai_adk/templates/.claude/skills/moai-skill-factory/templates/examples-template.md +0 -285
- moai_adk/templates/.claude/skills/moai-skill-factory/templates/reference-template.md +0 -278
- moai_adk/templates/.claude/skills/moai-skill-factory/templates/scripts-template.sh +0 -303
- moai_adk/templates/.claude/skills/moai-spec-authoring/README.md +0 -137
- moai_adk/templates/.claude/skills/moai-spec-authoring/SKILL.md +0 -218
- moai_adk/templates/.claude/skills/moai-spec-authoring/examples/validate-spec.sh +0 -161
- moai_adk/templates/.claude/skills/moai-spec-authoring/examples.md +0 -541
- moai_adk/templates/.claude/skills/moai-spec-authoring/reference.md +0 -622
- moai_adk/templates/.github/ISSUE_TEMPLATE/spec.yml +0 -176
- moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +0 -69
- moai_adk/templates/.github/workflows/moai-gitflow.yml +0 -256
- moai_adk/templates/.moai/config.json +0 -96
- moai_adk/templates/.moai/memory/CLAUDE-AGENTS-GUIDE.md +0 -208
- moai_adk/templates/.moai/memory/CLAUDE-PRACTICES.md +0 -369
- moai_adk/templates/.moai/memory/CLAUDE-RULES.md +0 -539
- moai_adk/templates/.moai/memory/CONFIG-SCHEMA.md +0 -444
- moai_adk/templates/.moai/memory/DEVELOPMENT-GUIDE.md +0 -344
- moai_adk/templates/.moai/memory/GITFLOW-PROTECTION-POLICY.md +0 -220
- moai_adk/templates/.moai/memory/SKILLS-DESCRIPTION-POLICY.md +0 -218
- moai_adk/templates/.moai/memory/SPEC-METADATA.md +0 -356
- moai_adk/templates/.moai/memory/config-schema.md +0 -444
- moai_adk/templates/.moai/memory/gitflow-protection-policy.md +0 -220
- moai_adk/templates/.moai/memory/spec-metadata.md +0 -356
- moai_adk/templates/.moai/project/product.md +0 -161
- moai_adk/templates/.moai/project/structure.md +0 -156
- moai_adk/templates/.moai/project/tech.md +0 -227
- moai_adk/templates/__init__.py +0 -2
- moai_adk-0.8.0.dist-info/METADATA +0 -1722
- moai_adk-0.8.0.dist-info/RECORD +0 -282
- {moai_adk-0.8.0.dist-info → moai_adk-0.34.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,1462 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.1.0",
|
|
3
|
+
"schema_updated": "2025-12-22",
|
|
4
|
+
"config_version": "0.29.0",
|
|
5
|
+
"description": "Tab-based configuration schema for /moai:0-project with INITIALIZATION mode (Tab 0) and SETTINGS mode (Tabs 1-5) support",
|
|
6
|
+
"total_settings": 60,
|
|
7
|
+
"total_tabs": 6,
|
|
8
|
+
"total_batches": 18,
|
|
9
|
+
"tabs": [
|
|
10
|
+
{
|
|
11
|
+
"id": "tab_0_initialization",
|
|
12
|
+
"label": "Tab 0: Project Initialization",
|
|
13
|
+
"description": "Essential project setup with minimal questions and smart recommendations (INITIALIZATION mode only)",
|
|
14
|
+
"priority": "REQUIRED",
|
|
15
|
+
"mode_condition": "INITIALIZATION",
|
|
16
|
+
"order": 0,
|
|
17
|
+
"special_features": {
|
|
18
|
+
"trigger_web_search": true,
|
|
19
|
+
"generate_proposal": true,
|
|
20
|
+
"complexity_detection": true
|
|
21
|
+
},
|
|
22
|
+
"batches": [
|
|
23
|
+
{
|
|
24
|
+
"batch_id": "0.1",
|
|
25
|
+
"label": "Essential Project Information",
|
|
26
|
+
"conditional": false,
|
|
27
|
+
"questions": [
|
|
28
|
+
{
|
|
29
|
+
"question": "Choose a project name. Use only lowercase letters and hyphens (-).",
|
|
30
|
+
"header": "Project Name",
|
|
31
|
+
"field": "project.name",
|
|
32
|
+
"type": "text_input",
|
|
33
|
+
"multiSelect": false,
|
|
34
|
+
"options": [
|
|
35
|
+
{
|
|
36
|
+
"label": "Example: snake-game",
|
|
37
|
+
"description": "A game project",
|
|
38
|
+
"value": "snake-game"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"label": "Example: my-first-app",
|
|
42
|
+
"description": "First application",
|
|
43
|
+
"value": "my-first-app"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"label": "Example: todo-list",
|
|
47
|
+
"description": "Task management app",
|
|
48
|
+
"value": "todo-list"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"current_value_path": "project.name",
|
|
52
|
+
"required": true,
|
|
53
|
+
"validation": {
|
|
54
|
+
"type": "pattern",
|
|
55
|
+
"pattern": "^[a-z][a-z0-9-]*$",
|
|
56
|
+
"error_message": "Project name must be lowercase, start with letter, use only letters, numbers, and hyphens"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"question": "What kind of project would you like to create?",
|
|
61
|
+
"header": "Project Type",
|
|
62
|
+
"field": "project.type",
|
|
63
|
+
"type": "select_single",
|
|
64
|
+
"multiSelect": false,
|
|
65
|
+
"options": [
|
|
66
|
+
{
|
|
67
|
+
"label": "Web Browser App",
|
|
68
|
+
"description": "Programs that open in Chrome, Safari (games, websites, etc.)",
|
|
69
|
+
"value": "web_browser_app",
|
|
70
|
+
"tech_hint": "HTML, CSS, JavaScript or React, Vue"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"label": "Mobile App",
|
|
74
|
+
"description": "Apps installed on iPhone or Android",
|
|
75
|
+
"value": "mobile_app",
|
|
76
|
+
"tech_hint": "React Native, Flutter"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"label": "Command Line Tool",
|
|
80
|
+
"description": "Programs that run in terminal (automation scripts, etc.)",
|
|
81
|
+
"value": "cli_tool",
|
|
82
|
+
"tech_hint": "Python, Node.js, Go"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"label": "Backend API",
|
|
86
|
+
"description": "Server programs that store and process data",
|
|
87
|
+
"value": "backend_api",
|
|
88
|
+
"tech_hint": "FastAPI, Express, Django"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"current_value_path": "project.type",
|
|
92
|
+
"required": true
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"question": "Describe what you want to build in one sentence.",
|
|
96
|
+
"header": "Description",
|
|
97
|
+
"field": "project.description",
|
|
98
|
+
"type": "text_input",
|
|
99
|
+
"multiSelect": false,
|
|
100
|
+
"options": [
|
|
101
|
+
{
|
|
102
|
+
"label": "Example description",
|
|
103
|
+
"description": "A game where you control a snake to eat food",
|
|
104
|
+
"value": "{{prompt_user}}"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"current_value_path": "project.description",
|
|
108
|
+
"required": true,
|
|
109
|
+
"validation": {
|
|
110
|
+
"type": "required",
|
|
111
|
+
"min_length": 10,
|
|
112
|
+
"error_message": "Please provide a description of at least 10 characters"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"post_collection": {
|
|
119
|
+
"web_search": {
|
|
120
|
+
"enabled": true,
|
|
121
|
+
"parallel_queries": 3,
|
|
122
|
+
"query_templates": [
|
|
123
|
+
"{project_type} best practices 2025",
|
|
124
|
+
"{project_type} recommended tech stack 2025",
|
|
125
|
+
"{project_type} {description_keywords} architecture patterns"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"proposal": {
|
|
129
|
+
"generate": true,
|
|
130
|
+
"sections": ["Technology Stack", "Architecture", "Quality Standards"]
|
|
131
|
+
},
|
|
132
|
+
"approval": {
|
|
133
|
+
"required": true,
|
|
134
|
+
"options": ["approve", "modify_tech", "modify_arch", "restart"]
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "tab_1_user_language",
|
|
140
|
+
"label": "Tab 1: User & Language",
|
|
141
|
+
"description": "Configure user name, conversation language, agent prompt language",
|
|
142
|
+
"priority": "REQUIRED",
|
|
143
|
+
"batches": [
|
|
144
|
+
{
|
|
145
|
+
"batch_id": "1.1",
|
|
146
|
+
"label": "Basic Settings",
|
|
147
|
+
"conditional": false,
|
|
148
|
+
"questions": [
|
|
149
|
+
{
|
|
150
|
+
"question": "What is your name? (current: {{user.name}})",
|
|
151
|
+
"header": "User Name",
|
|
152
|
+
"field": "user.name",
|
|
153
|
+
"type": "text_input",
|
|
154
|
+
"multiSelect": false,
|
|
155
|
+
"options": [
|
|
156
|
+
{
|
|
157
|
+
"label": "Keep Current Value",
|
|
158
|
+
"description": "Continue using {{user.name}}",
|
|
159
|
+
"value": "{{current}}"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"label": "Change",
|
|
163
|
+
"description": "Select Other to enter new name",
|
|
164
|
+
"value": "{{prompt_user}}"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"current_value_path": "user.name",
|
|
168
|
+
"required": true
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"question": "What language should Alfred use in conversations? (current: {{language.conversation_language}})",
|
|
172
|
+
"header": "Conversation Language",
|
|
173
|
+
"field": "language.conversation_language",
|
|
174
|
+
"type": "select_single",
|
|
175
|
+
"multiSelect": false,
|
|
176
|
+
"options": [
|
|
177
|
+
{
|
|
178
|
+
"label": "Korean (ko)",
|
|
179
|
+
"description": "All content will be generated in Korean",
|
|
180
|
+
"value": "ko"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"label": "English (en)",
|
|
184
|
+
"description": "All content will be generated in English",
|
|
185
|
+
"value": "en"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"label": "Japanese (ja)",
|
|
189
|
+
"description": "All content will be generated in Japanese",
|
|
190
|
+
"value": "ja"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"label": "Spanish (es)",
|
|
194
|
+
"description": "All content will be generated in Spanish",
|
|
195
|
+
"value": "es"
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"current_value_path": "language.conversation_language",
|
|
199
|
+
"required": true,
|
|
200
|
+
"auto_update_fields": [
|
|
201
|
+
{
|
|
202
|
+
"field": "language.conversation_language_name",
|
|
203
|
+
"mapping": {
|
|
204
|
+
"ko": "Korean",
|
|
205
|
+
"en": "English",
|
|
206
|
+
"ja": "Japanese",
|
|
207
|
+
"es": "Spanish"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"question": "What language should agent prompts use? (current: {{language.agent_prompt_language}})",
|
|
214
|
+
"header": "Agent Prompt Language",
|
|
215
|
+
"field": "language.agent_prompt_language",
|
|
216
|
+
"type": "select_single",
|
|
217
|
+
"multiSelect": false,
|
|
218
|
+
"options": [
|
|
219
|
+
{
|
|
220
|
+
"label": "Same as Conversation",
|
|
221
|
+
"description": "Use conversation language for agent prompts",
|
|
222
|
+
"value": "{{language.conversation_language}}"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"label": "English",
|
|
226
|
+
"description": "Always use English for agent prompts (recommended for consistency)",
|
|
227
|
+
"value": "en"
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"current_value_path": "language.agent_prompt_language",
|
|
231
|
+
"required": true
|
|
232
|
+
}
|
|
233
|
+
]
|
|
234
|
+
}
|
|
235
|
+
]
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"id": "tab_2_project_info",
|
|
239
|
+
"label": "Tab 2: Project Basic Information",
|
|
240
|
+
"description": "Configure project name, description, owner, mode",
|
|
241
|
+
"priority": "RECOMMENDED",
|
|
242
|
+
"batches": [
|
|
243
|
+
{
|
|
244
|
+
"batch_id": "2.1",
|
|
245
|
+
"label": "Project Metadata",
|
|
246
|
+
"conditional": false,
|
|
247
|
+
"questions": [
|
|
248
|
+
{
|
|
249
|
+
"question": "What is the project name? (current: {{project.name}})",
|
|
250
|
+
"header": "Project Name",
|
|
251
|
+
"field": "project.name",
|
|
252
|
+
"type": "text_input",
|
|
253
|
+
"multiSelect": false,
|
|
254
|
+
"options": [
|
|
255
|
+
{
|
|
256
|
+
"label": "Keep Current Value",
|
|
257
|
+
"description": "Continue using {{project.name}}",
|
|
258
|
+
"value": "{{current}}"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"label": "Change",
|
|
262
|
+
"description": "Select Other to enter new name",
|
|
263
|
+
"value": "{{prompt_user}}"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"current_value_path": "project.name",
|
|
267
|
+
"required": true
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"question": "Project description? (current: {{project.description}})",
|
|
271
|
+
"header": "Description",
|
|
272
|
+
"field": "project.description",
|
|
273
|
+
"type": "text_input",
|
|
274
|
+
"multiSelect": false,
|
|
275
|
+
"options": [
|
|
276
|
+
{
|
|
277
|
+
"label": "Keep Current Value",
|
|
278
|
+
"description": "Continue using current description",
|
|
279
|
+
"value": "{{current}}"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"label": "Change",
|
|
283
|
+
"description": "Select Other to enter new description",
|
|
284
|
+
"value": "{{prompt_user}}"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"current_value_path": "project.description",
|
|
288
|
+
"required": true
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"question": "Project owner? (current: {{project.owner}})",
|
|
292
|
+
"header": "Owner",
|
|
293
|
+
"field": "project.owner",
|
|
294
|
+
"type": "text_input",
|
|
295
|
+
"multiSelect": false,
|
|
296
|
+
"options": [
|
|
297
|
+
{
|
|
298
|
+
"label": "Keep Current Value",
|
|
299
|
+
"description": "Continue using {{project.owner}}",
|
|
300
|
+
"value": "{{current}}"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"label": "Change",
|
|
304
|
+
"description": "Select Other to enter new owner",
|
|
305
|
+
"value": "{{prompt_user}}"
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
"current_value_path": "project.owner",
|
|
309
|
+
"required": true
|
|
310
|
+
}
|
|
311
|
+
]
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"batch_id": "2.2",
|
|
315
|
+
"label": "Auto-processed Locale Settings",
|
|
316
|
+
"conditional": false,
|
|
317
|
+
"questions": [],
|
|
318
|
+
"auto_processing": {
|
|
319
|
+
"enabled": true,
|
|
320
|
+
"description": "Automatically derived from language.conversation_language. No user input required.",
|
|
321
|
+
"fields": [
|
|
322
|
+
{
|
|
323
|
+
"field": "project.locale",
|
|
324
|
+
"derivation": "auto-map from conversation_language",
|
|
325
|
+
"mapping": {
|
|
326
|
+
"ko": "ko_KR",
|
|
327
|
+
"en": "en_US",
|
|
328
|
+
"ja": "ja_JP",
|
|
329
|
+
"es": "es_ES"
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
]
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
]
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"id": "tab_3_git_strategy",
|
|
339
|
+
"label": "Tab 3: Git Strategy & Workflow",
|
|
340
|
+
"description": "Configure Personal/Team Git settings, commit/branch strategy (conditional batches based on mode)",
|
|
341
|
+
"priority": "RECOMMENDED",
|
|
342
|
+
"batches": [
|
|
343
|
+
{
|
|
344
|
+
"batch_id": "3.0",
|
|
345
|
+
"label": "Workflow Mode Selection",
|
|
346
|
+
"conditional": false,
|
|
347
|
+
"questions": [
|
|
348
|
+
{
|
|
349
|
+
"question": "Which Git workflow mode would you like to use? (current: {{git_strategy.mode}})",
|
|
350
|
+
"header": "Git Mode",
|
|
351
|
+
"field": "git_strategy.mode",
|
|
352
|
+
"type": "select_single",
|
|
353
|
+
"multiSelect": false,
|
|
354
|
+
"options": [
|
|
355
|
+
{
|
|
356
|
+
"label": "Manual (Local)",
|
|
357
|
+
"description": "Local Git only, no GitHub integration, manual branch creation",
|
|
358
|
+
"value": "manual"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"label": "Personal (GitHub Individual)",
|
|
362
|
+
"description": "GitHub individual project with automation (recommended for solo developers)",
|
|
363
|
+
"value": "personal"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"label": "Team (GitHub Team)",
|
|
367
|
+
"description": "GitHub team project with full governance and code review",
|
|
368
|
+
"value": "team"
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"current_value_path": "git_strategy.mode",
|
|
372
|
+
"required": true
|
|
373
|
+
}
|
|
374
|
+
]
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"batch_id": "3.1",
|
|
378
|
+
"label": "Manual Core Settings",
|
|
379
|
+
"conditional": true,
|
|
380
|
+
"condition": {
|
|
381
|
+
"field": "git_strategy.mode",
|
|
382
|
+
"operator": "equals",
|
|
383
|
+
"value": "manual"
|
|
384
|
+
},
|
|
385
|
+
"questions": [
|
|
386
|
+
{
|
|
387
|
+
"question": "Workflow style for Manual mode? (current: {{git_strategy.manual.workflow}})",
|
|
388
|
+
"header": "Workflow",
|
|
389
|
+
"field": "git_strategy.manual.workflow",
|
|
390
|
+
"type": "select_single",
|
|
391
|
+
"multiSelect": false,
|
|
392
|
+
"options": [
|
|
393
|
+
{
|
|
394
|
+
"label": "GitHub Flow",
|
|
395
|
+
"description": "Simple branch-based workflow (recommended)",
|
|
396
|
+
"value": "github-flow"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"label": "Git Flow",
|
|
400
|
+
"description": "Multi-branch workflow (develop, release, hotfix)",
|
|
401
|
+
"value": "git-flow"
|
|
402
|
+
}
|
|
403
|
+
],
|
|
404
|
+
"current_value_path": "git_strategy.manual.workflow",
|
|
405
|
+
"required": true
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"question": "Environment for Manual mode? (current: {{git_strategy.manual.environment}})",
|
|
409
|
+
"header": "Environment",
|
|
410
|
+
"field": "git_strategy.manual.environment",
|
|
411
|
+
"type": "select_single",
|
|
412
|
+
"multiSelect": false,
|
|
413
|
+
"options": [
|
|
414
|
+
{
|
|
415
|
+
"label": "Local",
|
|
416
|
+
"description": "Local Git only, no remote",
|
|
417
|
+
"value": "local"
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
"current_value_path": "git_strategy.manual.environment",
|
|
421
|
+
"required": true
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"question": "Enable GitHub integration for Manual mode? (current: {{git_strategy.manual.github_integration}})",
|
|
425
|
+
"header": "GitHub Integration",
|
|
426
|
+
"field": "git_strategy.manual.github_integration",
|
|
427
|
+
"type": "select_single",
|
|
428
|
+
"multiSelect": false,
|
|
429
|
+
"options": [
|
|
430
|
+
{
|
|
431
|
+
"label": "Disabled",
|
|
432
|
+
"description": "No GitHub features (recommended for Manual mode)",
|
|
433
|
+
"value": false
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"label": "Enabled",
|
|
437
|
+
"description": "Enable GitHub features",
|
|
438
|
+
"value": true
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"current_value_path": "git_strategy.manual.github_integration",
|
|
442
|
+
"required": true
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"question": "Auto-checkpoint for Manual mode? (current: {{git_strategy.manual.auto_checkpoint}})",
|
|
446
|
+
"header": "Auto Checkpoint",
|
|
447
|
+
"field": "git_strategy.manual.auto_checkpoint",
|
|
448
|
+
"type": "select_single",
|
|
449
|
+
"multiSelect": false,
|
|
450
|
+
"options": [
|
|
451
|
+
{
|
|
452
|
+
"label": "Disabled",
|
|
453
|
+
"description": "No automatic checkpoints (recommended for Manual mode)",
|
|
454
|
+
"value": "disabled"
|
|
455
|
+
}
|
|
456
|
+
],
|
|
457
|
+
"current_value_path": "git_strategy.manual.auto_checkpoint",
|
|
458
|
+
"required": true
|
|
459
|
+
}
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"batch_id": "3.2",
|
|
464
|
+
"label": "Manual Push Settings",
|
|
465
|
+
"conditional": true,
|
|
466
|
+
"condition": {
|
|
467
|
+
"field": "git_strategy.mode",
|
|
468
|
+
"operator": "equals",
|
|
469
|
+
"value": "manual"
|
|
470
|
+
},
|
|
471
|
+
"questions": [
|
|
472
|
+
{
|
|
473
|
+
"question": "Push to remote for Manual mode? (current: {{git_strategy.manual.push_to_remote}})",
|
|
474
|
+
"header": "Push Remote",
|
|
475
|
+
"field": "git_strategy.manual.push_to_remote",
|
|
476
|
+
"type": "select_single",
|
|
477
|
+
"multiSelect": false,
|
|
478
|
+
"options": [
|
|
479
|
+
{
|
|
480
|
+
"label": "Disabled",
|
|
481
|
+
"description": "No automatic push (recommended for Manual mode)",
|
|
482
|
+
"value": false
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"label": "Enabled",
|
|
486
|
+
"description": "Enable automatic push",
|
|
487
|
+
"value": true
|
|
488
|
+
}
|
|
489
|
+
],
|
|
490
|
+
"current_value_path": "git_strategy.manual.push_to_remote",
|
|
491
|
+
"required": true
|
|
492
|
+
}
|
|
493
|
+
]
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"batch_id": "3.3",
|
|
497
|
+
"label": "Personal Core Settings",
|
|
498
|
+
"conditional": true,
|
|
499
|
+
"condition": {
|
|
500
|
+
"field": "git_strategy.mode",
|
|
501
|
+
"operator": "equals",
|
|
502
|
+
"value": "personal"
|
|
503
|
+
},
|
|
504
|
+
"questions": [
|
|
505
|
+
{
|
|
506
|
+
"question": "Workflow style for Personal mode? (current: {{git_strategy.personal.workflow}})",
|
|
507
|
+
"header": "Workflow",
|
|
508
|
+
"field": "git_strategy.personal.workflow",
|
|
509
|
+
"type": "select_single",
|
|
510
|
+
"multiSelect": false,
|
|
511
|
+
"options": [
|
|
512
|
+
{
|
|
513
|
+
"label": "GitHub Flow",
|
|
514
|
+
"description": "Simple branch-based workflow (recommended)",
|
|
515
|
+
"value": "github-flow"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"label": "Git Flow",
|
|
519
|
+
"description": "Multi-branch workflow (develop, release, hotfix)",
|
|
520
|
+
"value": "git-flow"
|
|
521
|
+
}
|
|
522
|
+
],
|
|
523
|
+
"current_value_path": "git_strategy.personal.workflow",
|
|
524
|
+
"required": true
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"question": "Environment for Personal mode? (current: {{git_strategy.personal.environment}})",
|
|
528
|
+
"header": "Environment",
|
|
529
|
+
"field": "git_strategy.personal.environment",
|
|
530
|
+
"type": "select_single",
|
|
531
|
+
"multiSelect": false,
|
|
532
|
+
"options": [
|
|
533
|
+
{
|
|
534
|
+
"label": "GitHub",
|
|
535
|
+
"description": "GitHub repository with automation",
|
|
536
|
+
"value": "github"
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"current_value_path": "git_strategy.personal.environment",
|
|
540
|
+
"required": true
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"question": "Enable GitHub integration for Personal mode? (current: {{git_strategy.personal.github_integration}})",
|
|
544
|
+
"header": "GitHub Integration",
|
|
545
|
+
"field": "git_strategy.personal.github_integration",
|
|
546
|
+
"type": "select_single",
|
|
547
|
+
"multiSelect": false,
|
|
548
|
+
"options": [
|
|
549
|
+
{
|
|
550
|
+
"label": "Enabled",
|
|
551
|
+
"description": "Full GitHub features (recommended for Personal mode)",
|
|
552
|
+
"value": true
|
|
553
|
+
}
|
|
554
|
+
],
|
|
555
|
+
"current_value_path": "git_strategy.personal.github_integration",
|
|
556
|
+
"required": true
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"question": "Auto-create branches for Personal mode? (current: {{git_strategy.personal.auto_branch}})",
|
|
560
|
+
"header": "Auto Branch",
|
|
561
|
+
"field": "git_strategy.personal.auto_branch",
|
|
562
|
+
"type": "select_single",
|
|
563
|
+
"multiSelect": false,
|
|
564
|
+
"options": [
|
|
565
|
+
{
|
|
566
|
+
"label": "Enabled",
|
|
567
|
+
"description": "Automatically create feature branches (recommended)",
|
|
568
|
+
"value": true
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"label": "Disabled",
|
|
572
|
+
"description": "Manual branch creation",
|
|
573
|
+
"value": false
|
|
574
|
+
}
|
|
575
|
+
],
|
|
576
|
+
"current_value_path": "git_strategy.personal.auto_branch",
|
|
577
|
+
"required": true
|
|
578
|
+
}
|
|
579
|
+
]
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"batch_id": "3.4",
|
|
583
|
+
"label": "Personal Commit & Push Settings",
|
|
584
|
+
"conditional": true,
|
|
585
|
+
"condition": {
|
|
586
|
+
"field": "git_strategy.mode",
|
|
587
|
+
"operator": "equals",
|
|
588
|
+
"value": "personal"
|
|
589
|
+
},
|
|
590
|
+
"questions": [
|
|
591
|
+
{
|
|
592
|
+
"question": "Auto-commit for Personal mode? (current: {{git_strategy.personal.auto_commit}})",
|
|
593
|
+
"header": "Auto Commit",
|
|
594
|
+
"field": "git_strategy.personal.auto_commit",
|
|
595
|
+
"type": "select_single",
|
|
596
|
+
"multiSelect": false,
|
|
597
|
+
"options": [
|
|
598
|
+
{
|
|
599
|
+
"label": "Enabled",
|
|
600
|
+
"description": "Automatically commit after phase completion (recommended)",
|
|
601
|
+
"value": true
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"label": "Disabled",
|
|
605
|
+
"description": "Manual commit",
|
|
606
|
+
"value": false
|
|
607
|
+
}
|
|
608
|
+
],
|
|
609
|
+
"current_value_path": "git_strategy.personal.auto_commit",
|
|
610
|
+
"required": true
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"question": "Auto-PR for Personal mode? (current: {{git_strategy.personal.auto_pr}})",
|
|
614
|
+
"header": "Auto PR",
|
|
615
|
+
"field": "git_strategy.personal.auto_pr",
|
|
616
|
+
"type": "select_single",
|
|
617
|
+
"multiSelect": false,
|
|
618
|
+
"options": [
|
|
619
|
+
{
|
|
620
|
+
"label": "Disabled",
|
|
621
|
+
"description": "No automatic PR (recommended for Personal mode)",
|
|
622
|
+
"value": false
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"label": "Enabled",
|
|
626
|
+
"description": "Automatically create PRs",
|
|
627
|
+
"value": true
|
|
628
|
+
}
|
|
629
|
+
],
|
|
630
|
+
"current_value_path": "git_strategy.personal.auto_pr",
|
|
631
|
+
"required": true
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"question": "Auto-push for Personal mode? (current: {{git_strategy.personal.auto_push}})",
|
|
635
|
+
"header": "Auto Push",
|
|
636
|
+
"field": "git_strategy.personal.auto_push",
|
|
637
|
+
"type": "select_single",
|
|
638
|
+
"multiSelect": false,
|
|
639
|
+
"options": [
|
|
640
|
+
{
|
|
641
|
+
"label": "Enabled",
|
|
642
|
+
"description": "Automatically push to remote (recommended)",
|
|
643
|
+
"value": true
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"label": "Disabled",
|
|
647
|
+
"description": "Manual push",
|
|
648
|
+
"value": false
|
|
649
|
+
}
|
|
650
|
+
],
|
|
651
|
+
"current_value_path": "git_strategy.personal.auto_push",
|
|
652
|
+
"required": true
|
|
653
|
+
}
|
|
654
|
+
]
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"batch_id": "3.5",
|
|
658
|
+
"label": "Personal Branch Settings",
|
|
659
|
+
"conditional": true,
|
|
660
|
+
"condition": {
|
|
661
|
+
"field": "git_strategy.mode",
|
|
662
|
+
"operator": "equals",
|
|
663
|
+
"value": "personal"
|
|
664
|
+
},
|
|
665
|
+
"questions": [
|
|
666
|
+
{
|
|
667
|
+
"question": "Branch prefix for Personal mode? (current: {{git_strategy.personal.branch_prefix}})",
|
|
668
|
+
"header": "Branch Prefix",
|
|
669
|
+
"field": "git_strategy.personal.branch_prefix",
|
|
670
|
+
"type": "text_input",
|
|
671
|
+
"multiSelect": false,
|
|
672
|
+
"options": [
|
|
673
|
+
{
|
|
674
|
+
"label": "Keep Current Value",
|
|
675
|
+
"description": "Continue using {{git_strategy.personal.branch_prefix}}",
|
|
676
|
+
"value": "{{current}}"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"label": "Change",
|
|
680
|
+
"description": "Select Other to enter new prefix (e.g., feature/SPEC-)",
|
|
681
|
+
"value": "{{prompt_user}}"
|
|
682
|
+
}
|
|
683
|
+
],
|
|
684
|
+
"current_value_path": "git_strategy.personal.branch_prefix",
|
|
685
|
+
"required": true
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"question": "Main branch for Personal mode? (current: {{git_strategy.personal.main_branch}})",
|
|
689
|
+
"header": "Main Branch",
|
|
690
|
+
"field": "git_strategy.personal.main_branch",
|
|
691
|
+
"type": "select_single",
|
|
692
|
+
"multiSelect": false,
|
|
693
|
+
"options": [
|
|
694
|
+
{
|
|
695
|
+
"label": "main",
|
|
696
|
+
"description": "Use 'main' as primary branch (recommended)",
|
|
697
|
+
"value": "main"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"label": "master",
|
|
701
|
+
"description": "Use 'master' as primary branch",
|
|
702
|
+
"value": "master"
|
|
703
|
+
}
|
|
704
|
+
],
|
|
705
|
+
"current_value_path": "git_strategy.personal.main_branch",
|
|
706
|
+
"required": true
|
|
707
|
+
}
|
|
708
|
+
]
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"batch_id": "3.6",
|
|
712
|
+
"label": "Team Core Settings",
|
|
713
|
+
"conditional": true,
|
|
714
|
+
"condition": {
|
|
715
|
+
"field": "git_strategy.mode",
|
|
716
|
+
"operator": "equals",
|
|
717
|
+
"value": "team"
|
|
718
|
+
},
|
|
719
|
+
"questions": [
|
|
720
|
+
{
|
|
721
|
+
"question": "Workflow style for Team mode? (current: {{git_strategy.team.workflow}})",
|
|
722
|
+
"header": "Workflow",
|
|
723
|
+
"field": "git_strategy.team.workflow",
|
|
724
|
+
"type": "select_single",
|
|
725
|
+
"multiSelect": false,
|
|
726
|
+
"options": [
|
|
727
|
+
{
|
|
728
|
+
"label": "GitHub Flow",
|
|
729
|
+
"description": "Simple branch-based workflow (recommended)",
|
|
730
|
+
"value": "github-flow"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"label": "Git Flow",
|
|
734
|
+
"description": "Multi-branch workflow (develop, release, hotfix)",
|
|
735
|
+
"value": "git-flow"
|
|
736
|
+
}
|
|
737
|
+
],
|
|
738
|
+
"current_value_path": "git_strategy.team.workflow",
|
|
739
|
+
"required": true
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"question": "Environment for Team mode? (current: {{git_strategy.team.environment}})",
|
|
743
|
+
"header": "Environment",
|
|
744
|
+
"field": "git_strategy.team.environment",
|
|
745
|
+
"type": "select_single",
|
|
746
|
+
"multiSelect": false,
|
|
747
|
+
"options": [
|
|
748
|
+
{
|
|
749
|
+
"label": "GitHub",
|
|
750
|
+
"description": "GitHub repository with team features",
|
|
751
|
+
"value": "github"
|
|
752
|
+
}
|
|
753
|
+
],
|
|
754
|
+
"current_value_path": "git_strategy.team.environment",
|
|
755
|
+
"required": true
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"question": "Enable GitHub integration for Team mode? (current: {{git_strategy.team.github_integration}})",
|
|
759
|
+
"header": "GitHub Integration",
|
|
760
|
+
"field": "git_strategy.team.github_integration",
|
|
761
|
+
"type": "select_single",
|
|
762
|
+
"multiSelect": false,
|
|
763
|
+
"options": [
|
|
764
|
+
{
|
|
765
|
+
"label": "Enabled",
|
|
766
|
+
"description": "Full GitHub team features (required for Team mode)",
|
|
767
|
+
"value": true
|
|
768
|
+
}
|
|
769
|
+
],
|
|
770
|
+
"current_value_path": "git_strategy.team.github_integration",
|
|
771
|
+
"required": true
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"question": "Auto-create branches for Team mode? (current: {{git_strategy.team.auto_branch}})",
|
|
775
|
+
"header": "Auto Branch",
|
|
776
|
+
"field": "git_strategy.team.auto_branch",
|
|
777
|
+
"type": "select_single",
|
|
778
|
+
"multiSelect": false,
|
|
779
|
+
"options": [
|
|
780
|
+
{
|
|
781
|
+
"label": "Enabled",
|
|
782
|
+
"description": "Automatically create feature branches (recommended)",
|
|
783
|
+
"value": true
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"label": "Disabled",
|
|
787
|
+
"description": "Manual branch creation",
|
|
788
|
+
"value": false
|
|
789
|
+
}
|
|
790
|
+
],
|
|
791
|
+
"current_value_path": "git_strategy.team.auto_branch",
|
|
792
|
+
"required": true
|
|
793
|
+
}
|
|
794
|
+
]
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"batch_id": "3.7",
|
|
798
|
+
"label": "Team Commit & PR Settings",
|
|
799
|
+
"conditional": true,
|
|
800
|
+
"condition": {
|
|
801
|
+
"field": "git_strategy.mode",
|
|
802
|
+
"operator": "equals",
|
|
803
|
+
"value": "team"
|
|
804
|
+
},
|
|
805
|
+
"questions": [
|
|
806
|
+
{
|
|
807
|
+
"question": "Auto-commit for Team mode? (current: {{git_strategy.team.auto_commit}})",
|
|
808
|
+
"header": "Auto Commit",
|
|
809
|
+
"field": "git_strategy.team.auto_commit",
|
|
810
|
+
"type": "select_single",
|
|
811
|
+
"multiSelect": false,
|
|
812
|
+
"options": [
|
|
813
|
+
{
|
|
814
|
+
"label": "Enabled",
|
|
815
|
+
"description": "Automatically commit after phase completion (recommended)",
|
|
816
|
+
"value": true
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"label": "Disabled",
|
|
820
|
+
"description": "Manual commit",
|
|
821
|
+
"value": false
|
|
822
|
+
}
|
|
823
|
+
],
|
|
824
|
+
"current_value_path": "git_strategy.team.auto_commit",
|
|
825
|
+
"required": true
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"question": "Auto-PR for Team mode? (current: {{git_strategy.team.auto_pr}})",
|
|
829
|
+
"header": "Auto PR",
|
|
830
|
+
"field": "git_strategy.team.auto_pr",
|
|
831
|
+
"type": "select_single",
|
|
832
|
+
"multiSelect": false,
|
|
833
|
+
"options": [
|
|
834
|
+
{
|
|
835
|
+
"label": "Enabled",
|
|
836
|
+
"description": "Automatically create PRs (recommended for Team mode)",
|
|
837
|
+
"value": true
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"label": "Disabled",
|
|
841
|
+
"description": "Manual PR creation",
|
|
842
|
+
"value": false
|
|
843
|
+
}
|
|
844
|
+
],
|
|
845
|
+
"current_value_path": "git_strategy.team.auto_pr",
|
|
846
|
+
"required": true
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"question": "Auto-push for Team mode? (current: {{git_strategy.team.auto_push}})",
|
|
850
|
+
"header": "Auto Push",
|
|
851
|
+
"field": "git_strategy.team.auto_push",
|
|
852
|
+
"type": "select_single",
|
|
853
|
+
"multiSelect": false,
|
|
854
|
+
"options": [
|
|
855
|
+
{
|
|
856
|
+
"label": "Enabled",
|
|
857
|
+
"description": "Automatically push to remote (recommended)",
|
|
858
|
+
"value": true
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"label": "Disabled",
|
|
862
|
+
"description": "Manual push",
|
|
863
|
+
"value": false
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"current_value_path": "git_strategy.team.auto_push",
|
|
867
|
+
"required": true
|
|
868
|
+
}
|
|
869
|
+
]
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"batch_id": "3.8",
|
|
873
|
+
"label": "Team Branch & Protection Settings",
|
|
874
|
+
"conditional": true,
|
|
875
|
+
"condition": {
|
|
876
|
+
"field": "git_strategy.mode",
|
|
877
|
+
"operator": "equals",
|
|
878
|
+
"value": "team"
|
|
879
|
+
},
|
|
880
|
+
"questions": [
|
|
881
|
+
{
|
|
882
|
+
"question": "Create draft PRs for Team mode? (current: {{git_strategy.team.draft_pr}})",
|
|
883
|
+
"header": "Draft PR",
|
|
884
|
+
"field": "git_strategy.team.draft_pr",
|
|
885
|
+
"type": "select_single",
|
|
886
|
+
"multiSelect": false,
|
|
887
|
+
"options": [
|
|
888
|
+
{
|
|
889
|
+
"label": "Enabled",
|
|
890
|
+
"description": "Create PRs as draft (recommended for Team mode)",
|
|
891
|
+
"value": true
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"label": "Disabled",
|
|
895
|
+
"description": "Create PRs as ready for review",
|
|
896
|
+
"value": false
|
|
897
|
+
}
|
|
898
|
+
],
|
|
899
|
+
"current_value_path": "git_strategy.team.draft_pr",
|
|
900
|
+
"required": true
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"question": "Required reviews for Team mode? (current: {{git_strategy.team.required_reviews}})",
|
|
904
|
+
"header": "Required Reviews",
|
|
905
|
+
"field": "git_strategy.team.required_reviews",
|
|
906
|
+
"type": "number_input",
|
|
907
|
+
"multiSelect": false,
|
|
908
|
+
"options": [
|
|
909
|
+
{
|
|
910
|
+
"label": "1 reviewer",
|
|
911
|
+
"description": "Minimum 1 approval (recommended)",
|
|
912
|
+
"value": 1
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"label": "2 reviewers",
|
|
916
|
+
"description": "Minimum 2 approvals",
|
|
917
|
+
"value": 2
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"label": "Other",
|
|
921
|
+
"description": "Select Other to enter custom number",
|
|
922
|
+
"value": "{{prompt_user}}"
|
|
923
|
+
}
|
|
924
|
+
],
|
|
925
|
+
"current_value_path": "git_strategy.team.required_reviews",
|
|
926
|
+
"required": true
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"question": "Enable branch protection for Team mode? (current: {{git_strategy.team.branch_protection}})",
|
|
930
|
+
"header": "Branch Protection",
|
|
931
|
+
"field": "git_strategy.team.branch_protection",
|
|
932
|
+
"type": "select_single",
|
|
933
|
+
"multiSelect": false,
|
|
934
|
+
"options": [
|
|
935
|
+
{
|
|
936
|
+
"label": "Enabled",
|
|
937
|
+
"description": "Protect main branch (recommended)",
|
|
938
|
+
"value": true
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"label": "Disabled",
|
|
942
|
+
"description": "No branch protection",
|
|
943
|
+
"value": false
|
|
944
|
+
}
|
|
945
|
+
],
|
|
946
|
+
"current_value_path": "git_strategy.team.branch_protection",
|
|
947
|
+
"required": true
|
|
948
|
+
}
|
|
949
|
+
]
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"batch_id": "3.9",
|
|
953
|
+
"label": "Team Branch Naming Settings",
|
|
954
|
+
"conditional": true,
|
|
955
|
+
"condition": {
|
|
956
|
+
"field": "git_strategy.mode",
|
|
957
|
+
"operator": "equals",
|
|
958
|
+
"value": "team"
|
|
959
|
+
},
|
|
960
|
+
"questions": [
|
|
961
|
+
{
|
|
962
|
+
"question": "Branch prefix for Team mode? (current: {{git_strategy.team.branch_prefix}})",
|
|
963
|
+
"header": "Branch Prefix",
|
|
964
|
+
"field": "git_strategy.team.branch_prefix",
|
|
965
|
+
"type": "text_input",
|
|
966
|
+
"multiSelect": false,
|
|
967
|
+
"options": [
|
|
968
|
+
{
|
|
969
|
+
"label": "Keep Current Value",
|
|
970
|
+
"description": "Continue using {{git_strategy.team.branch_prefix}}",
|
|
971
|
+
"value": "{{current}}"
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"label": "Change",
|
|
975
|
+
"description": "Select Other to enter new prefix (e.g., feature/SPEC-)",
|
|
976
|
+
"value": "{{prompt_user}}"
|
|
977
|
+
}
|
|
978
|
+
],
|
|
979
|
+
"current_value_path": "git_strategy.team.branch_prefix",
|
|
980
|
+
"required": true
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"question": "Main branch for Team mode? (current: {{git_strategy.team.main_branch}})",
|
|
984
|
+
"header": "Main Branch",
|
|
985
|
+
"field": "git_strategy.team.main_branch",
|
|
986
|
+
"type": "select_single",
|
|
987
|
+
"multiSelect": false,
|
|
988
|
+
"options": [
|
|
989
|
+
{
|
|
990
|
+
"label": "main",
|
|
991
|
+
"description": "Use 'main' as primary branch (recommended)",
|
|
992
|
+
"value": "main"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"label": "master",
|
|
996
|
+
"description": "Use 'master' as primary branch",
|
|
997
|
+
"value": "master"
|
|
998
|
+
}
|
|
999
|
+
],
|
|
1000
|
+
"current_value_path": "git_strategy.team.main_branch",
|
|
1001
|
+
"required": true
|
|
1002
|
+
}
|
|
1003
|
+
]
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"batch_id": "3.10",
|
|
1007
|
+
"label": "GitHub Automation Settings",
|
|
1008
|
+
"conditional": true,
|
|
1009
|
+
"condition": {
|
|
1010
|
+
"field": "git_strategy.mode",
|
|
1011
|
+
"operator": "not_equals",
|
|
1012
|
+
"value": "manual"
|
|
1013
|
+
},
|
|
1014
|
+
"questions": [
|
|
1015
|
+
{
|
|
1016
|
+
"question": "Enable TRUST 5 in GitHub PR templates? (current: {{github.enable_trust_5}})",
|
|
1017
|
+
"header": "TRUST 5",
|
|
1018
|
+
"field": "github.enable_trust_5",
|
|
1019
|
+
"type": "select_single",
|
|
1020
|
+
"multiSelect": false,
|
|
1021
|
+
"options": [
|
|
1022
|
+
{
|
|
1023
|
+
"label": "Enabled",
|
|
1024
|
+
"description": "Include TRUST 5 sections in PR templates (recommended)",
|
|
1025
|
+
"value": true
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"label": "Disabled",
|
|
1029
|
+
"description": "Omit TRUST 5 sections",
|
|
1030
|
+
"value": false
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
1033
|
+
"current_value_path": "github.enable_trust_5",
|
|
1034
|
+
"required": true
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"question": "Auto-delete merged branches? (current: {{github.auto_delete_branches}})",
|
|
1038
|
+
"header": "Auto Delete",
|
|
1039
|
+
"field": "github.auto_delete_branches",
|
|
1040
|
+
"type": "select_single",
|
|
1041
|
+
"multiSelect": false,
|
|
1042
|
+
"options": [
|
|
1043
|
+
{
|
|
1044
|
+
"label": "Enabled",
|
|
1045
|
+
"description": "Delete branches after merge (recommended)",
|
|
1046
|
+
"value": true
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"label": "Disabled",
|
|
1050
|
+
"description": "Keep branches after merge",
|
|
1051
|
+
"value": false
|
|
1052
|
+
}
|
|
1053
|
+
],
|
|
1054
|
+
"current_value_path": "github.auto_delete_branches",
|
|
1055
|
+
"required": false
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"question": "How should SPEC implementations be committed? (current: {{github.spec_git_workflow}})",
|
|
1059
|
+
"header": "SPEC Workflow",
|
|
1060
|
+
"field": "github.spec_git_workflow",
|
|
1061
|
+
"type": "select_single",
|
|
1062
|
+
"multiSelect": false,
|
|
1063
|
+
"note": "Only relevant when auto_branch is enabled. If auto_branch is disabled, commits go to current branch.",
|
|
1064
|
+
"options": [
|
|
1065
|
+
{
|
|
1066
|
+
"label": "Direct Commit",
|
|
1067
|
+
"description": "Commit directly to base branch (main/develop) - fast for personal projects",
|
|
1068
|
+
"value": "develop_direct"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"label": "Feature Branch",
|
|
1072
|
+
"description": "Create feature/SPEC-xxx branch for each SPEC - better for code review",
|
|
1073
|
+
"value": "feature_branch"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"label": "Per SPEC",
|
|
1077
|
+
"description": "Ask for branching strategy on each SPEC creation",
|
|
1078
|
+
"value": "per_spec"
|
|
1079
|
+
}
|
|
1080
|
+
],
|
|
1081
|
+
"current_value_path": "github.spec_git_workflow",
|
|
1082
|
+
"required": true
|
|
1083
|
+
}
|
|
1084
|
+
]
|
|
1085
|
+
}
|
|
1086
|
+
]
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"id": "tab_4_quality_reports",
|
|
1090
|
+
"label": "Tab 4: Quality Principles & Reports",
|
|
1091
|
+
"description": "Configure TRUST 5, test coverage, report generation",
|
|
1092
|
+
"priority": "OPTIONAL",
|
|
1093
|
+
"batches": [
|
|
1094
|
+
{
|
|
1095
|
+
"batch_id": "4.1",
|
|
1096
|
+
"label": "Constitution Settings",
|
|
1097
|
+
"conditional": false,
|
|
1098
|
+
"questions": [
|
|
1099
|
+
{
|
|
1100
|
+
"question": "Enforce TDD (Test-Driven Development)? (current: {{constitution.enforce_tdd}})",
|
|
1101
|
+
"header": "Enforce TDD",
|
|
1102
|
+
"field": "constitution.enforce_tdd",
|
|
1103
|
+
"type": "select_single",
|
|
1104
|
+
"multiSelect": false,
|
|
1105
|
+
"options": [
|
|
1106
|
+
{
|
|
1107
|
+
"label": "Enabled",
|
|
1108
|
+
"description": "Require tests before implementation (recommended)",
|
|
1109
|
+
"value": true
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"label": "Disabled",
|
|
1113
|
+
"description": "Allow implementation without tests",
|
|
1114
|
+
"value": false
|
|
1115
|
+
}
|
|
1116
|
+
],
|
|
1117
|
+
"current_value_path": "constitution.enforce_tdd",
|
|
1118
|
+
"required": true
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"question": "Test coverage target percentage? (current: {{constitution.test_coverage_target}})",
|
|
1122
|
+
"header": "Coverage Target",
|
|
1123
|
+
"field": "constitution.test_coverage_target",
|
|
1124
|
+
"type": "number_input",
|
|
1125
|
+
"multiSelect": false,
|
|
1126
|
+
"options": [
|
|
1127
|
+
{
|
|
1128
|
+
"label": "85%",
|
|
1129
|
+
"description": "Standard coverage (recommended)",
|
|
1130
|
+
"value": 85
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"label": "90%",
|
|
1134
|
+
"description": "High quality coverage",
|
|
1135
|
+
"value": 90
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"label": "Other",
|
|
1139
|
+
"description": "Select Other to enter custom percentage (0-100)",
|
|
1140
|
+
"value": "{{prompt_user}}"
|
|
1141
|
+
}
|
|
1142
|
+
],
|
|
1143
|
+
"current_value_path": "constitution.test_coverage_target",
|
|
1144
|
+
"required": true
|
|
1145
|
+
}
|
|
1146
|
+
]
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"batch_id": "4.2",
|
|
1150
|
+
"label": "Report Generation Policy",
|
|
1151
|
+
"conditional": false,
|
|
1152
|
+
"questions": [
|
|
1153
|
+
{
|
|
1154
|
+
"question": "Enable report generation? (current: {{report_generation.enabled}})",
|
|
1155
|
+
"header": "Enable Reports",
|
|
1156
|
+
"field": "report_generation.enabled",
|
|
1157
|
+
"type": "select_single",
|
|
1158
|
+
"multiSelect": false,
|
|
1159
|
+
"options": [
|
|
1160
|
+
{
|
|
1161
|
+
"label": "Enabled",
|
|
1162
|
+
"description": "Generate reports (recommended)",
|
|
1163
|
+
"value": true
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"label": "Disabled",
|
|
1167
|
+
"description": "No report generation",
|
|
1168
|
+
"value": false
|
|
1169
|
+
}
|
|
1170
|
+
],
|
|
1171
|
+
"current_value_path": "report_generation.enabled",
|
|
1172
|
+
"required": true
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"question": "Auto-create full reports? (current: {{report_generation.auto_create}})",
|
|
1176
|
+
"header": "Auto Create",
|
|
1177
|
+
"field": "report_generation.auto_create",
|
|
1178
|
+
"type": "select_single",
|
|
1179
|
+
"multiSelect": false,
|
|
1180
|
+
"options": [
|
|
1181
|
+
{
|
|
1182
|
+
"label": "Enabled",
|
|
1183
|
+
"description": "Automatically generate full reports",
|
|
1184
|
+
"value": true
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"label": "Disabled",
|
|
1188
|
+
"description": "Generate minimal reports (recommended, saves tokens)",
|
|
1189
|
+
"value": false
|
|
1190
|
+
}
|
|
1191
|
+
],
|
|
1192
|
+
"current_value_path": "report_generation.auto_create",
|
|
1193
|
+
"required": true
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"question": "Warn user before report creation? (current: {{report_generation.warn_user}})",
|
|
1197
|
+
"header": "Warn User",
|
|
1198
|
+
"field": "report_generation.warn_user",
|
|
1199
|
+
"type": "select_single",
|
|
1200
|
+
"multiSelect": false,
|
|
1201
|
+
"options": [
|
|
1202
|
+
{
|
|
1203
|
+
"label": "Enabled",
|
|
1204
|
+
"description": "Ask user before generating reports (recommended)",
|
|
1205
|
+
"value": true
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"label": "Disabled",
|
|
1209
|
+
"description": "Generate reports without asking",
|
|
1210
|
+
"value": false
|
|
1211
|
+
}
|
|
1212
|
+
],
|
|
1213
|
+
"current_value_path": "report_generation.warn_user",
|
|
1214
|
+
"required": true
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"question": "Default user choice for reports? (current: {{report_generation.user_choice}})",
|
|
1218
|
+
"header": "User Choice",
|
|
1219
|
+
"field": "report_generation.user_choice",
|
|
1220
|
+
"type": "select_single",
|
|
1221
|
+
"multiSelect": false,
|
|
1222
|
+
"options": [
|
|
1223
|
+
{
|
|
1224
|
+
"label": "Minimal",
|
|
1225
|
+
"description": "Generate minimal reports (recommended)",
|
|
1226
|
+
"value": "Minimal"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"label": "Full",
|
|
1230
|
+
"description": "Generate full reports",
|
|
1231
|
+
"value": "Full"
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"label": "None",
|
|
1235
|
+
"description": "Skip report generation",
|
|
1236
|
+
"value": "None"
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"current_value_path": "report_generation.user_choice",
|
|
1240
|
+
"required": true
|
|
1241
|
+
}
|
|
1242
|
+
]
|
|
1243
|
+
}
|
|
1244
|
+
]
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"id": "tab_5_system",
|
|
1248
|
+
"label": "Tab 5: System Settings",
|
|
1249
|
+
"description": "Configure MoAI system settings (version check, cache). GitHub automation moved to Tab 3.",
|
|
1250
|
+
"priority": "OPTIONAL",
|
|
1251
|
+
"batches": [
|
|
1252
|
+
{
|
|
1253
|
+
"batch_id": "5.1",
|
|
1254
|
+
"label": "MoAI System Settings",
|
|
1255
|
+
"conditional": false,
|
|
1256
|
+
"questions": [
|
|
1257
|
+
{
|
|
1258
|
+
"question": "MoAI version check frequency? (current: {{moai.update_check_frequency}})",
|
|
1259
|
+
"header": "Update Check",
|
|
1260
|
+
"field": "moai.update_check_frequency",
|
|
1261
|
+
"type": "select_single",
|
|
1262
|
+
"multiSelect": false,
|
|
1263
|
+
"options": [
|
|
1264
|
+
{
|
|
1265
|
+
"label": "Daily",
|
|
1266
|
+
"description": "Check for updates daily (recommended)",
|
|
1267
|
+
"value": "daily"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"label": "Weekly",
|
|
1271
|
+
"description": "Check for updates weekly",
|
|
1272
|
+
"value": "weekly"
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
"label": "Never",
|
|
1276
|
+
"description": "Disable update checks",
|
|
1277
|
+
"value": "never"
|
|
1278
|
+
}
|
|
1279
|
+
],
|
|
1280
|
+
"current_value_path": "moai.update_check_frequency",
|
|
1281
|
+
"required": true
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"question": "Enable version checking? (current: {{moai.version_check.enabled}})",
|
|
1285
|
+
"header": "Version Check",
|
|
1286
|
+
"field": "moai.version_check.enabled",
|
|
1287
|
+
"type": "select_single",
|
|
1288
|
+
"multiSelect": false,
|
|
1289
|
+
"options": [
|
|
1290
|
+
{
|
|
1291
|
+
"label": "Enabled",
|
|
1292
|
+
"description": "Enable version checking (recommended)",
|
|
1293
|
+
"value": true
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"label": "Disabled",
|
|
1297
|
+
"description": "Disable version checking",
|
|
1298
|
+
"value": false
|
|
1299
|
+
}
|
|
1300
|
+
],
|
|
1301
|
+
"current_value_path": "moai.version_check.enabled",
|
|
1302
|
+
"required": true
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"question": "Version check cache TTL hours? (current: {{moai.version_check.cache_ttl_hours}})",
|
|
1306
|
+
"header": "Cache TTL",
|
|
1307
|
+
"field": "moai.version_check.cache_ttl_hours",
|
|
1308
|
+
"type": "number_input",
|
|
1309
|
+
"multiSelect": false,
|
|
1310
|
+
"options": [
|
|
1311
|
+
{
|
|
1312
|
+
"label": "24 hours",
|
|
1313
|
+
"description": "Cache version info for 24 hours (recommended)",
|
|
1314
|
+
"value": 24
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"label": "Other",
|
|
1318
|
+
"description": "Select Other to enter custom hours",
|
|
1319
|
+
"value": "{{prompt_user}}"
|
|
1320
|
+
}
|
|
1321
|
+
],
|
|
1322
|
+
"current_value_path": "moai.version_check.cache_ttl_hours",
|
|
1323
|
+
"required": true
|
|
1324
|
+
}
|
|
1325
|
+
]
|
|
1326
|
+
}
|
|
1327
|
+
]
|
|
1328
|
+
}
|
|
1329
|
+
],
|
|
1330
|
+
"navigation_flow": {
|
|
1331
|
+
"mode_specific_order": {
|
|
1332
|
+
"INITIALIZATION": [
|
|
1333
|
+
"tab_0_initialization"
|
|
1334
|
+
],
|
|
1335
|
+
"SETTINGS": [
|
|
1336
|
+
"tab_1_user_language",
|
|
1337
|
+
"tab_2_project_info",
|
|
1338
|
+
"tab_3_git_strategy",
|
|
1339
|
+
"tab_4_quality_reports",
|
|
1340
|
+
"tab_5_system"
|
|
1341
|
+
]
|
|
1342
|
+
},
|
|
1343
|
+
"completion_order": [
|
|
1344
|
+
"tab_0_initialization",
|
|
1345
|
+
"tab_1_user_language",
|
|
1346
|
+
"tab_2_project_info",
|
|
1347
|
+
"tab_3_git_strategy",
|
|
1348
|
+
"tab_4_quality_reports",
|
|
1349
|
+
"tab_5_system"
|
|
1350
|
+
],
|
|
1351
|
+
"validation_sequence": [
|
|
1352
|
+
{
|
|
1353
|
+
"checkpoint": "after_tab_0",
|
|
1354
|
+
"mode_condition": "INITIALIZATION",
|
|
1355
|
+
"rules": [
|
|
1356
|
+
{
|
|
1357
|
+
"name": "validate_project_name",
|
|
1358
|
+
"description": "Project name must be valid directory name",
|
|
1359
|
+
"field": "project.name",
|
|
1360
|
+
"validation": "pattern",
|
|
1361
|
+
"pattern": "^[a-z][a-z0-9-]*$"
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"name": "validate_project_type",
|
|
1365
|
+
"description": "Project type must be one of allowed values",
|
|
1366
|
+
"field": "project.type",
|
|
1367
|
+
"validation": "enum",
|
|
1368
|
+
"allowed_values": ["web_browser_app", "mobile_app", "cli_tool", "backend_api"]
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"name": "validate_project_description",
|
|
1372
|
+
"description": "Project description must not be empty",
|
|
1373
|
+
"field": "project.description",
|
|
1374
|
+
"validation": "required"
|
|
1375
|
+
}
|
|
1376
|
+
]
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
"checkpoint": "after_tab_1",
|
|
1380
|
+
"rules": [
|
|
1381
|
+
{
|
|
1382
|
+
"name": "validate_conversation_language",
|
|
1383
|
+
"description": "Verify conversation_language is valid (ko, en, ja, es, etc)",
|
|
1384
|
+
"field": "language.conversation_language",
|
|
1385
|
+
"validation": "enum",
|
|
1386
|
+
"allowed_values": ["ko", "en", "ja", "es"]
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"name": "validate_agent_prompt_language",
|
|
1390
|
+
"description": "Verify agent_prompt_language consistency",
|
|
1391
|
+
"field": "language.agent_prompt_language",
|
|
1392
|
+
"validation": "enum",
|
|
1393
|
+
"allowed_values": ["ko", "en", "ja", "es"]
|
|
1394
|
+
}
|
|
1395
|
+
]
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"checkpoint": "after_tab_3",
|
|
1399
|
+
"rules": [
|
|
1400
|
+
{
|
|
1401
|
+
"name": "validate_git_mode_consistency",
|
|
1402
|
+
"description": "Validate Personal/Team mode conflicts",
|
|
1403
|
+
"conditions": [
|
|
1404
|
+
{
|
|
1405
|
+
"if": "git_strategy.mode == 'personal'",
|
|
1406
|
+
"then": "git_strategy.personal.main_branch != 'develop'",
|
|
1407
|
+
"error": "Personal mode should not use 'develop' as main branch"
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"if": "git_strategy.mode == 'team'",
|
|
1411
|
+
"then": "git_strategy.team.branch_protection == true",
|
|
1412
|
+
"error": "Team mode should enable branch protection"
|
|
1413
|
+
}
|
|
1414
|
+
]
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"name": "validate_branch_naming",
|
|
1418
|
+
"description": "Check branch naming consistency",
|
|
1419
|
+
"validation": "pattern",
|
|
1420
|
+
"fields": [
|
|
1421
|
+
"git_strategy.personal.branch_prefix",
|
|
1422
|
+
"git_strategy.team.branch_prefix"
|
|
1423
|
+
]
|
|
1424
|
+
}
|
|
1425
|
+
]
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"checkpoint": "before_final_update",
|
|
1429
|
+
"rules": [
|
|
1430
|
+
{
|
|
1431
|
+
"name": "validate_all_required_fields",
|
|
1432
|
+
"description": "Check all required fields are set",
|
|
1433
|
+
"validation": "required",
|
|
1434
|
+
"check_all_tabs": true
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"name": "validate_field_types",
|
|
1438
|
+
"description": "Verify field value types (string, bool, number, array)",
|
|
1439
|
+
"validation": "type_check",
|
|
1440
|
+
"check_all_tabs": true
|
|
1441
|
+
}
|
|
1442
|
+
]
|
|
1443
|
+
}
|
|
1444
|
+
]
|
|
1445
|
+
},
|
|
1446
|
+
"field_mapping_rules": {
|
|
1447
|
+
"dot_notation": "Use dot notation for nested fields (e.g., user.name, language.conversation_language)",
|
|
1448
|
+
"template_variables": "Use {{field_path}} for current value interpolation",
|
|
1449
|
+
"special_values": {
|
|
1450
|
+
"{{current}}": "Keep current value from config.json",
|
|
1451
|
+
"{{prompt_user}}": "Prompt user for custom input via 'Other' option"
|
|
1452
|
+
},
|
|
1453
|
+
"auto_update_fields": "Some fields auto-update when related fields change (e.g., conversation_language_name when conversation_language changes)"
|
|
1454
|
+
},
|
|
1455
|
+
"implementation_notes": {
|
|
1456
|
+
"conditional_batches": "Batches in Tab 3 show/hide based on git_strategy.mode selection",
|
|
1457
|
+
"atomic_updates": "All updates delegated to UnifiedConfigManager from moai-workflow-project skill",
|
|
1458
|
+
"backup_rollback": "Manager handles backup/rollback internally, not in command",
|
|
1459
|
+
"validation_checkpoints": "Run validation after Tab 1, Tab 3, and before final update",
|
|
1460
|
+
"language_aware": "All user-facing questions use conversation_language, no emojis in AskUserQuestion"
|
|
1461
|
+
}
|
|
1462
|
+
}
|