moai-adk 0.9.0__tar.gz → 0.9.1__tar.gz

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.

Files changed (323) hide show
  1. {moai_adk-0.9.0 → moai_adk-0.9.1}/.gitignore +0 -11
  2. {moai_adk-0.9.0 → moai_adk-0.9.1}/PKG-INFO +69 -333
  3. {moai_adk-0.9.0 → moai_adk-0.9.1}/README.md +68 -332
  4. {moai_adk-0.9.0 → moai_adk-0.9.1}/pyproject.toml +1 -1
  5. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/commands/update.py +214 -56
  6. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/pre_commit_validator.py +0 -1
  7. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/reporter.py +1 -2
  8. moai_adk-0.9.1/src/moai_adk/templates/.claude/hooks/alfred/.moai/cache/version-check.json +9 -0
  9. moai_adk-0.9.1/src/moai_adk/templates/.claude/hooks/alfred/README.md +343 -0
  10. moai_adk-0.9.1/src/moai_adk/templates/.claude/hooks/alfred/TROUBLESHOOTING.md +471 -0
  11. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/core/project.py +10 -77
  12. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/handlers/user.py +19 -0
  13. moai_adk-0.9.1/src/moai_adk/templates/.github/workflows/tag-report.yml +261 -0
  14. moai_adk-0.9.1/src/moai_adk/templates/.github/workflows/tag-validation.yml +176 -0
  15. moai_adk-0.9.1/src/moai_adk/templates/.moai/docs/quick-issue-creation-guide.md +219 -0
  16. moai_adk-0.9.1/src/moai_adk/templates/.moai/hooks/install.sh +79 -0
  17. moai_adk-0.9.1/src/moai_adk/templates/.moai/hooks/pre-commit.sh +66 -0
  18. moai_adk-0.9.1/src/moai_adk/templates/.moai/memory/GITFLOW-PROTECTION-POLICY.md +220 -0
  19. moai_adk-0.9.1/src/moai_adk/templates/.moai/memory/gitflow-protection-policy.md +220 -0
  20. moai_adk-0.9.1/src/moai_adk/templates/.moai/memory/spec-metadata.md +356 -0
  21. moai_adk-0.9.1/src/moai_adk/templates/src/moai_adk/core/__init__.py +5 -0
  22. moai_adk-0.9.1/src/moai_adk/templates/src/moai_adk/core/tags/__init__.py +86 -0
  23. moai_adk-0.9.1/src/moai_adk/templates/src/moai_adk/core/tags/ci_validator.py +433 -0
  24. moai_adk-0.9.1/src/moai_adk/templates/src/moai_adk/core/tags/cli.py +283 -0
  25. moai_adk-0.9.1/src/moai_adk/templates/src/moai_adk/core/tags/pre_commit_validator.py +354 -0
  26. moai_adk-0.9.1/src/moai_adk/templates/src/moai_adk/core/tags/reporter.py +956 -0
  27. moai_adk-0.9.1/src/moai_adk/templates/src/moai_adk/core/tags/validator.py +897 -0
  28. moai_adk-0.9.0/src/moai_adk/templates/.claude/hooks/alfred/core/project.py +0 -750
  29. moai_adk-0.9.0/src/moai_adk/templates/.moai/memory/gitflow-protection-policy.md +0 -330
  30. moai_adk-0.9.0/src/moai_adk/templates/README.md +0 -256
  31. {moai_adk-0.9.0 → moai_adk-0.9.1}/LICENSE +0 -0
  32. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/__init__.py +0 -0
  33. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/__main__.py +0 -0
  34. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/__init__.py +0 -0
  35. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/commands/__init__.py +0 -0
  36. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/commands/backup.py +0 -0
  37. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/commands/doctor.py +0 -0
  38. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/commands/init.py +0 -0
  39. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/commands/status.py +0 -0
  40. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/main.py +0 -0
  41. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/prompts/__init__.py +0 -0
  42. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/cli/prompts/init_prompts.py +0 -0
  43. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/__init__.py +0 -0
  44. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/config/__init__.py +0 -0
  45. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/config/migration.py +0 -0
  46. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/diagnostics/__init__.py +0 -0
  47. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/diagnostics/slash_commands.py +0 -0
  48. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/git/__init__.py +0 -0
  49. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/git/branch.py +0 -0
  50. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/git/branch_manager.py +0 -0
  51. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/git/checkpoint.py +0 -0
  52. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/git/commit.py +0 -0
  53. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/git/event_detector.py +0 -0
  54. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/git/manager.py +0 -0
  55. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/issue_creator.py +0 -0
  56. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/project/__init__.py +0 -0
  57. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/project/backup_utils.py +0 -0
  58. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/project/checker.py +0 -0
  59. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/project/detector.py +0 -0
  60. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/project/initializer.py +0 -0
  61. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/project/phase_executor.py +0 -0
  62. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/project/validator.py +0 -0
  63. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/quality/__init__.py +0 -0
  64. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/quality/trust_checker.py +0 -0
  65. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/quality/validators/__init__.py +0 -0
  66. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/quality/validators/base_validator.py +0 -0
  67. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/__init__.py +0 -0
  68. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/ci_validator.py +0 -0
  69. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/cli.py +0 -0
  70. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/generator.py +0 -0
  71. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/inserter.py +0 -0
  72. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/mapper.py +0 -0
  73. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/parser.py +0 -0
  74. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/tags.py +0 -0
  75. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/tags/validator.py +0 -0
  76. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/template/__init__.py +0 -0
  77. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/template/backup.py +0 -0
  78. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/template/config.py +0 -0
  79. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/template/languages.py +0 -0
  80. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/template/merger.py +0 -0
  81. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/template/processor.py +0 -0
  82. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/core/template_engine.py +0 -0
  83. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/cc-manager.md +0 -0
  84. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/debug-helper.md +0 -0
  85. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/doc-syncer.md +0 -0
  86. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/git-manager.md +0 -0
  87. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/implementation-planner.md +0 -0
  88. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/project-manager.md +0 -0
  89. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/quality-gate.md +0 -0
  90. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/skill-factory.md +0 -0
  91. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/spec-builder.md +0 -0
  92. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/tag-agent.md +0 -0
  93. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +0 -0
  94. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/agents/alfred/trust-checker.md +0 -0
  95. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/commands/alfred/0-project.md +0 -0
  96. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/commands/alfred/1-plan.md +0 -0
  97. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/commands/alfred/2-run.md +0 -0
  98. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/commands/alfred/3-sync.md +0 -0
  99. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/commands/alfred/9-feedback.md +0 -0
  100. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +0 -0
  101. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +0 -0
  102. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/notification__handle_events.py +0 -0
  103. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py +0 -0
  104. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py +0 -0
  105. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py +0 -0
  106. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py +0 -0
  107. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py +0 -0
  108. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/core/checkpoint.py +0 -0
  109. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/core/context.py +0 -0
  110. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/core/tags.py +0 -0
  111. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +0 -0
  112. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/handlers/__init__.py +0 -0
  113. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py +0 -0
  114. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py +0 -0
  115. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/shared/handlers/tool.py +0 -0
  116. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/stop__handle_interrupt.py +0 -0
  117. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/subagent_stop__handle_subagent_end.py +0 -0
  118. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py +0 -0
  119. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +0 -0
  120. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +0 -0
  121. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +0 -0
  122. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/settings.json +0 -0
  123. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/SKILL.md +0 -0
  124. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/examples.md +0 -0
  125. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/reference.md +0 -0
  126. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-git-workflow/SKILL.md +0 -0
  127. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-git-workflow/examples.md +0 -0
  128. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-git-workflow/reference.md +0 -0
  129. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/SKILL.md +0 -0
  130. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/examples.md +0 -0
  131. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/reference.md +0 -0
  132. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-language-detection/SKILL.md +0 -0
  133. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-language-detection/examples.md +0 -0
  134. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-language-detection/reference.md +0 -0
  135. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/SKILL.md +0 -0
  136. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/examples.md +0 -0
  137. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/reference.md +0 -0
  138. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/SKILL.md +0 -0
  139. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/examples.md +0 -0
  140. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/reference.md +0 -0
  141. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-trust-validation/SKILL.md +0 -0
  142. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-trust-validation/examples.md +0 -0
  143. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-alfred-trust-validation/reference.md +0 -0
  144. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-agents/SKILL.md +0 -0
  145. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-agents/templates/agent-template.md +0 -0
  146. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-claude-md/SKILL.md +0 -0
  147. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-claude-md/templates/CLAUDE-template.md +0 -0
  148. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-commands/SKILL.md +0 -0
  149. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-commands/templates/command-template.md +0 -0
  150. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-hooks/SKILL.md +0 -0
  151. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/pre-bash-check.sh +0 -0
  152. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/preserve-permissions.sh +0 -0
  153. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/validate-bash-command.py +0 -0
  154. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/SKILL.md +0 -0
  155. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/templates/settings-mcp-template.json +0 -0
  156. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-memory/SKILL.md +0 -0
  157. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-memory/templates/session-summary-template.md +0 -0
  158. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-settings/SKILL.md +0 -0
  159. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-settings/templates/settings-complete-template.json +0 -0
  160. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-skills/SKILL.md +0 -0
  161. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-cc-skills/templates/SKILL-template.md +0 -0
  162. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +0 -0
  163. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-backend/examples.md +0 -0
  164. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-backend/reference.md +0 -0
  165. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-cli-tool/SKILL.md +0 -0
  166. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-cli-tool/examples.md +0 -0
  167. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-cli-tool/reference.md +0 -0
  168. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-data-science/SKILL.md +0 -0
  169. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-data-science/examples.md +0 -0
  170. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-data-science/reference.md +0 -0
  171. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +0 -0
  172. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-database/examples.md +0 -0
  173. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-database/reference.md +0 -0
  174. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-devops/SKILL.md +0 -0
  175. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-devops/examples.md +0 -0
  176. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-devops/reference.md +0 -0
  177. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +0 -0
  178. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md +0 -0
  179. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md +0 -0
  180. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-ml/SKILL.md +0 -0
  181. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-ml/examples.md +0 -0
  182. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-ml/reference.md +0 -0
  183. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-mobile-app/SKILL.md +0 -0
  184. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-mobile-app/examples.md +0 -0
  185. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-mobile-app/reference.md +0 -0
  186. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-security/SKILL.md +0 -0
  187. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-security/examples.md +0 -0
  188. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-security/reference.md +0 -0
  189. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-web-api/SKILL.md +0 -0
  190. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-web-api/examples.md +0 -0
  191. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-domain-web-api/reference.md +0 -0
  192. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-debug/SKILL.md +0 -0
  193. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-debug/examples.md +0 -0
  194. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-debug/reference.md +0 -0
  195. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-perf/SKILL.md +0 -0
  196. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-perf/examples.md +0 -0
  197. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-perf/reference.md +0 -0
  198. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-refactor/SKILL.md +0 -0
  199. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-refactor/examples.md +0 -0
  200. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-refactor/reference.md +0 -0
  201. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md +0 -0
  202. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-review/examples.md +0 -0
  203. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-essentials-review/reference.md +0 -0
  204. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +0 -0
  205. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-ears/examples.md +0 -0
  206. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-ears/reference.md +0 -0
  207. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md +0 -0
  208. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-git/examples.md +0 -0
  209. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-git/reference.md +0 -0
  210. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-langs/SKILL.md +0 -0
  211. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-langs/examples.md +0 -0
  212. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-langs/reference.md +0 -0
  213. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-specs/SKILL.md +0 -0
  214. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-specs/examples.md +0 -0
  215. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-specs/reference.md +0 -0
  216. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-tags/SKILL.md +0 -0
  217. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-tags/examples.md +0 -0
  218. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-tags/reference.md +0 -0
  219. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-trust/SKILL.md +0 -0
  220. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-trust/examples.md +0 -0
  221. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-foundation-trust/reference.md +0 -0
  222. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-c/SKILL.md +0 -0
  223. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-c/examples.md +0 -0
  224. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-c/reference.md +0 -0
  225. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +0 -0
  226. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-cpp/examples.md +0 -0
  227. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-cpp/reference.md +0 -0
  228. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +0 -0
  229. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-csharp/examples.md +0 -0
  230. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-csharp/reference.md +0 -0
  231. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-dart/SKILL.md +0 -0
  232. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-dart/examples.md +0 -0
  233. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-dart/reference.md +0 -0
  234. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +0 -0
  235. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-go/examples.md +0 -0
  236. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-go/reference.md +0 -0
  237. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +0 -0
  238. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-java/examples.md +0 -0
  239. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-java/reference.md +0 -0
  240. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +0 -0
  241. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-javascript/examples.md +0 -0
  242. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-javascript/reference.md +0 -0
  243. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +0 -0
  244. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md +0 -0
  245. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md +0 -0
  246. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +0 -0
  247. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-php/examples.md +0 -0
  248. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-php/reference.md +0 -0
  249. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +0 -0
  250. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-python/examples.md +0 -0
  251. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-python/reference.md +0 -0
  252. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +0 -0
  253. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-r/examples.md +0 -0
  254. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-r/reference.md +0 -0
  255. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +0 -0
  256. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-ruby/examples.md +0 -0
  257. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-ruby/reference.md +0 -0
  258. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +0 -0
  259. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-rust/examples.md +0 -0
  260. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-rust/reference.md +0 -0
  261. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +0 -0
  262. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-scala/examples.md +0 -0
  263. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-scala/reference.md +0 -0
  264. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-shell/SKILL.md +0 -0
  265. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-shell/examples.md +0 -0
  266. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-shell/reference.md +0 -0
  267. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-sql/SKILL.md +0 -0
  268. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-sql/examples.md +0 -0
  269. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-sql/reference.md +0 -0
  270. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +0 -0
  271. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-swift/examples.md +0 -0
  272. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-swift/reference.md +0 -0
  273. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +0 -0
  274. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md +0 -0
  275. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md +0 -0
  276. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/CHECKLIST.md +0 -0
  277. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/EXAMPLES.md +0 -0
  278. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/INTERACTIVE-DISCOVERY.md +0 -0
  279. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/METADATA.md +0 -0
  280. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/PARALLEL-ANALYSIS-REPORT.md +0 -0
  281. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/PYTHON-VERSION-MATRIX.md +0 -0
  282. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/SKILL-FACTORY-WORKFLOW.md +0 -0
  283. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/SKILL-UPDATE-ADVISOR.md +0 -0
  284. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/SKILL.md +0 -0
  285. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/STEP-BY-STEP-GUIDE.md +0 -0
  286. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/STRUCTURE.md +0 -0
  287. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/WEB-RESEARCH.md +0 -0
  288. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/reference.md +0 -0
  289. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/scripts/generate-structure.sh +0 -0
  290. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/scripts/validate-skill.sh +0 -0
  291. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/templates/SKILL_TEMPLATE.md +0 -0
  292. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/templates/examples-template.md +0 -0
  293. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/templates/reference-template.md +0 -0
  294. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-skill-factory/templates/scripts-template.sh +0 -0
  295. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-spec-authoring/README.md +0 -0
  296. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-spec-authoring/SKILL.md +0 -0
  297. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-spec-authoring/examples/validate-spec.sh +0 -0
  298. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-spec-authoring/examples.md +0 -0
  299. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.claude/skills/moai-spec-authoring/reference.md +0 -0
  300. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.github/ISSUE_TEMPLATE/spec.yml +0 -0
  301. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  302. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.github/workflows/moai-gitflow.yml +0 -0
  303. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.github/workflows/moai-release-create.yml +0 -0
  304. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.github/workflows/moai-release-pipeline.yml +0 -0
  305. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.github/workflows/release.yml +0 -0
  306. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.github/workflows/spec-issue-sync.yml +0 -0
  307. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.gitignore +0 -0
  308. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/config.json +0 -0
  309. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/memory/CLAUDE-AGENTS-GUIDE.md +0 -0
  310. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/memory/CLAUDE-PRACTICES.md +0 -0
  311. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/memory/CLAUDE-RULES.md +0 -0
  312. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/memory/DEVELOPMENT-GUIDE.md +0 -0
  313. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/memory/ISSUE-LABEL-MAPPING.md +0 -0
  314. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/memory/SKILLS-DESCRIPTION-POLICY.md +0 -0
  315. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/memory/SPEC-METADATA.md +0 -0
  316. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/project/product.md +0 -0
  317. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/project/structure.md +0 -0
  318. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/.moai/project/tech.md +0 -0
  319. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/CLAUDE.md +0 -0
  320. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/templates/__init__.py +0 -0
  321. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/utils/__init__.py +0 -0
  322. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/utils/banner.py +0 -0
  323. {moai_adk-0.9.0 → moai_adk-0.9.1}/src/moai_adk/utils/logger.py +0 -0
@@ -68,18 +68,7 @@ logs/
68
68
  *.tmp
69
69
  *.temp
70
70
 
71
-
72
-
73
-
74
71
  .claudeignore
75
72
 
76
73
  # Project Plans (internal tracking, not versioned)
77
74
  CURSOR_INTEGRATION_PLAN.md
78
-
79
-
80
- # MoAI internal directories (not versioned)
81
- .moai/analysis/
82
- .moai/reports/
83
- .moai/scripts/
84
- .moai/cache/
85
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moai-adk
3
- Version: 0.9.0
3
+ Version: 0.9.1
4
4
  Summary: MoAI Agentic Development Kit - SPEC-First TDD with Alfred SuperAgent & Complete Skills v2.0
5
5
  Project-URL: Homepage, https://github.com/modu-ai/moai-adk
6
6
  Project-URL: Repository, https://github.com/modu-ai/moai-adk
@@ -388,70 +388,30 @@ cat README.md
388
388
 
389
389
  MoAI-ADK's AI coordination is powered by **Alfred**, the MoAI SuperAgent. Alfred's behavior and decision-making are guided by a set of **internal configuration documents** in the `.claude/` directory.
390
390
 
391
- ### 4-Document Structure (Progressive Disclosure Pattern)
391
+ ### 4-Document Structure
392
392
 
393
- When you run MoAI-ADK, Alfred loads configuration from **4 coordinated documents** (stored in your `.claude/` directory). This layered approach follows **Progressive Disclosure** — each document adds context only when needed:
393
+ When you run MoAI-ADK, Alfred loads configuration from **4 coordinated documents** (stored in your `.claude/` directory):
394
394
 
395
- #### Layer 1: Bootstrap (Always Loaded)
396
-
397
- | Document | Size | Purpose | Single Responsibility |
398
- |----------|------|---------|----------------------|
399
- | **CLAUDE.md** | ~7kb | Alfred's identity, directives, project metadata, language settings | **Project-specific guidance** (your team's working playbook) |
400
-
401
- #### Layers 2-4: Just-In-Time (JIT) Loading
402
-
403
- | Document | Size | Purpose | Triggered When |
404
- |----------|------|---------|----------------|
405
- | **CLAUDE-AGENTS-GUIDE.md** | ~14kb | Sub-agent roster (19 members), Skills map (55 packs), selection criteria | Deciding which agent to invoke (e.g., `/alfred:2-run` → need tdd-implementer) |
406
- | **CLAUDE-RULES.md** | ~17kb | Decision rules: Skill invocation, Interactive Questions, TAG validation, TRUST gates, commit templates | At decision points (e.g., "Should I ask user?", "Which Skill applies?") |
407
- | **CLAUDE-PRACTICES.md** | ~8kb | Real-world workflows, context engineering (JIT retrieval), agent collaboration patterns, code examples | During implementation phase (e.g., executing `/alfred:2-run` RED→GREEN→REFACTOR) |
408
-
409
- ### How Progressive Disclosure Works
410
-
411
- **Example: You run `/alfred:2-run AUTH-001`**
412
-
413
- ```
414
- Session Start
415
- ↓ Load CLAUDE.md (7kb)
416
- ├─ Alfred knows: project context, language settings, core directives
417
- ↓ User invokes /alfred:2-run
418
- ├─ Load CLAUDE-AGENTS-GUIDE.md (14kb)
419
- ├─ Alfred decides: "I need tdd-implementer agent"
420
- ├─ Load CLAUDE-RULES.md (17kb)
421
- ├─ Alfred checks: "TDD rules? TEST before CODE? TRUST gates?"
422
- ├─ Load CLAUDE-PRACTICES.md (8kb)
423
- ├─ Alfred references: "RED → GREEN → REFACTOR pattern"
424
- ↓ Implementation complete
425
- └─ Context cleaned up (only CLAUDE.md remains for next task)
426
- ```
427
-
428
- **Result**:
429
- - ✅ Session boots fast (only 7kb initial load)
430
- - ✅ Context stays clean (7kb → 7kb+14kb → 7kb+14kb+17kb as needed)
431
- - ✅ Each document has single responsibility (easier to maintain)
432
- - ✅ Developers know exactly where to find/modify specific guidance
395
+ | Document | Size | Purpose | When Alfred Reads It |
396
+ | -------------------------- | ----- | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
397
+ | **CLAUDE.md** | ~7kb | Alfred's identity, core directives, project metadata | At session start (bootstrap) |
398
+ | **CLAUDE-AGENTS-GUIDE.md** | ~14kb | Sub-agent roster (19 members), Skills distribution (55 packs), team structure | When selecting which agent to invoke |
399
+ | **CLAUDE-RULES.md** | ~17kb | Decision-making rules (Skill invocation, Interactive Questions, TAG validation), commit templates, TRUST 5 gates | During each decision point (e.g., when to ask user questions) |
400
+ | **CLAUDE-PRACTICES.md** | ~8kb | Practical workflows, context engineering (JIT retrieval), on-demand agent patterns, real examples | During implementation phase |
433
401
 
434
402
  ### Why This Structure Matters
435
403
 
436
- **For Developers**:
437
- 1. **CLAUDE.md**: Your project's working guide (language, settings, directives)
438
- 2. **CLAUDE-AGENTS-GUIDE.md**: "Who does what?" (agent selection logic)
439
- 3. **CLAUDE-RULES.md**: "How do we decide?" (decision frameworks, gates)
440
- 4. **CLAUDE-PRACTICES.md**: "Real examples" (practical patterns to follow)
404
+ **For Developers**: These documents define how Alfred interprets your requirements and orchestrates development. Understanding them helps you:
441
405
 
442
- Understanding this helps you:
443
- - Write clearer SPEC requirements that Alfred understands
444
- - Know which agent/Skill executes your request
445
- - Predict where Alfred might ask questions or apply TRUST verification
406
+ - Write clearer specifications that Alfred understands better
407
+ - Know which agent/Skill will be invoked for your request
408
+ - Understand decision points where Alfred might ask you questions
446
409
 
447
- **For AI (Context Efficiency)**:
448
- - **Phase 1** (Session Start): Minimal context footprint (7kb)
449
- - **Phase 2** (Planning): Load agent selection guide (total ~21kb)
450
- - **Phase 3** (Implementation): Load decision rules (~38kb)
451
- - **Phase 4** (Execution): Load practical patterns (~46kb)
452
- - **Between Tasks**: Unload unnecessary layers, keep CLAUDE.md active
410
+ **For AI**: Progressive disclosure means:
453
411
 
454
- 📚 **Learn More**: `.claude/CLAUDE.md` | `.claude/CLAUDE-AGENTS-GUIDE.md` | `.claude/CLAUDE-RULES.md` | `.claude/CLAUDE-PRACTICES.md`
412
+ - **Session Start**: Load only CLAUDE.md (7kb) minimal overhead
413
+ - **On-Demand**: Load CLAUDE-AGENTS-GUIDE.md, CLAUDE-RULES.md, CLAUDE-PRACTICES.md only when needed
414
+ - **Result**: Faster session boot, cleaner context, clear decision logic
455
415
 
456
416
  ### Example: What Happens When You Run `/alfred:2-run`
457
417
 
@@ -869,6 +829,40 @@ This issue has been **fixed** in v0.8.1+. If you're experiencing this:
869
829
  - Code now gracefully handles InvalidVersion exceptions
870
830
  - Added comprehensive unit tests for placeholder detection
871
831
 
832
+ #### Problem: UV Tool Upgrade Shows "Nothing to upgrade" Despite New Version
833
+
834
+ **Status**: Automatically fixed in v0.9.1+ with cache refresh retry
835
+
836
+ **Symptoms:**
837
+ - `moai-adk update` shows "Nothing to upgrade"
838
+ - PyPI has a newer version available
839
+ - Caused by stale UV cache metadata
840
+
841
+ **Automatic Fix (v0.9.1+):**
842
+ The system now automatically detects stale cache and retries:
843
+ 1. Detects "Nothing to upgrade" message
844
+ 2. Compares installed version vs PyPI latest version
845
+ 3. Clears UV cache: `uv cache clean moai-adk`
846
+ 4. Automatically retries upgrade
847
+ 5. Completes in a single command run
848
+
849
+ **Manual Workaround (if needed):**
850
+ ```bash
851
+ # Clear UV cache and retry
852
+ uv cache clean moai-adk && moai-adk update
853
+ ```
854
+
855
+ **Technical Details:**
856
+ - Root cause: UV caches PyPI metadata that can become outdated
857
+ - Detection: Compares version strings when "Nothing to upgrade" appears
858
+ - Retry limit: Maximum 1 retry to prevent infinite loops
859
+ - Timeout: 10 seconds for cache clear operation
860
+
861
+ **References:**
862
+ - SPEC: @SPEC:UPDATE-CACHE-FIX-001
863
+ - Implementation: @CODE:UPDATE-CACHE-FIX-001-001, @CODE:UPDATE-CACHE-FIX-001-002, @CODE:UPDATE-CACHE-FIX-001-003
864
+ - Tests: @TEST:UPDATE-CACHE-FIX-001
865
+
872
866
  ### Contributing Tests
873
867
 
874
868
  When adding new features, always include tests:
@@ -913,109 +907,19 @@ moai-adk update --check
913
907
 
914
908
  ## Core Workflow (0 → 3)
915
909
 
916
- Alfred iteratively develops projects with four commands, guided by the **4-Step Workflow Logic** for every user request.
910
+ Alfred iteratively develops projects with four commands.
917
911
 
918
912
  ```mermaid
919
913
  %%{init: {'theme':'neutral'}}%%
920
914
  graph TD
921
- Start([User Request]) --> Intent[Step 1: Intent Understanding<br/>Clarify ambiguity if needed]
922
- Intent --> Plan[Step 2: Plan Creation<br/>Decompose tasks + identify order]
923
- Plan --> Execute[Step 3: Task Execution<br/>TodoWrite: pending → in_progress → completed]
924
- Execute --> Report[Step 4: Report & Commit<br/>Document decisions + create git commits]
925
- Report --> Init[0. Init<br/>/alfred:0-project]
926
- Init --> PlanPhase[1. Plan & SPEC<br/>/alfred:1-plan]
927
- PlanPhase --> Run[2. Run & TDD<br/>/alfred:2-run]
915
+ Start([User Request]) --> Init[0. Init<br/>/alfred:0-project]
916
+ Init --> Plan[1. Plan & SPEC<br/>/alfred:1-plan]
917
+ Plan --> Run[2. Run & TDD<br/>/alfred:2-run]
928
918
  Run --> Sync[3. Sync & Docs<br/>/alfred:3-sync]
929
- Sync --> PlanPhase
919
+ Sync --> Plan
930
920
  Sync -.-> End([Release])
931
921
  ```
932
922
 
933
- ### Alfred's 4-Step Workflow Logic
934
-
935
- Every user request follows this systematic process:
936
-
937
- #### Step 1: Intent Understanding
938
- - **Goal**: Clarify user intent before any action
939
- - **Action**: Evaluate request clarity
940
- - **HIGH clarity**: Technical stack, requirements, scope all specified → Skip to Step 2
941
- - **MEDIUM/LOW clarity**: Multiple interpretations possible → Invoke `AskUserQuestion`
942
- - **Outcome**: Clear, unambiguous intent confirmed with user
943
-
944
- #### Step 2: Plan Creation
945
- - **Goal**: Analyze tasks and identify execution strategy
946
- - **Action**: Invoke Plan Agent to:
947
- - Decompose tasks into structured steps
948
- - Identify dependencies between tasks
949
- - Determine single vs parallel execution opportunities
950
- - Estimate work scope and files affected
951
- - **Outcome**: Structured task breakdown for TodoWrite initialization
952
-
953
- #### Step 3: Task Execution
954
- - **Goal**: Execute tasks with transparent progress tracking
955
- - **Action**:
956
- 1. Initialize TodoWrite with all pending tasks
957
- 2. For each task:
958
- - Update status: pending → **in_progress** (exactly ONE at a time)
959
- - Execute task (call appropriate sub-agent or tool)
960
- - Update status: in_progress → **completed** (immediately after)
961
- 3. Handle blockers: Keep task in_progress, create new blocking task
962
- - **Outcome**: All tasks completed with verified progress
963
-
964
- #### Step 4: Report & Commit
965
- - **Goal**: Document work and create git history
966
- - **Action**:
967
- - **Report Generation**: ONLY if user explicitly requested
968
- - ❌ Prohibited: Auto-generate reports without request
969
- - ✅ Allowed: `.moai/docs/`, `.moai/reports/`, `.moai/specs/`
970
- - **Git Commit**: ALWAYS create commits
971
- - Call git-manager for all Git operations
972
- - TDD commits: RED → GREEN → REFACTOR → DOCS
973
- - Include Alfred co-authorship
974
- - **Outcome**: Complete audit trail with documented decisions
975
-
976
- ### How 4-Step Workflow Maps to Phase 0-3 Commands
977
-
978
- The **4-Step Workflow Logic** is universal and applies to **every command execution**. Here's how it manifests in each Phase:
979
-
980
- #### Phase 0: Project Initialization (`/alfred:0-project`)
981
- ```
982
- Step 1: Intent → Clarify project needs (language, framework, team structure)
983
- Step 2: Plan → Design `.moai/` structure, detect tech stack
984
- Step 3: Run → Initialize config, deploy Skills, set up project template
985
- Step 4: Report → Create product/structure/tech.md documentation
986
- ```
987
-
988
- #### Phase 1: Planning (`/alfred:1-plan <description>`)
989
- ```
990
- Step 1: Intent → Parse requirements, clarify SPEC scope
991
- Step 2: Plan → Decompose into EARS statements, identify acceptance criteria
992
- Step 3: Run → Write SPEC document, create Plan Board, generate GitHub Issue
993
- Step 4: Report → Create feature branch, commit SPEC with TAG
994
- ```
995
-
996
- #### Phase 2: TDD Implementation (`/alfred:2-run <SPEC-ID>`)
997
- ```
998
- Step 1: Intent → Understand SPEC requirements and test strategy
999
- Step 2: Plan → Decompose SPEC into 3-step TDD cycle (RED/GREEN/REFACTOR)
1000
- Step 3: Run → Execute TDD: 🔴 RED test → 🟢 GREEN implementation → ♻️ REFACTOR quality
1001
- Step 4: Report → Verify TRUST 5 gates, commit code with @TEST/@CODE TAGs
1002
- ```
1003
-
1004
- #### Phase 3: Sync & Docs (`/alfred:3-sync`)
1005
- ```
1006
- Step 1: Intent → Understand what documentation needs synchronization
1007
- Step 2: Plan → Identify TAG chains, detect orphans, plan doc updates
1008
- Step 3: Run → Sync docs, validate TAGs, update README/CHANGELOG
1009
- Step 4: Report → Create sync report, auto-close SPEC Issues, ready PR for merge
1010
- ```
1011
-
1012
- **Key Insight**: Each command (0, 1, 2, 3) follows the same **4-Step Logic**. This ensures:
1013
- - ✅ Consistent decision-making across all phases
1014
- - ✅ Clear progression: understand → plan → execute → document
1015
- - ✅ Predictable workflow that teams can rely on
1016
-
1017
- ---
1018
-
1019
923
  ### 0. INIT — Project Preparation
1020
924
 
1021
925
  - Questions about project introduction, target, language, mode (locale)
@@ -1040,19 +944,18 @@ Step 4: Report → Create sync report, auto-close SPEC Issues, ready PR for merg
1040
944
  - Sync Living Document, README, CHANGELOG, etc.
1041
945
  - Validate TAG chain and recover orphan TAGs
1042
946
  - Generate Sync Report, transition Draft → Ready for Review, support `--auto-merge` option
1043
- - **Auto-close related SPEC Issues** (Closes #XX reference in commit message)
1044
947
 
1045
948
  ---
1046
949
 
1047
950
  ## Command Cheat Sheet
1048
951
 
1049
- | Command | What It Does | Key Outputs |
1050
- |---------|-------------|------------|
1051
- | `/alfred:0-project` | **Initialize project**: gather metadata, detect tech stack, deploy 55 Claude Skills, set up `.moai/` directory | `.moai/config.json`, `.moai/project/*`, `product/structure/tech.md` |
1052
- | `/alfred:1-plan <desc>` | **Write SPEC** in EARS format, create Plan Board, auto-generate acceptance criteria, create feature branch | `.moai/specs/SPEC-*/spec.md`, plan board, acceptance criteria, GitHub Issue |
1053
- | `/alfred:2-run <ID>` | **Execute TDD cycle**: 🔴 RED (failing test) 🟢 GREEN (minimal implementation) → ♻️ REFACTOR (cleanup) → quality gates | `tests/`, `src/` with `@TEST:ID` and `@CODE:ID` tags, test report |
1054
- | `/alfred:3-sync` | **Synchronize Living Docs**: sync README, docs, CHANGELOG; validate TAG chains; auto-close SPEC Issues on PR merge | `docs/`, `.moai/reports/`, `@DOC:ID` tags, Issue closed |
1055
- | `/alfred:9-feedback` | **Create GitHub Issues** interactively (workflow: issue type → title → description → priority/labels) | GitHub Issue with proper labels, priority, auto-assignable |
952
+ | Command | What it does | Key Outputs |
953
+ | ------------------------------ | ----------------------------------------------------------------- | ------------------------------------------------------------------ |
954
+ | `/alfred:0-project` | Collect project description, create config/docs, recommend Skills | `.moai/config.json`, `.moai/project/*`, initial report |
955
+ | `/alfred:1-plan <description>` | Analyze requirements, draft SPEC, write Plan Board | `.moai/specs/SPEC-*/spec.md`, plan/acceptance docs, feature branch |
956
+ | `/alfred:2-run <SPEC-ID>` | Execute TDD, test/implement/refactor, verify quality | `tests/`, `src/` implementation, quality report, TAG connection |
957
+ | `/alfred:3-sync` | Sync docs/README/CHANGELOG, organize TAG/PR status | `docs/`, `.moai/reports/sync-report.md`, Ready PR |
958
+ | `/alfred:9-feedback` | Interactively create GitHub Issues (type → title → description → priority) | GitHub Issue with auto labels, priority, URL |
1056
959
 
1057
960
  > ❗ All commands maintain **Phase 0 (optional) → Phase 1 → Phase 2 → Phase 3** cycle structure. Alfred automatically reports execution status and next-step suggestions.
1058
961
  >
@@ -1074,69 +977,6 @@ When you create a SPEC document using `/alfred:1-plan` and push it to a feature
1074
977
  4. **PR Comment** is added with a link to the created issue
1075
978
  5. **Labels** are automatically applied based on priority (critical, high, medium, low)
1076
979
 
1077
- ### Automatic Issue Closure & Lifecycle Synchronization
1078
-
1079
- When you complete implementation and run `/alfred:3-sync`, the system manages the complete SPEC-to-Issue lifecycle:
1080
-
1081
- #### Issue Lifecycle Stages
1082
-
1083
- | Stage | SPEC Status | GitHub Issue Status | Action |
1084
- |-------|------------|-------------------|--------|
1085
- | **1. Creation** | `draft` | `open` + `spec` label | SPEC created, Issue auto-created |
1086
- | **2. Review** | `in-review` | `open` + `planning` label | Awaiting SPEC approval |
1087
- | **3. Implementation** | `in-progress` | `open` + `in_progress` label | `/alfred:2-run` execution |
1088
- | **4. Completion** | `completed` | Closing... | `/alfred:3-sync` adds `Closes #XX` |
1089
- | **5. Release** | `stable` | `closed` ✅ | PR merges → Issue auto-closes |
1090
-
1091
- #### Auto-Close Workflow Detail
1092
-
1093
- When you run `/alfred:3-sync` to finalize implementation:
1094
-
1095
- 1. **SPEC Issue Detection**: System scans SPEC document for GitHub Issue number
1096
- 2. **Status Validation**: Confirms SPEC status is `completed` or `stable`
1097
- 3. **Closes Reference Generation**: Automatically generates `Closes #XX` in commit message
1098
- 4. **Smart Linking**: Issues PR to SPEC Issue with correlation
1099
- 5. **Auto-Close on Merge**: When PR merges to main branch:
1100
- - GitHub reads `Closes #XX` reference in commit message
1101
- - Automatically transitions Issue to `closed` status
1102
- - SPEC Issue and GitHub Issue statuses now match
1103
-
1104
- **Complete Example Workflow:**
1105
- ```
1106
- Day 1: Create SPEC
1107
- ├─ /alfred:1-plan "User Authentication"
1108
- ├─ SPEC-AUTH-001 created in .moai/specs/SPEC-AUTH-001/
1109
- └─ GitHub Issue #45 auto-created (status: open)
1110
-
1111
- Day 2: Implement Feature
1112
- ├─ /alfred:2-run AUTH-001
1113
- ├─ 🔴 RED: Add failing test @TEST:AUTH-001
1114
- ├─ 🟢 GREEN: Implement minimal solution @CODE:AUTH-001
1115
- ├─ ♻️ REFACTOR: Improve quality per TRUST 5
1116
- ├─ GitHub Issue #45 status: open, developer assignment active
1117
-
1118
- Day 3: Finalize & Sync
1119
- ├─ /alfred:3-sync
1120
- ├─ SPEC status: draft → completed → stable
1121
- ├─ Commit message: "🔖 RELEASE: v0.8.3 ... Closes #45"
1122
- ├─ PR created with automatic Issue linking
1123
- └─ PR merges to main → Issue #45 automatically closed ✅
1124
-
1125
- Result:
1126
- - ✅ SPEC-AUTH-001 fully implemented
1127
- - ✅ All tests passing (85%+ coverage)
1128
- - ✅ Documentation synchronized
1129
- - ✅ GitHub Issue #45 closed
1130
- - ✅ Complete audit trail via git history
1131
- ```
1132
-
1133
- #### Benefits of Automatic Closure
1134
-
1135
- - **Single Source of Truth**: SPEC document status always matches GitHub Issue status
1136
- - **No Manual Updates**: No need to manually close issues (GitHub does it automatically)
1137
- - **Traceable History**: Complete record in git commits shows SPEC→Issue→Close chain
1138
- - **Team Coordination**: Everyone sees status via GitHub, no separate tracking system needed
1139
-
1140
980
  ### What Gets Synchronized
1141
981
 
1142
982
  **From SPEC to GitHub Issue:**
@@ -1381,8 +1221,6 @@ MoAI-ADK consists of 5 key concepts. Each concept connects to the others, and to
1381
1221
  - ✅ SPEC-based test cases (what to test is already defined)
1382
1222
  - ✅ When requirements change, track all affected code with `@SPEC:ID` TAG
1383
1223
 
1384
- 📚 **Learn More**: `.moai/specs/` | [EARS Syntax Guide](./CLAUDE-RULES.md#ears-syntax) | [SPEC Examples](./CLAUDE-PRACTICES.md#spec-examples)
1385
-
1386
1224
  ---
1387
1225
 
1388
1226
  ### Key Concept 2: TDD (Test-Driven Development)
@@ -1419,8 +1257,6 @@ MoAI-ADK consists of 5 key concepts. Each concept connects to the others, and to
1419
1257
  - ✅ Refactoring confidence (always verifiable with tests)
1420
1258
  - ✅ Clear Git history (trace RED → GREEN → REFACTOR process)
1421
1259
 
1422
- 📚 **Learn More**: [TDD Workflow](./CLAUDE-PRACTICES.md#tdd-workflow) | [Test Examples](./CLAUDE-PRACTICES.md#test-examples) | [Quality Gates](./CLAUDE-RULES.md#trust-5-principles)
1423
-
1424
1260
  ---
1425
1261
 
1426
1262
  ### Key Concept 3: @TAG System
@@ -1447,36 +1283,6 @@ MoAI-ADK consists of 5 key concepts. Each concept connects to the others, and to
1447
1283
  - USER-001, USER-002...
1448
1284
  - Once assigned, **never change**
1449
1285
 
1450
- **Advanced TAG Usage: Multi-Component TAGs**
1451
-
1452
- For complex features with multiple components, use sub-tags:
1453
-
1454
- ```
1455
- @SPEC:AUTH-001 (complete requirements)
1456
-
1457
- @TEST:AUTH-001 (test suite)
1458
- ├─ @TEST:AUTH-001:login (login flow tests)
1459
- ├─ @TEST:AUTH-001:token (token refresh tests)
1460
- └─ @TEST:AUTH-001:session (session management tests)
1461
-
1462
- @CODE:AUTH-001 (implementation)
1463
- ├─ @CODE:AUTH-001:service (authentication service)
1464
- ├─ @CODE:AUTH-001:model (User/Token models)
1465
- ├─ @CODE:AUTH-001:middleware (auth middleware)
1466
- └─ @CODE:AUTH-001:repository (database access layer)
1467
-
1468
- @DOC:AUTH-001 (documentation)
1469
- ├─ @DOC:AUTH-001:api (API documentation)
1470
- └─ @DOC:AUTH-001:guide (integration guide)
1471
- ```
1472
-
1473
- **Component TAG Rules**:
1474
- - Format: `@TAG:ID` or `@TAG:ID:component`
1475
- - Component names are optional but **highly recommended** for clarity
1476
- - All components share the same ID (never change ID once assigned)
1477
- - When querying: `rg '@TAG:AUTH-001' -n` finds all components
1478
- - Helps organize large features without creating new IDs
1479
-
1480
1286
  **How to Use?** When requirements change:
1481
1287
 
1482
1288
  ```bash
@@ -1495,8 +1301,6 @@ rg '@TAG:AUTH-001' -n
1495
1301
  - ✅ Instantly identify all affected code during refactoring
1496
1302
  - ✅ Code remains understandable 3 months later (trace TAG → SPEC)
1497
1303
 
1498
- 📚 **Learn More**: [TAG System Guide](./CLAUDE-RULES.md#tag-system) | [TAG Validation](./CLAUDE-PRACTICES.md#tag-validation) | [Orphan Detection](./CLAUDE-RULES.md#orphan-tag-detection)
1499
-
1500
1304
  ---
1501
1305
 
1502
1306
  ### Key Concept 4: TRUST 5 Principles
@@ -1542,8 +1346,6 @@ rg '@TAG:AUTH-001' -n
1542
1346
  - ✅ Entire team develops with same standards
1543
1347
  - ✅ Fewer bugs, prevent security vulnerabilities in advance
1544
1348
 
1545
- 📚 **Learn More**: [TRUST 5 Validation](./CLAUDE-RULES.md#trust-5-principles) | [Quality Gates](./CLAUDE-RULES.md#quality-gates) | [Security Best Practices](./CLAUDE-RULES.md#security-guidelines)
1546
-
1547
1349
  ---
1548
1350
 
1549
1351
  ### Key Concept 5: Alfred SuperAgent
@@ -1554,40 +1356,10 @@ rg '@TAG:AUTH-001' -n
1554
1356
 
1555
1357
  **Agent Composition**:
1556
1358
 
1557
- #### 1. Alfred SuperAgent (1)
1558
- - **🎩 Alfred**: Overall orchestration, workflow management, team coordination
1559
-
1560
- #### 2. Core Sub-agents (10)
1561
- Specialized experts handling SPEC → TDD → SYNC pipeline:
1562
-
1563
- | Agent | Role | Responsibility |
1564
- |-------|------|-----------------|
1565
- | **📋 project-manager** | Project Initialization | Setup `.moai/` structure, tech stack detection, Skills deployment |
1566
- | **🏗️ spec-builder** | SPEC Authoring | Write EARS-format specifications, acceptance criteria |
1567
- | **💎 tdd-implementer** | TDD Implementation | RED → GREEN → REFACTOR cycle, test-first development |
1568
- | **📖 doc-syncer** | Documentation Sync | Living docs, README sync, changelog management |
1569
- | **🏷️ tag-agent** | TAG Validation | @TAG chain verification, orphan detection, traceability |
1570
- | **🚀 git-manager** | Git Workflow | Branch management, commits, PR automation, releases |
1571
- | **🔬 debug-helper** | Error Analysis | Stack trace parsing, error diagnosis, fix suggestions |
1572
- | **✅ trust-checker** | TRUST Verification | Test coverage (85%+), code quality, security checks |
1573
- | **🛠️ cc-manager** | Claude Code Config | Session settings, tool permissions, hook management |
1574
- | **📊 implementation-planner** | Strategy Planning | Task decomposition, dependency analysis, parallelization |
1575
-
1576
- #### 3. Specialist Sub-agents (6)
1577
- Domain-specific experts:
1578
-
1579
- - **Language Detection**: Auto-detect Python, TS, Go, Rust, Java from package config
1580
- - **Skills Factory**: Research and integrate new Claude Skills
1581
- - **Template Managers**: Project scaffolding, documentation templates
1582
- - **Quality Gate**: Code review, linting, type checking orchestration
1583
- - **Context Optimizer**: Memory management, JIT context loading
1584
- - **Interactive Questions**: TUI-based user input for AskUserQuestion
1585
-
1586
- #### 4. Built-in Claude Agents (2)
1587
- General-purpose capabilities:
1588
-
1589
- - **General Q&A**: Answer questions about coding, architecture, debugging
1590
- - **Codebase Exploration**: Fast grep/glob searches, code pattern analysis
1359
+ - **Alfred SuperAgent**: Overall orchestration (1)
1360
+ - **Core Sub-agents**: Specialized tasks like SPEC writing, TDD implementation, documentation sync (10)
1361
+ - **Zero-project Specialists**: Project initialization, language detection, etc. (6)
1362
+ - **Built-in Agents**: General questions, codebase exploration (2)
1591
1363
 
1592
1364
  **55 Claude Skills**:
1593
1365
 
@@ -2158,42 +1930,7 @@ Or when TAGs are missing:
2158
1930
 
2159
1931
  **Why It Matters**: Prevents data loss from mistakes and ensures @TAG traceability. You can always restore from the checkpoint if something goes wrong.
2160
1932
 
2161
- #### 3. PostToolUse (After Tool Execution)
2162
-
2163
- **Triggers**: After executing file edits, code changes, or MultiEdit operations
2164
- **Purpose**: Automatically run tests to verify changes didn't break anything
2165
-
2166
- **Auto-Test Execution**:
2167
-
2168
- Supported Languages (9 total):
2169
- - 🐍 **Python**: `pytest` with coverage report
2170
- - 📘 **TypeScript/JavaScript**: `Vitest` or `Jest`
2171
- - 🐹 **Go**: `go test` with `-v` flag
2172
- - 🦀 **Rust**: `cargo test` with `--all`
2173
- - ☕ **Java**: `JUnit` via Maven/Gradle
2174
- - 🎯 **Kotlin**: `JUnit` with Gradle
2175
- - 🍎 **Swift**: `XCTest` via Xcode
2176
- - 🎨 **Dart**: `flutter test`
2177
-
2178
- **What You See**:
2179
-
2180
- ```
2181
- ✅ Tests passed (47 passed in 2.3s)
2182
- Coverage: 87% (improved from 84%)
2183
- ```
2184
-
2185
- Or if tests fail:
2186
-
2187
- ```
2188
- ❌ Test failures detected
2189
- ├─ src/auth/service.test.ts:23
2190
- │ Expected token.length > 0
2191
- └─ Revert to previous version? (y/n)
2192
- ```
2193
-
2194
- **Why It Matters**: Instant feedback on code quality. Catches breaking changes immediately before you commit.
2195
-
2196
- #### 4. UserPromptSubmit (Prompt Input)
1933
+ #### 3. UserPromptSubmit (Prompt Input)
2197
1934
 
2198
1935
  **Triggers**: When you submit a prompt to Claude
2199
1936
  **Purpose**: JIT (Just-In-Time) context loading—automatically add relevant files
@@ -2207,7 +1944,7 @@ Or if tests fail:
2207
1944
 
2208
1945
  **Why It Matters**: Saves time and ensures Claude has all the relevant context for your request.
2209
1946
 
2210
- #### 5. SessionEnd (Session Cleanup)
1947
+ #### 4. SessionEnd (Session Cleanup)
2211
1948
 
2212
1949
  **Triggers**: When you close your Claude Code session
2213
1950
  **Purpose**: Cleanup tasks and state preservation
@@ -2296,7 +2033,6 @@ If you need to temporarily disable hooks, edit `.claude/settings.json`:
2296
2033
 
2297
2034
  | Version | Key Features | Date |
2298
2035
  | ----------- | ------------------------------------------------------------------------------------------------ | ---------- |
2299
- | **v0.8.3** | 🔄 4-Step Workflow Logic (Intent → Plan → Execute → Report) + AI decision framework | 2025-10-30 |
2300
2036
  | **v0.8.2** | 📖 EARS terminology update: "Constraints" → "Unwanted Behaviors" for clarity | 2025-10-29 |
2301
2037
  | **v0.8.1** | 🔄 Command rename: `/alfred:9-help` → `/alfred:9-feedback` + User feedback workflow improvements | 2025-10-28 |
2302
2038
  | **v0.8.0** | 🏷️ @DOC TAG auto-generation system + SessionStart version check enhancement | 2025-10-27 |