moai-adk 0.4.5__py3-none-any.whl → 0.20.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of moai-adk might be problematic. Click here for more details.
- moai_adk/__init__.py +1 -1
- moai_adk/__main__.py +74 -1
- moai_adk/cli/commands/__init__.py +1 -1
- moai_adk/cli/commands/analyze.py +119 -0
- moai_adk/cli/commands/backup.py +25 -1
- moai_adk/cli/commands/doctor.py +31 -5
- moai_adk/cli/commands/improve_user_experience.py +307 -0
- moai_adk/cli/commands/init.py +111 -10
- moai_adk/cli/commands/status.py +33 -3
- moai_adk/cli/commands/update.py +921 -130
- moai_adk/cli/commands/validate_links.py +120 -0
- moai_adk/cli/prompts/init_prompts.py +22 -87
- moai_adk/core/analysis/__init__.py +9 -0
- moai_adk/core/analysis/session_analyzer.py +388 -0
- moai_adk/core/analysis/tag_chain_analyzer.py +344 -0
- moai_adk/core/analysis/tag_chain_repair.py +879 -0
- moai_adk/core/config/__init__.py +19 -0
- moai_adk/core/config/migration.py +235 -0
- moai_adk/core/git/__init__.py +1 -1
- moai_adk/core/git/branch.py +1 -1
- moai_adk/core/git/commit.py +1 -1
- moai_adk/core/git/manager.py +1 -1
- moai_adk/core/issue_creator.py +313 -0
- moai_adk/core/mcp/setup.py +56 -0
- moai_adk/core/mcp/setup_old.py +296 -0
- moai_adk/core/project/backup_utils.py +1 -1
- moai_adk/core/project/checker.py +2 -2
- moai_adk/core/project/detector.py +211 -12
- moai_adk/core/project/initializer.py +85 -15
- moai_adk/core/project/phase_executor.py +76 -13
- moai_adk/core/project/validator.py +13 -13
- moai_adk/core/quality/__init__.py +1 -1
- moai_adk/core/quality/trust_checker.py +1 -1
- moai_adk/core/quality/validators/__init__.py +1 -1
- moai_adk/core/quality/validators/base_validator.py +1 -1
- moai_adk/core/tags/__init__.py +86 -0
- moai_adk/core/tags/auto_corrector.py +693 -0
- moai_adk/core/tags/ci_validator.py +463 -0
- moai_adk/core/tags/cli.py +283 -0
- moai_adk/core/tags/generator.py +109 -0
- moai_adk/core/tags/inserter.py +99 -0
- moai_adk/core/tags/mapper.py +126 -0
- moai_adk/core/tags/parser.py +76 -0
- moai_adk/core/tags/policy_validator.py +580 -0
- moai_adk/core/tags/pre_commit_validator.py +421 -0
- moai_adk/core/tags/reporter.py +956 -0
- moai_adk/core/tags/rollback_manager.py +525 -0
- moai_adk/core/tags/tags.py +149 -0
- moai_adk/core/tags/validator.py +897 -0
- moai_adk/core/template/__init__.py +1 -1
- moai_adk/core/template/backup.py +1 -1
- moai_adk/core/template/merger.py +50 -1
- moai_adk/core/template/processor.py +119 -13
- moai_adk/core/template_engine.py +268 -0
- moai_adk/templates/.claude/agents/alfred/backend-expert.md +348 -0
- moai_adk/templates/.claude/agents/alfred/cc-manager.md +209 -944
- moai_adk/templates/.claude/agents/alfred/database-expert.md +352 -0
- moai_adk/templates/.claude/agents/alfred/debug-helper.md +34 -5
- moai_adk/templates/.claude/agents/alfred/devops-expert.md +464 -0
- moai_adk/templates/.claude/agents/alfred/doc-syncer.md +38 -8
- moai_adk/templates/.claude/agents/alfred/format-expert.md +469 -0
- moai_adk/templates/.claude/agents/alfred/frontend-expert.md +357 -0
- moai_adk/templates/.claude/agents/alfred/git-manager.md +128 -9
- moai_adk/templates/.claude/agents/alfred/implementation-planner.md +104 -6
- moai_adk/templates/.claude/agents/alfred/project-manager.md +88 -16
- moai_adk/templates/.claude/agents/alfred/quality-gate.md +36 -9
- moai_adk/templates/.claude/agents/alfred/security-expert.md +270 -0
- moai_adk/templates/.claude/agents/alfred/skill-factory.md +865 -0
- moai_adk/templates/.claude/agents/alfred/spec-builder.md +214 -43
- moai_adk/templates/.claude/agents/alfred/tag-agent.md +111 -9
- moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +309 -160
- moai_adk/templates/.claude/agents/alfred/trust-checker.md +36 -7
- moai_adk/templates/.claude/agents/alfred/ui-ux-expert.md +605 -0
- moai_adk/templates/.claude/commands/alfred/0-project.md +393 -966
- moai_adk/templates/.claude/commands/alfred/1-plan.md +651 -367
- moai_adk/templates/.claude/commands/alfred/2-run.md +388 -241
- moai_adk/templates/.claude/commands/alfred/3-sync.md +1921 -410
- moai_adk/templates/.claude/commands/alfred/9-feedback.md +153 -0
- moai_adk/templates/.claude/commands/alfred/release-new.md +3604 -0
- moai_adk/templates/.claude/hooks/alfred/core/project.py +484 -20
- moai_adk/templates/.claude/hooks/alfred/core/timeout.py +136 -0
- moai_adk/templates/.claude/hooks/alfred/core/ttl_cache.py +108 -0
- moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +198 -0
- moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +14 -6
- moai_adk/templates/.claude/hooks/alfred/post_tool__enable_streaming_ui.py +50 -0
- moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py +93 -0
- moai_adk/templates/.claude/hooks/alfred/post_tool__tag_auto_corrector.py +407 -0
- moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py +99 -0
- moai_adk/templates/.claude/hooks/alfred/pre_tool__realtime_tag_monitor.py +335 -0
- moai_adk/templates/.claude/hooks/alfred/pre_tool__tag_policy_validator.py +325 -0
- moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py +93 -0
- moai_adk/templates/.claude/hooks/alfred/session_start__auto_cleanup.py +580 -0
- moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py +298 -0
- moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py +170 -0
- moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/checkpoint.py +3 -3
- moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/context.py +5 -5
- moai_adk/templates/.claude/hooks/alfred/shared/core/project.py +749 -0
- moai_adk/templates/.claude/hooks/alfred/shared/core/tags.py +230 -0
- moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +198 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/__init__.py +21 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/daily_analysis.py +351 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py +154 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py +174 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/tool.py +87 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/user.py +61 -0
- moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py +111 -0
- moai_adk/templates/.claude/hooks/alfred/utils/__init__.py +1 -0
- moai_adk/templates/.claude/hooks/alfred/utils/hook_config.py +94 -0
- moai_adk/templates/.claude/hooks/alfred/utils/timeout.py +161 -0
- moai_adk/templates/.claude/output-styles/alfred/alfred-moai-adk-beginner.md +267 -0
- moai_adk/templates/.claude/output-styles/alfred/keating-personal-tutor.md +440 -0
- moai_adk/templates/.claude/output-styles/alfred/r2d2-agentic-coding.md +583 -0
- moai_adk/templates/.claude/settings.json +96 -14
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/SKILL.md +70 -0
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/examples.md +62 -0
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/reference.md +242 -0
- moai_adk/templates/.claude/skills/moai-alfred-ask-user-questions/SKILL.md +237 -0
- moai_adk/templates/.claude/skills/moai-alfred-ask-user-questions/examples.md +871 -0
- moai_adk/templates/.claude/skills/moai-alfred-ask-user-questions/reference.md +653 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/README.md +162 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/SKILL.md +227 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/examples.md +354 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/reference.md +158 -0
- moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/SKILL.md +179 -79
- moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/examples.md +117 -0
- moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/scripts/pre-review-check.sh +62 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/SKILL.md +132 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/examples.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/reference.md +444 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/SKILL.md +62 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/examples.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/reference.md +405 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/SKILL.md +51 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/examples.md +355 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/reference.md +239 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/SKILL.md +323 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/examples.md +286 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/reference.md +126 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/SKILL.md +229 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/reference.md +150 -0
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/SKILL.md +87 -73
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/README.md +42 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/SKILL.md +429 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/examples.md +520 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/reference.md +405 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/SKILL.md +89 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/examples.md +122 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/reference.md +369 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/SKILL.md +508 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/examples.md +481 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/reference.md +100 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/SKILL.md +77 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/examples.md +265 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/reference.md +539 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/SKILL.md +320 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/reference.md +84 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/README.md +137 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/SKILL.md +219 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/examples/validate-spec.sh +161 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/examples.md +541 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/reference.md +622 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/SKILL.md +19 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/reference.md +211 -0
- moai_adk/templates/.claude/skills/moai-alfred-workflow/SKILL.md +288 -0
- moai_adk/templates/.claude/skills/moai-cc-agents/SKILL.md +269 -0
- moai_adk/templates/.claude/skills/moai-cc-agents/templates/agent-template.md +32 -0
- moai_adk/templates/.claude/skills/moai-cc-claude-md/SKILL.md +298 -0
- moai_adk/templates/.claude/skills/moai-cc-claude-md/templates/CLAUDE-template.md +26 -0
- moai_adk/templates/.claude/skills/moai-cc-commands/SKILL.md +307 -0
- moai_adk/templates/.claude/skills/moai-cc-commands/templates/command-template.md +21 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/SKILL.md +252 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/pre-bash-check.sh +19 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/preserve-permissions.sh +19 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/validate-bash-command.py +24 -0
- moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/SKILL.md +199 -0
- moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/templates/settings-mcp-template.json +39 -0
- moai_adk/templates/.claude/skills/moai-cc-memory/SKILL.md +316 -0
- moai_adk/templates/.claude/skills/moai-cc-memory/templates/session-summary-template.md +18 -0
- moai_adk/templates/.claude/skills/moai-cc-settings/SKILL.md +263 -0
- moai_adk/templates/.claude/skills/moai-cc-settings/templates/settings-complete-template.json +30 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/CHECKLIST.md +482 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/EXAMPLES.md +303 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/INTERACTIVE-DISCOVERY.md +524 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/METADATA.md +477 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/PARALLEL-ANALYSIS-REPORT.md +429 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/PYTHON-VERSION-MATRIX.md +391 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/SKILL-FACTORY-WORKFLOW.md +431 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/SKILL-UPDATE-ADVISOR.md +577 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/SKILL.md +273 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/STEP-BY-STEP-GUIDE.md +466 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/STRUCTURE.md +583 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/WEB-RESEARCH.md +526 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/reference.md +608 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/scripts/generate-structure.sh +328 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/scripts/validate-skill.sh +312 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/SKILL_TEMPLATE.md +245 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/examples-template.md +285 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/reference-template.md +278 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/scripts-template.sh +303 -0
- moai_adk/templates/.claude/skills/moai-cc-skills/SKILL.md +291 -0
- moai_adk/templates/.claude/skills/moai-cc-skills/templates/SKILL-template.md +15 -0
- moai_adk/templates/.claude/skills/moai-change-logger/SKILL.md +563 -0
- moai_adk/templates/.claude/skills/moai-design-systems/SKILL.md +802 -0
- moai_adk/templates/.claude/skills/moai-design-systems/examples.md +1238 -0
- moai_adk/templates/.claude/skills/moai-design-systems/reference.md +673 -0
- moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +234 -43
- moai_adk/templates/.claude/skills/moai-domain-backend/examples.md +1633 -0
- moai_adk/templates/.claude/skills/moai-domain-backend/reference.md +660 -0
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/SKILL.md +97 -69
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-data-science/SKILL.md +97 -72
- moai_adk/templates/.claude/skills/moai-domain-data-science/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-data-science/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +97 -74
- moai_adk/templates/.claude/skills/moai-domain-database/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-database/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-devops/SKILL.md +98 -74
- moai_adk/templates/.claude/skills/moai-domain-devops/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-devops/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +102 -73
- moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-domain-ml/SKILL.md +97 -73
- moai_adk/templates/.claude/skills/moai-domain-ml/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-ml/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/SKILL.md +97 -67
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-security/SKILL.md +97 -79
- moai_adk/templates/.claude/skills/moai-domain-security/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-security/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-web-api/SKILL.md +97 -71
- moai_adk/templates/.claude/skills/moai-domain-web-api/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-web-api/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-essentials-debug/SKILL.md +265 -64
- moai_adk/templates/.claude/skills/moai-essentials-debug/examples.md +1064 -0
- moai_adk/templates/.claude/skills/moai-essentials-debug/reference.md +1047 -0
- moai_adk/templates/.claude/skills/moai-essentials-perf/SKILL.md +87 -78
- moai_adk/templates/.claude/skills/moai-essentials-perf/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-essentials-perf/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-essentials-refactor/SKILL.md +87 -70
- moai_adk/templates/.claude/skills/moai-essentials-refactor/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-essentials-refactor/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md +87 -86
- moai_adk/templates/.claude/skills/moai-essentials-review/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-essentials-review/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +80 -62
- moai_adk/templates/.claude/skills/moai-foundation-ears/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-ears/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md +207 -50
- moai_adk/templates/.claude/skills/moai-foundation-git/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-git/reference.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-langs/SKILL.md +90 -71
- moai_adk/templates/.claude/skills/moai-foundation-langs/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-langs/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-specs/SKILL.md +78 -58
- moai_adk/templates/.claude/skills/moai-foundation-specs/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-specs/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-tags/SKILL.md +78 -51
- moai_adk/templates/.claude/skills/moai-foundation-tags/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-tags/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-trust/.!11330!examples.md +0 -0
- moai_adk/templates/.claude/skills/moai-foundation-trust/SKILL.md +253 -32
- moai_adk/templates/.claude/skills/moai-foundation-trust/examples.md +0 -0
- moai_adk/templates/.claude/skills/moai-foundation-trust/reference.md +1099 -0
- moai_adk/templates/.claude/skills/moai-jit-docs-enhanced/SKILL.md +460 -0
- moai_adk/templates/.claude/skills/moai-lang-c/SKILL.md +98 -74
- moai_adk/templates/.claude/skills/moai-lang-c/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-c/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +98 -76
- moai_adk/templates/.claude/skills/moai-lang-cpp/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +2358 -70
- moai_adk/templates/.claude/skills/moai-lang-csharp/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-dart/SKILL.md +2962 -68
- moai_adk/templates/.claude/skills/moai-lang-dart/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-dart/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +1898 -70
- moai_adk/templates/.claude/skills/moai-lang-go/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-go/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +1465 -68
- moai_adk/templates/.claude/skills/moai-lang-java/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-java/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +2364 -66
- moai_adk/templates/.claude/skills/moai-lang-javascript/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-javascript/reference.md +32 -0
- moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +1630 -69
- moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +89 -61
- moai_adk/templates/.claude/skills/moai-lang-php/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-php/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +735 -66
- moai_adk/templates/.claude/skills/moai-lang-python/examples.md +624 -0
- moai_adk/templates/.claude/skills/moai-lang-python/reference.md +316 -0
- moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +97 -73
- moai_adk/templates/.claude/skills/moai-lang-r/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-r/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +98 -73
- moai_adk/templates/.claude/skills/moai-lang-ruby/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +1834 -70
- moai_adk/templates/.claude/skills/moai-lang-rust/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-rust/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +99 -74
- moai_adk/templates/.claude/skills/moai-lang-scala/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-shell/SKILL.md +97 -74
- moai_adk/templates/.claude/skills/moai-lang-shell/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-shell/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-sql/SKILL.md +98 -74
- moai_adk/templates/.claude/skills/moai-lang-sql/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-sql/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +1959 -69
- moai_adk/templates/.claude/skills/moai-lang-swift/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-template/SKILL.md +348 -0
- moai_adk/templates/.claude/skills/moai-lang-template/VARIABLES.md +98 -0
- moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +1230 -66
- moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md +34 -0
- moai_adk/templates/.claude/skills/moai-learning-optimizer/SKILL.md +575 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/README.md +50 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/SKILL.md +304 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/examples.md +417 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/reference.md +704 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/README.md +87 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/SKILL.md +552 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/examples.md +1109 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/reference.md +514 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/validate.py +106 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/README.md +11 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/SKILL.md +622 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/examples.md +20 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/reference.md +12 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/README.md +152 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/SKILL.md +285 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/examples.md +333 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/reference.md +386 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/README.md +49 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/SKILL.md +319 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/examples.md +58 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/reference.md +123 -0
- moai_adk/templates/.claude/skills/moai-session-info/SKILL.md +314 -0
- moai_adk/templates/.claude/skills/moai-streaming-ui/SKILL.md +552 -0
- moai_adk/templates/.claude/skills/moai-tag-policy-validator/SKILL.md +570 -0
- moai_adk/templates/.git-hooks/pre-commit +66 -0
- moai_adk/templates/.git-hooks/pre-push +255 -0
- moai_adk/templates/.github/workflows/c-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/cpp-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/csharp-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/dart-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/go-tag-validation.yml +130 -0
- moai_adk/templates/.github/workflows/java-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/javascript-tag-validation.yml +135 -0
- moai_adk/templates/.github/workflows/kotlin-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/moai-gitflow.yml +166 -3
- moai_adk/templates/.github/workflows/moai-release-create.yml +100 -0
- moai_adk/templates/.github/workflows/moai-release-pipeline.yml +188 -0
- moai_adk/templates/.github/workflows/php-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/python-tag-validation.yml +118 -0
- moai_adk/templates/.github/workflows/release.yml +118 -0
- moai_adk/templates/.github/workflows/ruby-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/rust-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/shell-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/spec-issue-sync.yml +338 -0
- moai_adk/templates/.github/workflows/swift-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/tag-report.yml +269 -0
- moai_adk/templates/.github/workflows/tag-validation.yml +186 -0
- moai_adk/templates/.github/workflows/typescript-tag-validation.yml +154 -0
- moai_adk/templates/.mcp.json +31 -0
- moai_adk/templates/.moai/config.json +80 -7
- moai_adk/templates/CLAUDE.md +562 -546
- moai_adk/utils/banner.py +5 -5
- moai_adk/utils/common.py +294 -0
- moai_adk/utils/link_validator.py +235 -0
- moai_adk/utils/logger.py +8 -8
- moai_adk/utils/user_experience.py +451 -0
- moai_adk-0.20.1.dist-info/METADATA +233 -0
- moai_adk-0.20.1.dist-info/RECORD +404 -0
- moai_adk/templates/.claude/hooks/alfred/README.md +0 -230
- moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +0 -156
- moai_adk/templates/.claude/hooks/alfred/core/__init__.py +0 -85
- moai_adk/templates/.claude/hooks/alfred/handlers/notification.py +0 -25
- moai_adk/templates/.claude/hooks/alfred/handlers/session.py +0 -92
- moai_adk/templates/.claude/hooks/alfred/handlers/tool.py +0 -70
- moai_adk/templates/.claude/hooks/alfred/handlers/user.py +0 -41
- moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +0 -636
- moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +0 -692
- moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +0 -470
- moai_adk/templates/.claude/skills/moai-alfred-debugger-pro/SKILL.md +0 -103
- moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/SKILL.md +0 -103
- moai_adk/templates/.claude/skills/moai-alfred-git-workflow/SKILL.md +0 -95
- moai_adk/templates/.claude/skills/moai-alfred-performance-optimizer/SKILL.md +0 -105
- moai_adk/templates/.claude/skills/moai-alfred-refactoring-coach/SKILL.md +0 -97
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/SKILL.md +0 -97
- moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/SKILL.md +0 -90
- moai_adk/templates/.claude/skills/moai-alfred-trust-validation/SKILL.md +0 -99
- moai_adk/templates/.claude/skills/moai-alfred-tui-survey/SKILL.md +0 -87
- moai_adk/templates/.claude/skills/moai-alfred-tui-survey/examples.md +0 -62
- moai_adk/templates/.claude/skills/moai-claude-code/SKILL.md +0 -94
- moai_adk/templates/.claude/skills/moai-claude-code/examples.md +0 -513
- moai_adk/templates/.claude/skills/moai-claude-code/reference.md +0 -433
- moai_adk/templates/.claude/skills/moai-claude-code/templates/agent-full.md +0 -332
- moai_adk/templates/.claude/skills/moai-claude-code/templates/command-full.md +0 -384
- moai_adk/templates/.claude/skills/moai-claude-code/templates/plugin-full.json +0 -363
- moai_adk/templates/.claude/skills/moai-claude-code/templates/settings-full.json +0 -595
- moai_adk/templates/.claude/skills/moai-claude-code/templates/skill-full.md +0 -496
- moai_adk/templates/.claude/skills/moai-lang-clojure/SKILL.md +0 -100
- moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md +0 -99
- moai_adk/templates/.claude/skills/moai-lang-haskell/SKILL.md +0 -100
- moai_adk/templates/.claude/skills/moai-lang-julia/SKILL.md +0 -98
- moai_adk/templates/.claude/skills/moai-lang-lua/SKILL.md +0 -98
- moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +0 -69
- moai_adk/templates/.moai/memory/development-guide.md +0 -344
- moai_adk/templates/.moai/memory/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.4.5.dist-info/METADATA +0 -369
- moai_adk-0.4.5.dist-info/RECORD +0 -152
- {moai_adk-0.4.5.dist-info → moai_adk-0.20.1.dist-info}/WHEEL +0 -0
- {moai_adk-0.4.5.dist-info → moai_adk-0.20.1.dist-info}/entry_points.txt +0 -0
- {moai_adk-0.4.5.dist-info → moai_adk-0.20.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
|
|
3
|
-
name: moai-alfred-git-workflow
|
|
4
|
-
description: Automates Git operations with MoAI-ADK conventions (feature branch, locale-based TDD commits, Draft PR, PR Ready transition). Use when orchestrating GitFlow checkpoints, commits, or PR transitions.
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Edit
|
|
9
|
-
- Bash
|
|
10
|
-
- TodoWrite
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# Alfred Git Workflow
|
|
14
|
-
|
|
15
|
-
## Skill Metadata
|
|
16
|
-
| Field | Value |
|
|
17
|
-
| ----- | ----- |
|
|
18
|
-
| Allowed tools | Read (read_file), Write (write_file), Edit (edit_file), Bash (terminal), TodoWrite (todo_write) |
|
|
19
|
-
| Auto-load | /alfred:2-run Git automation |
|
|
20
|
-
| Trigger cues | Branch provisioning, commit batching, draft PR preparation within Alfred flows. |
|
|
21
|
-
|
|
22
|
-
## What it does
|
|
23
|
-
|
|
24
|
-
Automates Git operations following MoAI-ADK conventions: branch creation, locale-based TDD commits, Draft PR creation, and PR Ready transition.
|
|
25
|
-
|
|
26
|
-
## When to use
|
|
27
|
-
|
|
28
|
-
- Activates when Alfred must manage branches, commits, or PR transitions.
|
|
29
|
-
- “Create branch”, “Create PR”, “Create commit”
|
|
30
|
-
- Automatically invoked by `/alfred:1-plan`, `/alfred:2-run`, `/alfred:3-sync`
|
|
31
|
-
- Git workflow automation needed
|
|
32
|
-
|
|
33
|
-
## How it works
|
|
34
|
-
|
|
35
|
-
**1. Branch Creation**:
|
|
36
|
-
```bash
|
|
37
|
-
git checkout develop
|
|
38
|
-
git checkout -b feature/SPEC-AUTH-001
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
**2. Locale-based TDD Commits**:
|
|
42
|
-
- **Korean (ko)**: 🔴 RED: [Test Description]
|
|
43
|
-
- **English (en)**: 🔴 RED: [Test description]
|
|
44
|
-
- **Japanese (ja)**: 🔴 RED: [テスト説明]
|
|
45
|
-
- **Chinese (zh)**: 🔴 RED: [测试说明]
|
|
46
|
-
|
|
47
|
-
Configured via `.moai/config.json`:
|
|
48
|
-
```json
|
|
49
|
-
{"project": {"locale": "ko"}}
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
**3. Draft PR Creation**:
|
|
53
|
-
Creates Draft PR with SPEC reference and test checklist.
|
|
54
|
-
|
|
55
|
-
**4. PR Ready Transition** (via `/alfred:3-sync`):
|
|
56
|
-
- Updates PR from Draft → Ready
|
|
57
|
-
- Adds quality gate checklist
|
|
58
|
-
- Verifies TRUST 5-principles
|
|
59
|
-
|
|
60
|
-
## Best Practices
|
|
61
|
-
- The text shown to the user is written using TUI/report expressions.
|
|
62
|
-
- When running the tool, a summary of commands and results are recorded.
|
|
63
|
-
|
|
64
|
-
## Examples
|
|
65
|
-
```markdown
|
|
66
|
-
- Call this skill inside the /alfred command to generate a report.
|
|
67
|
-
- Add summary to Completion Report.
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
## Inputs
|
|
71
|
-
- MoAI-ADK project context (`.moai/project/`, `.claude/` templates, etc.).
|
|
72
|
-
- Parameters passed from user commands or higher commands.
|
|
73
|
-
|
|
74
|
-
## Outputs
|
|
75
|
-
- Reports, checklists or recommendations for your Alfred workflow.
|
|
76
|
-
- Structured data for subsequent subagent calls.
|
|
77
|
-
|
|
78
|
-
## Failure Modes
|
|
79
|
-
- When required input documents are missing or permissions are limited.
|
|
80
|
-
- When disruptive changes are required without user approval.
|
|
81
|
-
|
|
82
|
-
## Dependencies
|
|
83
|
-
- Cooperation with higher-level agents such as cc-manager and project-manager is required.
|
|
84
|
-
|
|
85
|
-
## References
|
|
86
|
-
- Vincent Driessen. "A successful Git branching model." https://nvie.com/posts/a-successful-git-branching-model/ (accessed 2025-03-29).
|
|
87
|
-
- GitHub Docs. "GitHub Flow." https://docs.github.com/en/get-started/using-github/github-flow (accessed 2025-03-29).
|
|
88
|
-
|
|
89
|
-
## Changelog
|
|
90
|
-
- 2025-03-29: Added input/output/failure response to Alfred-specific skills.
|
|
91
|
-
|
|
92
|
-
## Works well with
|
|
93
|
-
|
|
94
|
-
- alfred-ears-authoring (SPEC ID-based branch naming)
|
|
95
|
-
- alfred-trust-validation (PR Ready quality check)
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
|
|
3
|
-
name: moai-alfred-performance-optimizer
|
|
4
|
-
description: Performance analysis and optimization suggestions with profiling, bottleneck detection, and language-specific optimizations. Use when planning performance improvements or regressions checks.
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Edit
|
|
9
|
-
- Bash
|
|
10
|
-
- TodoWrite
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# Alfred Performance Optimizer
|
|
14
|
-
|
|
15
|
-
## Skill Metadata
|
|
16
|
-
| Field | Value |
|
|
17
|
-
| ----- | ----- |
|
|
18
|
-
| Allowed tools | Read (read_file), Write (write_file), Edit (edit_file), Bash (terminal), TodoWrite (todo_write) |
|
|
19
|
-
| Auto-load | /alfred:2-run performance lane |
|
|
20
|
-
| Trigger cues | Performance regressions surfaced in Alfred workflows, profiling or tuning requests. |
|
|
21
|
-
|
|
22
|
-
## What it does
|
|
23
|
-
|
|
24
|
-
Performance analysis and optimization with profiling tools, bottleneck detection, and language-specific optimization techniques.
|
|
25
|
-
|
|
26
|
-
## When to use
|
|
27
|
-
|
|
28
|
-
- Activates when Alfred must diagnose or remediate performance bottlenecks.
|
|
29
|
-
- “Improve performance”, “Find slow parts”, “How to optimize?”
|
|
30
|
-
- “Profiling”, “Bottleneck”, “Memory leak”
|
|
31
|
-
|
|
32
|
-
## How it works
|
|
33
|
-
|
|
34
|
-
**Profiling Tools**:
|
|
35
|
-
- **Python**: cProfile, memory_profiler
|
|
36
|
-
- **TypeScript**: Chrome DevTools, clinic.js
|
|
37
|
-
- **Java**: JProfiler, VisualVM
|
|
38
|
-
- **Go**: pprof
|
|
39
|
-
- **Rust**: flamegraph, criterion
|
|
40
|
-
|
|
41
|
-
**Common Performance Issues**:
|
|
42
|
-
- **N+1 Query Problem**: Use eager loading/joins
|
|
43
|
-
- **Inefficient Loop**: O(n²) → O(n) with Set/Map
|
|
44
|
-
- **Memory Leak**: Remove event listeners, close connections
|
|
45
|
-
|
|
46
|
-
**Optimization Checklist**:
|
|
47
|
-
- [ ] Current performance benchmark
|
|
48
|
-
- [ ] Bottleneck identification
|
|
49
|
-
- [ ] Profiling data collected
|
|
50
|
-
- [ ] Algorithm complexity improved (O(n²) → O(n))
|
|
51
|
-
- [ ] Unnecessary operations removed
|
|
52
|
-
- [ ] Caching applied
|
|
53
|
-
- [ ] Async processing introduced
|
|
54
|
-
- [ ] Post-optimization benchmark
|
|
55
|
-
- [ ] Side effects checked
|
|
56
|
-
|
|
57
|
-
**Language-specific Optimizations**:
|
|
58
|
-
- **Python**: List comprehension, generators, @lru_cache
|
|
59
|
-
- **TypeScript**: Memoization, lazy loading, code splitting
|
|
60
|
-
- **Java**: Stream API, parallel processing
|
|
61
|
-
- **Go**: Goroutines, buffered channels
|
|
62
|
-
- **Rust**: Zero-cost abstractions, borrowing
|
|
63
|
-
|
|
64
|
-
**Performance Targets**:
|
|
65
|
-
- API response time: <200ms (P95)
|
|
66
|
-
- Page load time: <2s
|
|
67
|
-
- Memory usage: <512MB
|
|
68
|
-
- CPU usage: <70%
|
|
69
|
-
|
|
70
|
-
## Best Practices
|
|
71
|
-
- The text shown to the user is written using TUI/report expressions.
|
|
72
|
-
- When running the tool, a summary of commands and results are recorded.
|
|
73
|
-
|
|
74
|
-
## Examples
|
|
75
|
-
```markdown
|
|
76
|
-
- Call this skill inside the /alfred command to generate a report.
|
|
77
|
-
- Add summary to Completion Report.
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
## Inputs
|
|
81
|
-
- MoAI-ADK project context (`.moai/project/`, `.claude/` templates, etc.).
|
|
82
|
-
- Parameters passed from user commands or higher commands.
|
|
83
|
-
|
|
84
|
-
## Outputs
|
|
85
|
-
- Reports, checklists or recommendations for your Alfred workflow.
|
|
86
|
-
- Structured data for subsequent subagent calls.
|
|
87
|
-
|
|
88
|
-
## Failure Modes
|
|
89
|
-
- When required input documents are missing or permissions are limited.
|
|
90
|
-
- When disruptive changes are required without user approval.
|
|
91
|
-
|
|
92
|
-
## Dependencies
|
|
93
|
-
- Cooperation with higher-level agents such as cc-manager and project-manager is required.
|
|
94
|
-
|
|
95
|
-
## References
|
|
96
|
-
- Google SRE. "The Four Golden Signals." https://sre.google/sre-book/monitoring-distributed-systems/ (accessed 2025-03-29).
|
|
97
|
-
- Dynatrace. "Application Performance Monitoring Best Practices." https://www.dynatrace.com/resources/ebooks/ (accessed 2025-03-29).
|
|
98
|
-
|
|
99
|
-
## Changelog
|
|
100
|
-
- 2025-03-29: Added input/output/failure response to Alfred-specific skills.
|
|
101
|
-
|
|
102
|
-
## Works well with
|
|
103
|
-
|
|
104
|
-
- alfred-code-reviewer
|
|
105
|
-
- alfred-debugger-pro
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
|
|
3
|
-
name: moai-alfred-refactoring-coach
|
|
4
|
-
description: Refactoring guidance with design patterns, code smells detection, and step-by-step improvement plans. Use when outlining refactor steps that preserve functionality.
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Edit
|
|
9
|
-
- Bash
|
|
10
|
-
- TodoWrite
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# Alfred Refactoring Coach
|
|
14
|
-
|
|
15
|
-
## Skill Metadata
|
|
16
|
-
| Field | Value |
|
|
17
|
-
| ----- | ----- |
|
|
18
|
-
| Allowed tools | Read (read_file), Write (write_file), Edit (edit_file), Bash (terminal), TodoWrite (todo_write) |
|
|
19
|
-
| Auto-load | /alfred:2-run refactor lane |
|
|
20
|
-
| Trigger cues | Refactoring retros, duplication cleanup, code health follow-ups inside Alfred. |
|
|
21
|
-
|
|
22
|
-
## What it does
|
|
23
|
-
|
|
24
|
-
Refactoring guidance with design pattern recommendations, code smell detection, and step-by-step improvement plans.
|
|
25
|
-
|
|
26
|
-
## When to use
|
|
27
|
-
|
|
28
|
-
- Activates when Alfred is asked to plan or stage refactoring work.
|
|
29
|
-
- “Help with refactoring”, “How can I improve this code?”, “Apply design patterns”
|
|
30
|
-
- “Code organization”, “Remove duplication”, “Separate functions”
|
|
31
|
-
|
|
32
|
-
## How it works
|
|
33
|
-
|
|
34
|
-
**Refactoring Techniques**:
|
|
35
|
-
- **Extract Method**: Separate long methods
|
|
36
|
-
- **Replace Conditional with Polymorphism**: Remove conditional statements
|
|
37
|
-
- **Introduce Parameter Object**: Group parameters
|
|
38
|
-
- **Extract Class**: Massive class separation
|
|
39
|
-
|
|
40
|
-
**Design Pattern Recommendations**:
|
|
41
|
-
- Complex object creation → **Builder Pattern**
|
|
42
|
-
- Type-specific behavior → **Strategy Pattern**
|
|
43
|
-
- Global state → **Singleton Pattern**
|
|
44
|
-
- Incompatible interfaces → **Adapter Pattern**
|
|
45
|
-
- Delayed object creation → **Factory Pattern**
|
|
46
|
-
|
|
47
|
-
**3-Strike Rule**:
|
|
48
|
-
```
|
|
49
|
-
1st occurrence: Just implement
|
|
50
|
-
2nd occurrence: Notice similarity (leave as-is)
|
|
51
|
-
3rd occurrence: Pattern confirmed → Refactor! 🔧
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
**Refactoring Checklist**:
|
|
55
|
-
- [ ] All tests passing before refactoring
|
|
56
|
-
- [ ] Code smells identified
|
|
57
|
-
- [ ] Refactoring goal clear
|
|
58
|
-
- [ ] Change one thing at a time
|
|
59
|
-
- [ ] Run tests after each change
|
|
60
|
-
- [ ] Commit frequently
|
|
61
|
-
|
|
62
|
-
## Best Practices
|
|
63
|
-
- The text shown to the user is written using TUI/report expressions.
|
|
64
|
-
- When running the tool, a summary of commands and results are recorded.
|
|
65
|
-
|
|
66
|
-
## Examples
|
|
67
|
-
```markdown
|
|
68
|
-
- Call this skill inside the /alfred command to generate a report.
|
|
69
|
-
- Add summary to Completion Report.
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
## Inputs
|
|
73
|
-
- MoAI-ADK project context (`.moai/project/`, `.claude/` templates, etc.).
|
|
74
|
-
- Parameters passed from user commands or higher commands.
|
|
75
|
-
|
|
76
|
-
## Outputs
|
|
77
|
-
- Reports, checklists or recommendations for your Alfred workflow.
|
|
78
|
-
- Structured data for subsequent subagent calls.
|
|
79
|
-
|
|
80
|
-
## Failure Modes
|
|
81
|
-
- When required input documents are missing or permissions are limited.
|
|
82
|
-
- When disruptive changes are required without user approval.
|
|
83
|
-
|
|
84
|
-
## Dependencies
|
|
85
|
-
- Cooperation with higher-level agents such as cc-manager and project-manager is required.
|
|
86
|
-
|
|
87
|
-
## References
|
|
88
|
-
- Fowler, Martin. "Refactoring: Improving the Design of Existing Code." Addison-Wesley, 2018.
|
|
89
|
-
- IEEE Software. "Managing Technical Debt." IEEE Software, 2021.
|
|
90
|
-
|
|
91
|
-
## Changelog
|
|
92
|
-
- 2025-03-29: Added input/output/failure response to Alfred-specific skills.
|
|
93
|
-
|
|
94
|
-
## Works well with
|
|
95
|
-
|
|
96
|
-
- alfred-code-reviewer
|
|
97
|
-
- alfred-trust-validation
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
|
|
3
|
-
name: moai-alfred-spec-metadata-validation
|
|
4
|
-
description: Validates SPEC YAML frontmatter (7 required fields) and HISTORY section compliance. Use when validating SPEC metadata for consistency.
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Edit
|
|
9
|
-
- Bash
|
|
10
|
-
- TodoWrite
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# Alfred SPEC Metadata Validation
|
|
14
|
-
|
|
15
|
-
## Skill Metadata
|
|
16
|
-
| Field | Value |
|
|
17
|
-
| ----- | ----- |
|
|
18
|
-
| Allowed tools | Read (read_file), Write (write_file), Edit (edit_file), Bash (terminal), TodoWrite (todo_write) |
|
|
19
|
-
| Auto-load | /alfred:1-plan spec validation |
|
|
20
|
-
| Trigger cues | SPEC frontmatter checks, history table enforcement, metadata guardrails. |
|
|
21
|
-
|
|
22
|
-
## What it does
|
|
23
|
-
|
|
24
|
-
Validates SPEC document structure including YAML frontmatter (7 required fields) and HISTORY section compliance.
|
|
25
|
-
|
|
26
|
-
## When to use
|
|
27
|
-
|
|
28
|
-
- Activates when Alfred validates SPEC templates or enforces metadata standards.
|
|
29
|
-
- "SPEC verification", "Metadata check", "SPEC structure check"
|
|
30
|
-
- Automatically invoked by `/alfred:1-plan`
|
|
31
|
-
- Before creating SPEC document
|
|
32
|
-
|
|
33
|
-
## How it works
|
|
34
|
-
|
|
35
|
-
**YAML Frontmatter Validation (7 required fields)**:
|
|
36
|
-
- `id`: SPEC ID (e.g., AUTH-001)
|
|
37
|
-
- `version`: Semantic Version (e.g., 0.0.1)
|
|
38
|
-
- `status`: draft|active|completed|deprecated
|
|
39
|
-
- `created`: YYYY-MM-DD format
|
|
40
|
-
- `updated`: YYYY-MM-DD format
|
|
41
|
-
- `author`: @{GitHub ID} format
|
|
42
|
-
- `priority`: low|medium|high|critical
|
|
43
|
-
|
|
44
|
-
**HISTORY Section Validation**:
|
|
45
|
-
- Checks existence of HISTORY section
|
|
46
|
-
- Verifies version history (INITIAL/ADDED/CHANGED/FIXED tags)
|
|
47
|
-
- Validates author and date consistency
|
|
48
|
-
|
|
49
|
-
**Format Validation**:
|
|
50
|
-
```bash
|
|
51
|
-
# Check required fields
|
|
52
|
-
rg "^(id|version|status|created|updated|author|priority):" .moai/specs/SPEC-*/spec.md
|
|
53
|
-
|
|
54
|
-
# Verify HISTORY section
|
|
55
|
-
rg "^## HISTORY" .moai/specs/SPEC-*/spec.md
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
## Best Practices
|
|
59
|
-
- The text shown to the user is written using TUI/report expressions.
|
|
60
|
-
- When running the tool, a summary of commands and results are recorded.
|
|
61
|
-
|
|
62
|
-
## Examples
|
|
63
|
-
```markdown
|
|
64
|
-
- Call this skill inside the /alfred command to generate a report.
|
|
65
|
-
- Add summary to Completion Report.
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
## Inputs
|
|
69
|
-
- MoAI-ADK project context (`.moai/project/`, `.claude/` templates, etc.).
|
|
70
|
-
- Parameters passed from user commands or higher commands.
|
|
71
|
-
|
|
72
|
-
## Outputs
|
|
73
|
-
- Reports, checklists or recommendations for your Alfred workflow.
|
|
74
|
-
- Structured data for subsequent subagent calls.
|
|
75
|
-
|
|
76
|
-
## Failure Modes
|
|
77
|
-
- When required input documents are missing or permissions are limited.
|
|
78
|
-
- When disruptive changes are required without user approval.
|
|
79
|
-
|
|
80
|
-
## Dependencies
|
|
81
|
-
- Cooperation with higher-level agents such as cc-manager and project-manager is required.
|
|
82
|
-
|
|
83
|
-
## References
|
|
84
|
-
- IEEE. "Software Requirements Specification Standard." IEEE 830-1998.
|
|
85
|
-
- NASA. "Systems Engineering Handbook." https://www.nasa.gov/seh/ (accessed 2025-03-29).
|
|
86
|
-
|
|
87
|
-
## Changelog
|
|
88
|
-
- 2025-03-29: Added input/output/failure response to Alfred-specific skills.
|
|
89
|
-
|
|
90
|
-
## Works well with
|
|
91
|
-
|
|
92
|
-
- alfred-ears-authoring (SPEC writing guide)
|
|
93
|
-
- alfred-tag-scanning (SPEC ID duplication check)
|
|
94
|
-
|
|
95
|
-
## Reference
|
|
96
|
-
|
|
97
|
-
SSOT (Single Source of Truth): `.moai/memory/spec-metadata.md`
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
|
|
3
|
-
name: moai-alfred-tag-scanning
|
|
4
|
-
description: Scans all @TAG markers directly from code and generates TAG inventory (CODE-FIRST principle - no intermediate cache). Use when rebuilding the TAG inventory from live code.
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Edit
|
|
9
|
-
- Bash
|
|
10
|
-
- TodoWrite
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# Alfred TAG Scanning
|
|
14
|
-
|
|
15
|
-
## Skill Metadata
|
|
16
|
-
| Field | Value |
|
|
17
|
-
| ----- | ----- |
|
|
18
|
-
| Allowed tools | Read (read_file), Write (write_file), Edit (edit_file), Bash (terminal), TodoWrite (todo_write) |
|
|
19
|
-
| Auto-load | /alfred:3-sync traceability gate |
|
|
20
|
-
| Trigger cues | Traceability scans, orphan TAG cleanup, TAG chain verification in Alfred. |
|
|
21
|
-
|
|
22
|
-
## What it does
|
|
23
|
-
|
|
24
|
-
Scans all @TAG markers (SPEC/TEST/CODE/DOC) directly from codebase and generates TAG inventory without intermediate caching (CODE-FIRST principle).
|
|
25
|
-
|
|
26
|
-
## When to use
|
|
27
|
-
|
|
28
|
-
- Activates when Alfred needs TAG inventories or chain verification.
|
|
29
|
-
- "TAG Scan", "TAG List", "TAG Inventory"
|
|
30
|
-
- Automatically invoked by `/alfred:3-sync`
|
|
31
|
-
- “Find orphan TAG”, “Check TAG chain”
|
|
32
|
-
|
|
33
|
-
## How it works
|
|
34
|
-
|
|
35
|
-
**CODE-FIRST Scanning**:
|
|
36
|
-
```bash
|
|
37
|
-
# Direct code scan without intermediate cache
|
|
38
|
-
rg '@(SPEC|TEST|CODE|DOC):' -n .moai/specs/ tests/ src/ docs/
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
**TAG Inventory Generation**:
|
|
42
|
-
- Lists all TAGs with file locations
|
|
43
|
-
- Detects orphaned TAGs (no corresponding SPEC/TEST/CODE)
|
|
44
|
-
- Identifies broken links in TAG chain
|
|
45
|
-
- Reports duplicate IDs
|
|
46
|
-
|
|
47
|
-
**TAG Chain Verification**:
|
|
48
|
-
- @SPEC → @TEST → @CODE → @DOC connection check
|
|
49
|
-
- Ensures traceability across all artifacts
|
|
50
|
-
|
|
51
|
-
## Best Practices
|
|
52
|
-
- The text shown to the user is written using TUI/report expressions.
|
|
53
|
-
- When running the tool, a summary of commands and results are recorded.
|
|
54
|
-
|
|
55
|
-
## Examples
|
|
56
|
-
```markdown
|
|
57
|
-
- Call this skill inside the /alfred command to generate a report.
|
|
58
|
-
- Add summary to Completion Report.
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
## Inputs
|
|
62
|
-
- MoAI-ADK project context (`.moai/project/`, `.claude/` templates, etc.).
|
|
63
|
-
- Parameters passed from user commands or higher commands.
|
|
64
|
-
|
|
65
|
-
## Outputs
|
|
66
|
-
- Reports, checklists or recommendations for your Alfred workflow.
|
|
67
|
-
- Structured data for subsequent subagent calls.
|
|
68
|
-
|
|
69
|
-
## Failure Modes
|
|
70
|
-
- When required input documents are missing or permissions are limited.
|
|
71
|
-
- When disruptive changes are required without user approval.
|
|
72
|
-
|
|
73
|
-
## Dependencies
|
|
74
|
-
- Cooperation with higher-level agents such as cc-manager and project-manager is required.
|
|
75
|
-
|
|
76
|
-
## References
|
|
77
|
-
- BurntSushi. "ripgrep User Guide." https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md (accessed 2025-03-29).
|
|
78
|
-
- ReqView. "Requirements Traceability Matrix Guide." https://www.reqview.com/doc/requirements-traceability-matrix/ (accessed 2025-03-29).
|
|
79
|
-
|
|
80
|
-
## Changelog
|
|
81
|
-
- 2025-03-29: Added input/output/failure response to Alfred-specific skills.
|
|
82
|
-
|
|
83
|
-
## Works well with
|
|
84
|
-
|
|
85
|
-
- alfred-trust-validation (TAG traceability verification)
|
|
86
|
-
- alfred-spec-metadata-validation (SPEC ID validation)
|
|
87
|
-
|
|
88
|
-
## Files included
|
|
89
|
-
|
|
90
|
-
- templates/tag-inventory-template.md
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
|
|
3
|
-
name: moai-alfred-trust-validation
|
|
4
|
-
description: Validates TRUST 5-principles compliance (Test coverage 85%+, Code constraints, Architecture unity, Security, TAG trackability). Use when enforcing TRUST checkpoints before progression.
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Edit
|
|
9
|
-
- Bash
|
|
10
|
-
- TodoWrite
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# Alfred TRUST Validation
|
|
14
|
-
|
|
15
|
-
## Skill Metadata
|
|
16
|
-
| Field | Value |
|
|
17
|
-
| ----- | ----- |
|
|
18
|
-
| Allowed tools | Read (read_file), Write (write_file), Edit (edit_file), Bash (terminal), TodoWrite (todo_write) |
|
|
19
|
-
| Auto-load | /alfred:3-sync quality gate |
|
|
20
|
-
| Trigger cues | TRUST checklist enforcement, release readiness scoring, risk gating. |
|
|
21
|
-
|
|
22
|
-
## What it does
|
|
23
|
-
|
|
24
|
-
Validates MoAI-ADK's TRUST 5-principles compliance to ensure code quality, testability, security, and traceability.
|
|
25
|
-
|
|
26
|
-
## When to use
|
|
27
|
-
|
|
28
|
-
- Activates when Alfred evaluates TRUST compliance before handoff.
|
|
29
|
-
- "Check the TRUST principle", "Quality verification", "Check code quality"
|
|
30
|
-
- Automatically invoked by `/alfred:3-sync`
|
|
31
|
-
- Before merging PR or releasing
|
|
32
|
-
|
|
33
|
-
## How it works
|
|
34
|
-
|
|
35
|
-
**T - Test First**:
|
|
36
|
-
- Checks test coverage ≥85% (pytest, vitest, go test, cargo test, etc.)
|
|
37
|
-
- Verifies TDD cycle compliance (RED → GREEN → REFACTOR)
|
|
38
|
-
|
|
39
|
-
**R - Readable**:
|
|
40
|
-
- File ≤300 LOC
|
|
41
|
-
- Function ≤50 LOC
|
|
42
|
-
- Parameters ≤5
|
|
43
|
-
- Cyclomatic complexity ≤10
|
|
44
|
-
|
|
45
|
-
**U - Unified**:
|
|
46
|
-
- SPEC-driven architecture consistency
|
|
47
|
-
- Clear module boundaries
|
|
48
|
-
- Language-specific standard structures
|
|
49
|
-
|
|
50
|
-
**S - Secured**:
|
|
51
|
-
- Input validation implementation
|
|
52
|
-
- No hardcoded secrets
|
|
53
|
-
- Access control applied
|
|
54
|
-
|
|
55
|
-
**T - Trackable**:
|
|
56
|
-
- TAG chain integrity (@SPEC → @TEST → @CODE → @DOC)
|
|
57
|
-
- No orphaned TAGs
|
|
58
|
-
- No duplicate SPEC IDs
|
|
59
|
-
|
|
60
|
-
## Best Practices
|
|
61
|
-
- The text shown to the user is written using TUI/report expressions.
|
|
62
|
-
- When running the tool, a summary of commands and results are recorded.
|
|
63
|
-
|
|
64
|
-
## Examples
|
|
65
|
-
```markdown
|
|
66
|
-
- Call this skill inside the /alfred command to generate a report.
|
|
67
|
-
- Add summary to Completion Report.
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
## Inputs
|
|
71
|
-
- MoAI-ADK project context (`.moai/project/`, `.claude/` templates, etc.).
|
|
72
|
-
- Parameters passed from user commands or higher commands.
|
|
73
|
-
|
|
74
|
-
## Outputs
|
|
75
|
-
- Reports, checklists or recommendations for your Alfred workflow.
|
|
76
|
-
- Structured data for subsequent subagent calls.
|
|
77
|
-
|
|
78
|
-
## Failure Modes
|
|
79
|
-
- When required input documents are missing or permissions are limited.
|
|
80
|
-
- When disruptive changes are required without user approval.
|
|
81
|
-
|
|
82
|
-
## Dependencies
|
|
83
|
-
- Cooperation with higher-level agents such as cc-manager and project-manager is required.
|
|
84
|
-
|
|
85
|
-
## References
|
|
86
|
-
- SonarSource. "Quality Gate: Developer's Guide." https://www.sonarsource.com/company/newsroom/white-papers/quality-gate/ (accessed 2025-03-29).
|
|
87
|
-
- ISO/IEC 25010. "Systems and software quality models." (accessed 2025-03-29).
|
|
88
|
-
|
|
89
|
-
## Changelog
|
|
90
|
-
- 2025-03-29: Added input/output/failure response to Alfred-specific skills.
|
|
91
|
-
|
|
92
|
-
## Works well with
|
|
93
|
-
|
|
94
|
-
- alfred-tag-scanning (TAG traceability)
|
|
95
|
-
- alfred-code-reviewer (code quality analysis)
|
|
96
|
-
|
|
97
|
-
## Files included
|
|
98
|
-
|
|
99
|
-
- templates/trust-report-template.md
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
|
|
3
|
-
name: moai-alfred-tui-survey
|
|
4
|
-
description: Standardizes Claude Code Tools AskUserQuestion TUI menus for surveys, branching approvals, and option picking across Alfred workflows. Use when gathering approvals or decisions via Alfred’s TUI menus.
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Edit
|
|
9
|
-
- TodoWrite
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
# Alfred TUI Survey Skill
|
|
13
|
-
|
|
14
|
-
## Skill Metadata
|
|
15
|
-
| Field | Value |
|
|
16
|
-
| ----- | ----- |
|
|
17
|
-
| Allowed tools | Read (read_file), Write (write_file), Edit (edit_file), TodoWrite (todo_write) |
|
|
18
|
-
| Auto-load | On demand when AskUserQuestion menus are built |
|
|
19
|
-
| Trigger cues | Branch approvals, survey menus, decision gating via AskUserQuestion. |
|
|
20
|
-
|
|
21
|
-
## What it does
|
|
22
|
-
|
|
23
|
-
Provides ready-to-use patterns for Claude Code's AskUserQuestion TUI selector so Alfred agents can gather user choices, approvals, or survey answers with structured menus instead of ad-hoc text prompts.
|
|
24
|
-
|
|
25
|
-
## When to use
|
|
26
|
-
|
|
27
|
-
- Activates when Alfred needs to gather structured choices through the TUI selector.
|
|
28
|
-
- Need confirmation before advancing to a risky/destructive step.
|
|
29
|
-
- Choosing between alternative implementation paths or automation levels.
|
|
30
|
-
- Collecting survey-like answers (persona, tech stack, priority, risk level).
|
|
31
|
-
- Any time a branched workflow depends on user-selected options rather than free-form text.
|
|
32
|
-
|
|
33
|
-
## How it works
|
|
34
|
-
|
|
35
|
-
1. **Detect gate** – Pause at steps that require explicit user choice.
|
|
36
|
-
2. **Shape options** – Offer 2–5 focused choices with concise labels.
|
|
37
|
-
3. **Render menu** – Emit the `AskUserQuestion({...})` block for the selector.
|
|
38
|
-
4. **Map follow-ups** – Note how each option alters the next action/agent.
|
|
39
|
-
5. **Fallback** – Provide plain-text instructions when the UI cannot render.
|
|
40
|
-
|
|
41
|
-
### Templates & examples
|
|
42
|
-
|
|
43
|
-
- [Single-select deployment decision](examples.md#single-select-template)
|
|
44
|
-
- [Multi-select diagnostics checklist](examples.md#multi-select-variation)
|
|
45
|
-
- [Follow-up drill-down prompt](examples.md#follow-up-prompt-for-deeper-detail)
|
|
46
|
-
|
|
47
|
-
## Best Practices
|
|
48
|
-
- Reduce context switching by putting questions, options, and follow-up actions on one screen.
|
|
49
|
-
- Options are sorted according to comparison criteria such as risk and priority.
|
|
50
|
-
- If safety measures are required, such as approval/suspension/cancellation, attach a warning message.
|
|
51
|
-
- Submission results are recorded for reuse in the Sync step or reports.
|
|
52
|
-
|
|
53
|
-
## Inputs
|
|
54
|
-
- Decision scenarios and candidate options collected by Alfred workflows.
|
|
55
|
-
- Definition of follow-up actions for each option (next command, subagent, TODO, etc.).
|
|
56
|
-
|
|
57
|
-
## Outputs
|
|
58
|
-
- AskUserQuestion block and choice → follow-up action mapping.
|
|
59
|
-
- Summary of selection results and TODO items that require further confirmation.
|
|
60
|
-
|
|
61
|
-
## Failure Modes
|
|
62
|
-
- Ambiguous or duplicate options cause selection delays.
|
|
63
|
-
- It is difficult to judge priorities when all options look the same.
|
|
64
|
-
- AskUserQuestion does not work in a TUI-inactive environment, so plan B is needed.
|
|
65
|
-
|
|
66
|
-
## Dependencies
|
|
67
|
-
- Works with the main `/alfred:*` command and schedules follow-up actions with TodoWrite when necessary.
|
|
68
|
-
- When combined with moai-foundation-ears · moai-foundation-tags, requirements → options → TAG records are connected.
|
|
69
|
-
|
|
70
|
-
## References
|
|
71
|
-
- Jakubovic, J. "Designing Effective CLI Dialogs." ACM Queue, 2021.
|
|
72
|
-
- NCurses. "Programming Guide." https://invisible-island.net/ncurses/man/ncurses.3x.html (accessed 2025-03-29).
|
|
73
|
-
|
|
74
|
-
## Changelog
|
|
75
|
-
- 2025-03-29: Added input/output/failure response to Alfred-specific skills.
|
|
76
|
-
|
|
77
|
-
## Works well with
|
|
78
|
-
|
|
79
|
-
- `moai-foundation-ears` – Combine structured requirement patterns with menu-driven confirmations.
|
|
80
|
-
- `moai-alfred-git-workflow` – Use menus to choose branch/worktree strategies.
|
|
81
|
-
- `moai-alfred-code-reviewer` – Capture reviewer focus areas through guided selection.
|
|
82
|
-
|
|
83
|
-
## Examples
|
|
84
|
-
```markdown
|
|
85
|
-
- In the `/alfred:1-plan` step, user priorities are collected and the results are written to the PLAN board.
|
|
86
|
-
- Check user approval before high-risk operations while running `/alfred:2-run`.
|
|
87
|
-
```
|