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
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# moai-lang-typescript - Working Examples
|
|
2
|
+
|
|
3
|
+
_Last updated: 2025-10-22_
|
|
4
|
+
|
|
5
|
+
## Example 1: Basic Setup
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Setup commands
|
|
9
|
+
# ...
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Example 2: TDD Workflow
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# RED: Write failing test
|
|
16
|
+
# GREEN: Implement feature
|
|
17
|
+
# REFACTOR: Improve code
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Example 3: Quality Gate
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
# Run quality checks
|
|
24
|
+
# Verify coverage ≥85%
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
_For more examples, see SKILL.md reference section_
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# moai-lang-typescript - CLI Reference
|
|
2
|
+
|
|
3
|
+
_Last updated: 2025-10-22_
|
|
4
|
+
|
|
5
|
+
## Quick Reference
|
|
6
|
+
|
|
7
|
+
### Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Installation commands
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Common Commands
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Test
|
|
17
|
+
# Lint
|
|
18
|
+
# Format
|
|
19
|
+
# Build
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Tool Versions (2025-10-22)
|
|
23
|
+
|
|
24
|
+
- **TypeScript**: 5.7.2
|
|
25
|
+
- **Vitest**: 2.1.0
|
|
26
|
+
- **Biome**: 1.9.4
|
|
27
|
+
- **Bun**: 1.1.0
|
|
28
|
+
- **pnpm**: 9.14.2
|
|
29
|
+
- **React**: 19.0.0
|
|
30
|
+
- **Next.js**: 15.1.0
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
_For detailed usage, see SKILL.md_
|
|
@@ -0,0 +1,575 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: moai-learning-optimizer
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
created: 2025-11-05
|
|
5
|
+
updated: 2025-11-05
|
|
6
|
+
status: active
|
|
7
|
+
description: Intelligent learning system optimizer that analyzes session patterns, identifies improvement opportunities, and continuously enhances Alfred's performance through adaptive learning and knowledge optimization. Use when optimizing Alfred's behavior, analyzing session patterns, improving system performance, or when implementing adaptive learning capabilities.
|
|
8
|
+
keywords: [learning-system, session-analysis, performance-optimization, adaptive-learning, pattern-recognition, knowledge-optimization]
|
|
9
|
+
allowed-tools:
|
|
10
|
+
- Read
|
|
11
|
+
- Glob
|
|
12
|
+
- Grep
|
|
13
|
+
- Bash
|
|
14
|
+
- Write
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Learning System Optimizer
|
|
18
|
+
|
|
19
|
+
## Skill Metadata
|
|
20
|
+
|
|
21
|
+
| Field | Value |
|
|
22
|
+
| ----- | ----- |
|
|
23
|
+
| Version | 1.0.0 |
|
|
24
|
+
| Tier | Alfred (Learning System) |
|
|
25
|
+
| Auto-load | During session analysis or on demand |
|
|
26
|
+
| Purpose | Optimize Alfred performance through adaptive learning |
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## What It Does
|
|
31
|
+
|
|
32
|
+
Intelligent learning system optimizer that analyzes Alfred's session patterns, identifies improvement opportunities, and continuously enhances performance through adaptive learning and knowledge optimization. Learns from user interactions to provide increasingly relevant and efficient assistance.
|
|
33
|
+
|
|
34
|
+
**Core capabilities**:
|
|
35
|
+
- ✅ Session pattern analysis and behavior learning
|
|
36
|
+
- ✅ Performance optimization based on usage patterns
|
|
37
|
+
- ✅ Adaptive skill selection and invocation timing
|
|
38
|
+
- ✅ Knowledge gap identification and filling
|
|
39
|
+
- ✅ User preference learning and personalization
|
|
40
|
+
- ✅ System performance monitoring and tuning
|
|
41
|
+
- ✅ Predictive assistance and proactive recommendations
|
|
42
|
+
- ✅ Continuous improvement through feedback integration
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## When to Use
|
|
47
|
+
|
|
48
|
+
- ✅ When optimizing Alfred's performance and behavior
|
|
49
|
+
- ✅ During session analysis and pattern discovery
|
|
50
|
+
- ✅ When implementing adaptive learning capabilities
|
|
51
|
+
- ✅ For system performance monitoring and tuning
|
|
52
|
+
- ✅ When personalizing Alfred's responses and recommendations
|
|
53
|
+
- ✅ During troubleshooting and performance issues
|
|
54
|
+
- ✅ For continuous system improvement and optimization
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Learning Analytics Engine
|
|
59
|
+
|
|
60
|
+
### 1. Session Pattern Analysis
|
|
61
|
+
```python
|
|
62
|
+
def analyze_session_patterns():
|
|
63
|
+
"""Analyze Alfred session patterns for optimization opportunities"""
|
|
64
|
+
session_metrics = {
|
|
65
|
+
"session_duration": measure_session_duration(),
|
|
66
|
+
"tool_usage_patterns": analyze_tool_usage(),
|
|
67
|
+
"skill_invocation_patterns": analyze_skill_usage(),
|
|
68
|
+
"user_interaction_patterns": analyze_user_interactions(),
|
|
69
|
+
"success_rates": calculate_success_rates(),
|
|
70
|
+
"performance_bottlenecks": identify_bottlenecks(),
|
|
71
|
+
"user_satisfaction": measure_user_satisfaction()
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
# Pattern recognition
|
|
75
|
+
patterns = {
|
|
76
|
+
"peak_usage_times": identify_peak_usage_times(session_metrics),
|
|
77
|
+
"preferred_tools": identify_preferred_tools(session_metrics),
|
|
78
|
+
"skill_effectiveness": measure_skill_effectiveness(session_metrics),
|
|
79
|
+
"workflow_optimization": identify_workflow_optimizations(session_metrics)
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return {
|
|
83
|
+
"metrics": session_metrics,
|
|
84
|
+
"patterns": patterns,
|
|
85
|
+
"recommendations": generate_learning_recommendations(patterns)
|
|
86
|
+
}
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### 2. Adaptive Learning System
|
|
90
|
+
```python
|
|
91
|
+
class AdaptiveLearningSystem:
|
|
92
|
+
"""Adaptive learning system for continuous improvement"""
|
|
93
|
+
|
|
94
|
+
def __init__(self):
|
|
95
|
+
self.knowledge_base = load_knowledge_base()
|
|
96
|
+
self.user_preferences = load_user_preferences()
|
|
97
|
+
self.performance_history = load_performance_history()
|
|
98
|
+
self.learning_rate = 0.1
|
|
99
|
+
|
|
100
|
+
def learn_from_session(self, session_data):
|
|
101
|
+
"""Learn from completed session"""
|
|
102
|
+
# Extract learning signals
|
|
103
|
+
signals = extract_learning_signals(session_data)
|
|
104
|
+
|
|
105
|
+
# Update knowledge base
|
|
106
|
+
self.update_knowledge(signals)
|
|
107
|
+
|
|
108
|
+
# Adjust user preferences
|
|
109
|
+
self.adjust_preferences(signals)
|
|
110
|
+
|
|
111
|
+
# Optimize performance parameters
|
|
112
|
+
self.optimize_parameters(signals)
|
|
113
|
+
|
|
114
|
+
# Save learning updates
|
|
115
|
+
self.save_learning_state()
|
|
116
|
+
|
|
117
|
+
def predict_needs(self, context):
|
|
118
|
+
"""Predict user needs based on learned patterns"""
|
|
119
|
+
predictions = {
|
|
120
|
+
"likely_tools": predict_tool_usage(context),
|
|
121
|
+
"optimal_skills": predict_skill_selection(context),
|
|
122
|
+
"potential_issues": anticipate_problems(context),
|
|
123
|
+
"recommended_actions": suggest_actions(context)
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
return predictions
|
|
127
|
+
|
|
128
|
+
def adapt_responses(self, user_feedback):
|
|
129
|
+
"""Adapt response patterns based on user feedback"""
|
|
130
|
+
# Analyze feedback patterns
|
|
131
|
+
feedback_analysis = analyze_user_feedback(user_feedback)
|
|
132
|
+
|
|
133
|
+
# Adjust response strategies
|
|
134
|
+
self.adjust_response_strategies(feedback_analysis)
|
|
135
|
+
|
|
136
|
+
# Update communication preferences
|
|
137
|
+
self.update_communication_preferences(feedback_analysis)
|
|
138
|
+
|
|
139
|
+
# Refine assistance approach
|
|
140
|
+
self.refine_assistance_approach(feedback_analysis)
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### 3. Performance Optimization Engine
|
|
144
|
+
```python
|
|
145
|
+
def optimize_alfred_performance():
|
|
146
|
+
"""Optimize Alfred's performance based on learning data"""
|
|
147
|
+
optimization_areas = {
|
|
148
|
+
"skill_loading": optimize_skill_loading(),
|
|
149
|
+
"response_time": optimize_response_time(),
|
|
150
|
+
"context_utilization": optimize_context_usage(),
|
|
151
|
+
"knowledge_retrieval": optimize_knowledge_retrieval(),
|
|
152
|
+
"tool_selection": optimize_tool_selection(),
|
|
153
|
+
"workflow_efficiency": optimize_workflow_efficiency()
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
# Generate optimization plan
|
|
157
|
+
optimization_plan = {
|
|
158
|
+
"current_performance": measure_current_performance(),
|
|
159
|
+
"target_performance": set_performance_targets(),
|
|
160
|
+
"optimization_strategies": identify_optimization_strategies(),
|
|
161
|
+
"implementation_priority": prioritize_optimizations(),
|
|
162
|
+
"expected_improvements": estimate_improvements()
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
return optimization_plan
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## Knowledge Management
|
|
171
|
+
|
|
172
|
+
### 1. Knowledge Gap Analysis
|
|
173
|
+
```python
|
|
174
|
+
def analyze_knowledge_gaps():
|
|
175
|
+
"""Identify gaps in Alfred's knowledge and capabilities"""
|
|
176
|
+
gap_analysis = {
|
|
177
|
+
"missing_knowledge": identify_missing_knowledge(),
|
|
178
|
+
"outdated_information": identify_outdated_info(),
|
|
179
|
+
"user_unmet_needs": identify_unmet_needs(),
|
|
180
|
+
"skill_deficiencies": identify_skill_deficiencies(),
|
|
181
|
+
"context_limitations": identify_context_limitations()
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
# Prioritize gaps for learning
|
|
185
|
+
prioritized_gaps = prioritize_knowledge_gaps(gap_analysis)
|
|
186
|
+
|
|
187
|
+
# Generate learning plan
|
|
188
|
+
learning_plan = {
|
|
189
|
+
"immediate_needs": prioritized_gaps["high_priority"],
|
|
190
|
+
"medium_term": prioritized_gaps["medium_priority"],
|
|
191
|
+
"long_term": prioritized_gaps["low_priority"],
|
|
192
|
+
"learning_resources": identify_learning_resources(),
|
|
193
|
+
"implementation_strategy": create_learning_strategy()
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
return learning_plan
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
### 2. Knowledge Integration
|
|
200
|
+
```python
|
|
201
|
+
def integrate_new_knowledge(knowledge_items):
|
|
202
|
+
"""Integrate new knowledge into Alfred's system"""
|
|
203
|
+
integration_process = {
|
|
204
|
+
"validation": validate_knowledge(knowledge_items),
|
|
205
|
+
"categorization": categorize_knowledge(knowledge_items),
|
|
206
|
+
"indexing": index_knowledge(knowledge_items),
|
|
207
|
+
"linking": link_knowledge_to_existing(knowledge_items),
|
|
208
|
+
"testing": test_knowledge_integration(knowledge_items),
|
|
209
|
+
"deployment": deploy_knowledge_updates(knowledge_items)
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
for step, process in integration_process.items():
|
|
213
|
+
result = execute_integration_step(step, process)
|
|
214
|
+
if not result.success:
|
|
215
|
+
handle_integration_failure(step, result.error)
|
|
216
|
+
return False
|
|
217
|
+
|
|
218
|
+
return True
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
### 3. Knowledge Quality Management
|
|
222
|
+
```python
|
|
223
|
+
def maintain_knowledge_quality():
|
|
224
|
+
"""Maintain and improve knowledge quality"""
|
|
225
|
+
quality_metrics = {
|
|
226
|
+
"accuracy": measure_knowledge_accuracy(),
|
|
227
|
+
"relevance": measure_knowledge_relevance(),
|
|
228
|
+
"completeness": measure_knowledge_completeness(),
|
|
229
|
+
"consistency": measure_knowledge_consistency(),
|
|
230
|
+
"freshness": measure_knowledge_freshness()
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
quality_issues = identify_quality_issues(quality_metrics)
|
|
234
|
+
|
|
235
|
+
if quality_issues:
|
|
236
|
+
quality_improvement_plan = create_quality_improvement_plan(quality_issues)
|
|
237
|
+
execute_quality_improvements(quality_improvement_plan)
|
|
238
|
+
|
|
239
|
+
return quality_metrics
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
---
|
|
243
|
+
|
|
244
|
+
## User Personalization
|
|
245
|
+
|
|
246
|
+
### 1. Preference Learning
|
|
247
|
+
```python
|
|
248
|
+
def learn_user_preferences():
|
|
249
|
+
"""Learn and adapt to user preferences"""
|
|
250
|
+
preference_data = {
|
|
251
|
+
"communication_style": analyze_communication_preferences(),
|
|
252
|
+
"detail_level_preference": analyze_detail_preferences(),
|
|
253
|
+
"tool_preferences": analyze_tool_preferences(),
|
|
254
|
+
"workflow_patterns": analyze_workflow_patterns(),
|
|
255
|
+
"response_timing": analyze_response_timing_preferences(),
|
|
256
|
+
"error_handling": analyze_error_handling_preferences()
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
# Build user profile
|
|
260
|
+
user_profile = build_user_profile(preference_data)
|
|
261
|
+
|
|
262
|
+
# Personalize Alfred behavior
|
|
263
|
+
personalize_alfred_behavior(user_profile)
|
|
264
|
+
|
|
265
|
+
return user_profile
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
### 2. Adaptive Assistance
|
|
269
|
+
```python
|
|
270
|
+
class AdaptiveAssistance:
|
|
271
|
+
"""Adaptive assistance system based on user patterns"""
|
|
272
|
+
|
|
273
|
+
def __init__(self):
|
|
274
|
+
self.user_profile = load_user_profile()
|
|
275
|
+
self.assistance_strategies = load_assistance_strategies()
|
|
276
|
+
|
|
277
|
+
def adapt_assistance_level(self, context):
|
|
278
|
+
"""Adapt assistance level based on context and user profile"""
|
|
279
|
+
assistance_level = {
|
|
280
|
+
"proactive_suggestions": should_be_proactive(context),
|
|
281
|
+
"detail_provided": determine_detail_level(context),
|
|
282
|
+
"intervention_points": identify_intervention_points(context),
|
|
283
|
+
"explanation_style": choose_explanation_style(context)
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
return assistance_level
|
|
287
|
+
|
|
288
|
+
def personalize_responses(self, base_response, context):
|
|
289
|
+
"""Personalize responses based on user preferences"""
|
|
290
|
+
personalized_response = {
|
|
291
|
+
"content": adapt_content(base_response, self.user_profile),
|
|
292
|
+
"tone": adapt_tone(base_response, self.user_profile),
|
|
293
|
+
"format": adapt_format(base_response, self.user_profile),
|
|
294
|
+
"timing": adapt_timing(base_response, context, self.user_profile)
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
return personalized_response
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
### 3. Experience Optimization
|
|
301
|
+
```python
|
|
302
|
+
def optimize_user_experience():
|
|
303
|
+
"""Optimize overall user experience based on learning data"""
|
|
304
|
+
experience_metrics = {
|
|
305
|
+
"response_satisfaction": measure_response_satisfaction(),
|
|
306
|
+
"task_completion_efficiency": measure_task_efficiency(),
|
|
307
|
+
"learning_curve_progress": measure_learning_progress(),
|
|
308
|
+
"error_recovery_time": measure_error_recovery(),
|
|
309
|
+
"engagement_level": measure_engagement_level()
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
# Identify improvement opportunities
|
|
313
|
+
improvements = identify_experience_improvements(experience_metrics)
|
|
314
|
+
|
|
315
|
+
# Create optimization plan
|
|
316
|
+
optimization_plan = {
|
|
317
|
+
"current_state": experience_metrics,
|
|
318
|
+
"target_state": set_experience_targets(),
|
|
319
|
+
"improvements": improvements,
|
|
320
|
+
"implementation_timeline": create_implementation_timeline(),
|
|
321
|
+
"success_metrics": define_success_metrics()
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
return optimization_plan
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
---
|
|
328
|
+
|
|
329
|
+
## Predictive Analytics
|
|
330
|
+
|
|
331
|
+
### 1. Behavior Prediction
|
|
332
|
+
```python
|
|
333
|
+
def predict_user_behavior(context):
|
|
334
|
+
"""Predict user behavior and needs"""
|
|
335
|
+
behavioral_patterns = load_behavioral_patterns()
|
|
336
|
+
current_context = extract_context_features(context)
|
|
337
|
+
|
|
338
|
+
predictions = {
|
|
339
|
+
"likely_next_actions": predict_next_actions(current_context, behavioral_patterns),
|
|
340
|
+
"potential_issues": anticipate_issues(current_context, behavioral_patterns),
|
|
341
|
+
"optimal_interventions": suggest_interventions(current_context, behavioral_patterns),
|
|
342
|
+
"resource_needs": predict_resource_needs(current_context, behavioral_patterns)
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
return predictions
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
### 2. Performance Prediction
|
|
349
|
+
```python
|
|
350
|
+
def predict_system_performance(task_context):
|
|
351
|
+
"""Predict system performance for given task"""
|
|
352
|
+
performance_history = load_performance_history()
|
|
353
|
+
task_features = extract_task_features(task_context)
|
|
354
|
+
|
|
355
|
+
predictions = {
|
|
356
|
+
"expected_duration": predict_task_duration(task_features, performance_history),
|
|
357
|
+
"likely_bottlenecks": predict_bottlenecks(task_features, performance_history),
|
|
358
|
+
"resource_requirements": predict_resource_needs(task_features, performance_history),
|
|
359
|
+
"success_probability": predict_success_probability(task_features, performance_history)
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
return predictions
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
### 3. Optimization Opportunities
|
|
366
|
+
```python
|
|
367
|
+
def identify_optimization_opportunities():
|
|
368
|
+
"""Identify opportunities for system optimization"""
|
|
369
|
+
system_data = collect_system_data()
|
|
370
|
+
performance_data = collect_performance_data()
|
|
371
|
+
user_data = collect_user_data()
|
|
372
|
+
|
|
373
|
+
opportunities = {
|
|
374
|
+
"skill_optimization": identify_skill_optimizations(system_data),
|
|
375
|
+
"workflow_improvements": identify_workflow_improvements(user_data),
|
|
376
|
+
"performance_tuning": identify_performance_tunings(performance_data),
|
|
377
|
+
"knowledge_enhancement": identify_knowledge_opportunities(system_data, user_data)
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
# Prioritize opportunities
|
|
381
|
+
prioritized_opportunities = prioritize_optimization_opportunities(opportunities)
|
|
382
|
+
|
|
383
|
+
return prioritized_opportunities
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
---
|
|
387
|
+
|
|
388
|
+
## Continuous Improvement
|
|
389
|
+
|
|
390
|
+
### 1. Feedback Integration
|
|
391
|
+
```python
|
|
392
|
+
def integrate_user_feedback(feedback_data):
|
|
393
|
+
"""Integrate user feedback for continuous improvement"""
|
|
394
|
+
feedback_analysis = {
|
|
395
|
+
"satisfaction_trends": analyze_satisfaction_trends(feedback_data),
|
|
396
|
+
"common_issues": identify_common_issues(feedback_data),
|
|
397
|
+
"improvement_suggestions": extract_improvement_suggestions(feedback_data),
|
|
398
|
+
"success_patterns": identify_success_patterns(feedback_data)
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
# Update system based on feedback
|
|
402
|
+
system_updates = {
|
|
403
|
+
"response_improvements": improve_responses(feedback_analysis),
|
|
404
|
+
"workflow_optimizations": optimize_workflows(feedback_analysis),
|
|
405
|
+
"knowledge_updates": update_knowledge(feedback_analysis),
|
|
406
|
+
"performance_tuning": tune_performance(feedback_analysis)
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
return system_updates
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
### 2. Learning Loop Management
|
|
413
|
+
```python
|
|
414
|
+
class LearningLoop:
|
|
415
|
+
"""Manage continuous learning loop"""
|
|
416
|
+
|
|
417
|
+
def __init__(self):
|
|
418
|
+
self.learning_cycle = 0
|
|
419
|
+
self.performance_history = []
|
|
420
|
+
self.improvement_tracker = ImprovementTracker()
|
|
421
|
+
|
|
422
|
+
def execute_learning_cycle(self):
|
|
423
|
+
"""Execute one complete learning cycle"""
|
|
424
|
+
# 1. Collect data
|
|
425
|
+
cycle_data = collect_cycle_data()
|
|
426
|
+
|
|
427
|
+
# 2. Analyze patterns
|
|
428
|
+
patterns = analyze_patterns(cycle_data)
|
|
429
|
+
|
|
430
|
+
# 3. Generate insights
|
|
431
|
+
insights = generate_insights(patterns)
|
|
432
|
+
|
|
433
|
+
# 4. Implement improvements
|
|
434
|
+
improvements = implement_improvements(insights)
|
|
435
|
+
|
|
436
|
+
# 5. Validate results
|
|
437
|
+
validation = validate_improvements(improvements)
|
|
438
|
+
|
|
439
|
+
# 6. Update learning state
|
|
440
|
+
self.update_learning_state(cycle_data, insights, improvements, validation)
|
|
441
|
+
|
|
442
|
+
self.learning_cycle += 1
|
|
443
|
+
|
|
444
|
+
return {
|
|
445
|
+
"cycle": self.learning_cycle,
|
|
446
|
+
"data": cycle_data,
|
|
447
|
+
"insights": insights,
|
|
448
|
+
"improvements": improvements,
|
|
449
|
+
"validation": validation
|
|
450
|
+
}
|
|
451
|
+
```
|
|
452
|
+
|
|
453
|
+
### 3. System Evolution
|
|
454
|
+
```python
|
|
455
|
+
def evolve_system_capabilities():
|
|
456
|
+
"""Evolve system capabilities based on learning"""
|
|
457
|
+
evolution_plan = {
|
|
458
|
+
"current_capabilities": assess_current_capabilities(),
|
|
459
|
+
"future_requirements": anticipate_future_requirements(),
|
|
460
|
+
"capability_gaps": identify_capability_gaps(),
|
|
461
|
+
"evolution_roadmap": create_evolution_roadmap(),
|
|
462
|
+
"resource_needs": assess_resource_needs()
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
# Implement evolution steps
|
|
466
|
+
for evolution_step in evolution_plan["evolution_roadmap"]:
|
|
467
|
+
implement_evolution_step(evolution_step)
|
|
468
|
+
validate_evolution_result(evolution_step)
|
|
469
|
+
|
|
470
|
+
return evolution_plan
|
|
471
|
+
```
|
|
472
|
+
|
|
473
|
+
---
|
|
474
|
+
|
|
475
|
+
## Integration Examples
|
|
476
|
+
|
|
477
|
+
### Example 1: Session-Based Learning
|
|
478
|
+
```python
|
|
479
|
+
def learn_from_current_session():
|
|
480
|
+
"""Learn from the current Alfred session"""
|
|
481
|
+
Skill("moai-learning-optimizer")
|
|
482
|
+
|
|
483
|
+
session_data = collect_current_session_data()
|
|
484
|
+
learning_analysis = analyze_session_patterns()
|
|
485
|
+
|
|
486
|
+
# Update user preferences
|
|
487
|
+
update_preferences(learning_analysis)
|
|
488
|
+
|
|
489
|
+
# Optimize performance
|
|
490
|
+
optimize_performance(learning_analysis)
|
|
491
|
+
|
|
492
|
+
# Identify improvement opportunities
|
|
493
|
+
improvements = identify_improvement_opportunities()
|
|
494
|
+
|
|
495
|
+
display_learning_summary(learning_analysis, improvements)
|
|
496
|
+
```
|
|
497
|
+
|
|
498
|
+
### Example 2: Predictive Assistance
|
|
499
|
+
```python
|
|
500
|
+
def provide_predictive_assistance():
|
|
501
|
+
"""Provide predictive assistance based on learned patterns"""
|
|
502
|
+
Skill("moai-learning-optimizer")
|
|
503
|
+
|
|
504
|
+
current_context = get_current_context()
|
|
505
|
+
predictions = predict_user_behavior(current_context)
|
|
506
|
+
|
|
507
|
+
# Offer proactive assistance
|
|
508
|
+
if predictions["likely_next_actions"]:
|
|
509
|
+
suggest_next_steps(predictions["likely_next_actions"])
|
|
510
|
+
|
|
511
|
+
# Prevent potential issues
|
|
512
|
+
if predictions["potential_issues"]:
|
|
513
|
+
provide_preventive_guidance(predictions["potential_issues"])
|
|
514
|
+
```
|
|
515
|
+
|
|
516
|
+
### Example 3: Performance Optimization
|
|
517
|
+
```python
|
|
518
|
+
def optimize_system_performance():
|
|
519
|
+
"""Optimize Alfred's performance based on learning data"""
|
|
520
|
+
Skill("moai-learning-optimizer")
|
|
521
|
+
|
|
522
|
+
optimization_plan = optimize_alfred_performance()
|
|
523
|
+
|
|
524
|
+
# Implement high-priority optimizations
|
|
525
|
+
for optimization in optimization_plan["high_priority"]:
|
|
526
|
+
implement_optimization(optimization)
|
|
527
|
+
|
|
528
|
+
# Measure improvements
|
|
529
|
+
improvements = measure_performance_improvements()
|
|
530
|
+
|
|
531
|
+
display_optimization_results(optimizations, improvements)
|
|
532
|
+
```
|
|
533
|
+
|
|
534
|
+
---
|
|
535
|
+
|
|
536
|
+
## Usage Examples
|
|
537
|
+
|
|
538
|
+
### Example 1: Learning Analysis
|
|
539
|
+
```python
|
|
540
|
+
# User wants to understand Alfred's learning progress
|
|
541
|
+
Skill("moai-learning-optimizer")
|
|
542
|
+
|
|
543
|
+
learning_report = generate_learning_report()
|
|
544
|
+
display_learning_dashboard(learning_report)
|
|
545
|
+
|
|
546
|
+
if learning_report["improvement_opportunities"]:
|
|
547
|
+
suggest_improvements(learning_report["improvement_opportunities"])
|
|
548
|
+
```
|
|
549
|
+
|
|
550
|
+
### Example 2: Personalization Setup
|
|
551
|
+
```python
|
|
552
|
+
# User wants to personalize Alfred's behavior
|
|
553
|
+
Skill("moai-learning-optimizer")
|
|
554
|
+
|
|
555
|
+
preferences = learn_user_preferences()
|
|
556
|
+
personalization_plan = create_personalization_plan(preferences)
|
|
557
|
+
|
|
558
|
+
apply_personalization(personalization_plan)
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
### Example 3: System Evolution
|
|
562
|
+
```python
|
|
563
|
+
# User wants to evolve Alfred's capabilities
|
|
564
|
+
Skill("moai-learning-optimizer")
|
|
565
|
+
|
|
566
|
+
evolution_plan = evolve_system_capabilities()
|
|
567
|
+
display_evolution_roadmap(evolution_plan)
|
|
568
|
+
|
|
569
|
+
if confirm_evolution(evolution_plan):
|
|
570
|
+
execute_evolution(evolution_plan)
|
|
571
|
+
```
|
|
572
|
+
|
|
573
|
+
---
|
|
574
|
+
|
|
575
|
+
**End of Skill** | Intelligent learning system for continuous Alfred optimization and adaptation
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# moai-project-batch-questions
|
|
2
|
+
|
|
3
|
+
A skill for standardizing AskUserQuestion patterns and providing reusable question templates with batch optimization for the MoAI-ADK project.
|
|
4
|
+
|
|
5
|
+
## Files
|
|
6
|
+
|
|
7
|
+
- **SKILL.md** - Main skill documentation (304 lines)
|
|
8
|
+
- **examples.md** - Real-world usage examples (417 lines)
|
|
9
|
+
- **reference.md** - Complete API reference (704 lines)
|
|
10
|
+
- **README.md** - This file
|
|
11
|
+
|
|
12
|
+
## Key Features
|
|
13
|
+
|
|
14
|
+
- **60% interaction reduction** through strategic question batching
|
|
15
|
+
- **Multi-language support** (Korean, English, Japanese, Chinese)
|
|
16
|
+
- **Reusable templates** for common scenarios
|
|
17
|
+
- **Built-in validation** and error handling
|
|
18
|
+
- **Token-efficient** question design
|
|
19
|
+
|
|
20
|
+
## Quick Start
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
// Use language selection batch
|
|
24
|
+
const result = await executeBatchTemplate(LANGUAGE_BATCH_TEMPLATE);
|
|
25
|
+
|
|
26
|
+
// Use team mode batch (conditional)
|
|
27
|
+
if (isTeamMode()) {
|
|
28
|
+
const teamResult = await executeBatchTemplate(TEAM_MODE_BATCH_TEMPLATE);
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Integration
|
|
33
|
+
|
|
34
|
+
- **Alfred Commands**: Use in `/alfred:0-project` and other commands
|
|
35
|
+
- **Sub-agents**: Integrate with project-manager, spec-builder, etc.
|
|
36
|
+
- **Configuration**: Save responses to `.moai/config.json`
|
|
37
|
+
|
|
38
|
+
## Performance
|
|
39
|
+
|
|
40
|
+
| Template | Traditional | Batch | Reduction |
|
|
41
|
+
|----------|-------------|-------|-----------|
|
|
42
|
+
| Language Selection | 3 interactions | 1 interaction | 66% |
|
|
43
|
+
| Team Mode Settings | 2 interactions | 1 interaction | 50% |
|
|
44
|
+
| Domain Selection | 5+ questions | 1 interaction | 80%+ |
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
**Created**: 2025-11-05
|
|
49
|
+
**Version**: 1.0.0
|
|
50
|
+
**Total Lines**: 1,425 across all files
|