moai-adk 0.11.0__py3-none-any.whl → 0.11.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.

Files changed (265) hide show
  1. moai_adk/core/issue_creator.py +2 -2
  2. moai_adk/core/project/detector.py +285 -12
  3. moai_adk/templates/.claude/agents/alfred/cc-manager.md +316 -0
  4. moai_adk/templates/.claude/agents/alfred/debug-helper.md +208 -0
  5. moai_adk/templates/.claude/agents/alfred/doc-syncer.md +214 -0
  6. moai_adk/templates/.claude/agents/alfred/git-manager.md +406 -0
  7. moai_adk/templates/.claude/agents/alfred/implementation-planner.md +350 -0
  8. moai_adk/templates/.claude/agents/alfred/project-manager.md +273 -0
  9. moai_adk/templates/.claude/agents/alfred/quality-gate.md +343 -0
  10. moai_adk/templates/.claude/agents/alfred/skill-factory.md +865 -0
  11. moai_adk/templates/.claude/agents/alfred/spec-builder.md +287 -0
  12. moai_adk/templates/.claude/agents/alfred/tag-agent.md +287 -0
  13. moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +326 -0
  14. moai_adk/templates/.claude/agents/alfred/trust-checker.md +375 -0
  15. moai_adk/templates/.claude/commands/alfred/0-project.md +1187 -0
  16. moai_adk/templates/.claude/commands/alfred/1-plan.md +734 -0
  17. moai_adk/templates/.claude/commands/alfred/2-run.md +551 -0
  18. moai_adk/templates/.claude/commands/alfred/3-sync.md +689 -0
  19. moai_adk/templates/.claude/commands/alfred/9-feedback.md +149 -0
  20. moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +208 -0
  21. moai_adk/templates/.claude/hooks/alfred/core/project.py +744 -0
  22. moai_adk/templates/.claude/hooks/alfred/core/timeout.py +136 -0
  23. moai_adk/templates/.claude/hooks/alfred/core/ttl_cache.py +109 -0
  24. moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +198 -0
  25. moai_adk/templates/.claude/hooks/alfred/notification__handle_events.py +97 -0
  26. moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py +97 -0
  27. moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py +103 -0
  28. moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py +97 -0
  29. moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py +97 -0
  30. moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py +170 -0
  31. moai_adk/templates/.claude/hooks/alfred/shared/core/checkpoint.py +271 -0
  32. moai_adk/templates/.claude/hooks/alfred/shared/core/context.py +67 -0
  33. moai_adk/templates/.claude/hooks/alfred/shared/core/project.py +749 -0
  34. moai_adk/templates/.claude/hooks/alfred/shared/core/tags.py +230 -0
  35. moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +198 -0
  36. moai_adk/templates/.claude/hooks/alfred/shared/handlers/__init__.py +21 -0
  37. moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py +156 -0
  38. moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py +174 -0
  39. moai_adk/templates/.claude/hooks/alfred/shared/handlers/tool.py +87 -0
  40. moai_adk/templates/.claude/hooks/alfred/shared/handlers/user.py +61 -0
  41. moai_adk/templates/.claude/hooks/alfred/stop__handle_interrupt.py +97 -0
  42. moai_adk/templates/.claude/hooks/alfred/subagent_stop__handle_subagent_end.py +97 -0
  43. moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py +111 -0
  44. moai_adk/templates/.claude/hooks/alfred/utils/__init__.py +1 -0
  45. moai_adk/templates/.claude/hooks/alfred/utils/timeout.py +136 -0
  46. moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +640 -0
  47. moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +696 -0
  48. moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +474 -0
  49. moai_adk/templates/.claude/settings.json +144 -0
  50. moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/SKILL.md +113 -0
  51. moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/examples.md +29 -0
  52. moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/reference.md +28 -0
  53. moai_adk/templates/.claude/skills/moai-alfred-git-workflow/SKILL.md +122 -0
  54. moai_adk/templates/.claude/skills/moai-alfred-git-workflow/examples.md +29 -0
  55. moai_adk/templates/.claude/skills/moai-alfred-git-workflow/reference.md +29 -0
  56. moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/SKILL.md +237 -0
  57. moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/examples.md +615 -0
  58. moai_adk/templates/.claude/skills/moai-alfred-interactive-questions/reference.md +653 -0
  59. moai_adk/templates/.claude/skills/moai-alfred-language-detection/SKILL.md +113 -0
  60. moai_adk/templates/.claude/skills/moai-alfred-language-detection/examples.md +29 -0
  61. moai_adk/templates/.claude/skills/moai-alfred-language-detection/reference.md +28 -0
  62. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/SKILL.md +113 -0
  63. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/examples.md +29 -0
  64. moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/reference.md +28 -0
  65. moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/SKILL.md +113 -0
  66. moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/examples.md +29 -0
  67. moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/reference.md +28 -0
  68. moai_adk/templates/.claude/skills/moai-alfred-trust-validation/SKILL.md +113 -0
  69. moai_adk/templates/.claude/skills/moai-alfred-trust-validation/examples.md +29 -0
  70. moai_adk/templates/.claude/skills/moai-alfred-trust-validation/reference.md +28 -0
  71. moai_adk/templates/.claude/skills/moai-cc-agents/SKILL.md +269 -0
  72. moai_adk/templates/.claude/skills/moai-cc-agents/templates/agent-template.md +32 -0
  73. moai_adk/templates/.claude/skills/moai-cc-claude-md/SKILL.md +298 -0
  74. moai_adk/templates/.claude/skills/moai-cc-claude-md/templates/CLAUDE-template.md +26 -0
  75. moai_adk/templates/.claude/skills/moai-cc-commands/SKILL.md +307 -0
  76. moai_adk/templates/.claude/skills/moai-cc-commands/templates/command-template.md +21 -0
  77. moai_adk/templates/.claude/skills/moai-cc-hooks/SKILL.md +252 -0
  78. moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/pre-bash-check.sh +19 -0
  79. moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/preserve-permissions.sh +19 -0
  80. moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/validate-bash-command.py +24 -0
  81. moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/SKILL.md +199 -0
  82. moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/templates/settings-mcp-template.json +39 -0
  83. moai_adk/templates/.claude/skills/moai-cc-memory/SKILL.md +316 -0
  84. moai_adk/templates/.claude/skills/moai-cc-memory/templates/session-summary-template.md +18 -0
  85. moai_adk/templates/.claude/skills/moai-cc-settings/SKILL.md +263 -0
  86. moai_adk/templates/.claude/skills/moai-cc-settings/templates/settings-complete-template.json +30 -0
  87. moai_adk/templates/.claude/skills/moai-cc-skills/SKILL.md +291 -0
  88. moai_adk/templates/.claude/skills/moai-cc-skills/templates/SKILL-template.md +15 -0
  89. moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +290 -0
  90. moai_adk/templates/.claude/skills/moai-domain-backend/examples.md +1633 -0
  91. moai_adk/templates/.claude/skills/moai-domain-backend/reference.md +660 -0
  92. moai_adk/templates/.claude/skills/moai-domain-cli-tool/SKILL.md +123 -0
  93. moai_adk/templates/.claude/skills/moai-domain-cli-tool/examples.md +29 -0
  94. moai_adk/templates/.claude/skills/moai-domain-cli-tool/reference.md +30 -0
  95. moai_adk/templates/.claude/skills/moai-domain-data-science/SKILL.md +123 -0
  96. moai_adk/templates/.claude/skills/moai-domain-data-science/examples.md +29 -0
  97. moai_adk/templates/.claude/skills/moai-domain-data-science/reference.md +30 -0
  98. moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +123 -0
  99. moai_adk/templates/.claude/skills/moai-domain-database/examples.md +29 -0
  100. moai_adk/templates/.claude/skills/moai-domain-database/reference.md +30 -0
  101. moai_adk/templates/.claude/skills/moai-domain-devops/SKILL.md +124 -0
  102. moai_adk/templates/.claude/skills/moai-domain-devops/examples.md +29 -0
  103. moai_adk/templates/.claude/skills/moai-domain-devops/reference.md +31 -0
  104. moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +124 -0
  105. moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md +29 -0
  106. moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md +31 -0
  107. moai_adk/templates/.claude/skills/moai-domain-ml/SKILL.md +123 -0
  108. moai_adk/templates/.claude/skills/moai-domain-ml/examples.md +29 -0
  109. moai_adk/templates/.claude/skills/moai-domain-ml/reference.md +30 -0
  110. moai_adk/templates/.claude/skills/moai-domain-mobile-app/SKILL.md +123 -0
  111. moai_adk/templates/.claude/skills/moai-domain-mobile-app/examples.md +29 -0
  112. moai_adk/templates/.claude/skills/moai-domain-mobile-app/reference.md +30 -0
  113. moai_adk/templates/.claude/skills/moai-domain-security/SKILL.md +123 -0
  114. moai_adk/templates/.claude/skills/moai-domain-security/examples.md +29 -0
  115. moai_adk/templates/.claude/skills/moai-domain-security/reference.md +30 -0
  116. moai_adk/templates/.claude/skills/moai-domain-web-api/SKILL.md +123 -0
  117. moai_adk/templates/.claude/skills/moai-domain-web-api/examples.md +29 -0
  118. moai_adk/templates/.claude/skills/moai-domain-web-api/reference.md +30 -0
  119. moai_adk/templates/.claude/skills/moai-essentials-debug/SKILL.md +303 -0
  120. moai_adk/templates/.claude/skills/moai-essentials-debug/examples.md +1064 -0
  121. moai_adk/templates/.claude/skills/moai-essentials-debug/reference.md +1047 -0
  122. moai_adk/templates/.claude/skills/moai-essentials-perf/SKILL.md +113 -0
  123. moai_adk/templates/.claude/skills/moai-essentials-perf/examples.md +29 -0
  124. moai_adk/templates/.claude/skills/moai-essentials-perf/reference.md +28 -0
  125. moai_adk/templates/.claude/skills/moai-essentials-refactor/SKILL.md +113 -0
  126. moai_adk/templates/.claude/skills/moai-essentials-refactor/examples.md +29 -0
  127. moai_adk/templates/.claude/skills/moai-essentials-refactor/reference.md +28 -0
  128. moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md +113 -0
  129. moai_adk/templates/.claude/skills/moai-essentials-review/examples.md +29 -0
  130. moai_adk/templates/.claude/skills/moai-essentials-review/reference.md +28 -0
  131. moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +116 -0
  132. moai_adk/templates/.claude/skills/moai-foundation-ears/examples.md +29 -0
  133. moai_adk/templates/.claude/skills/moai-foundation-ears/reference.md +28 -0
  134. moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md +122 -0
  135. moai_adk/templates/.claude/skills/moai-foundation-git/examples.md +29 -0
  136. moai_adk/templates/.claude/skills/moai-foundation-git/reference.md +29 -0
  137. moai_adk/templates/.claude/skills/moai-foundation-langs/SKILL.md +113 -0
  138. moai_adk/templates/.claude/skills/moai-foundation-langs/examples.md +29 -0
  139. moai_adk/templates/.claude/skills/moai-foundation-langs/reference.md +28 -0
  140. moai_adk/templates/.claude/skills/moai-foundation-specs/SKILL.md +113 -0
  141. moai_adk/templates/.claude/skills/moai-foundation-specs/examples.md +29 -0
  142. moai_adk/templates/.claude/skills/moai-foundation-specs/reference.md +28 -0
  143. moai_adk/templates/.claude/skills/moai-foundation-tags/SKILL.md +113 -0
  144. moai_adk/templates/.claude/skills/moai-foundation-tags/examples.md +29 -0
  145. moai_adk/templates/.claude/skills/moai-foundation-tags/reference.md +28 -0
  146. moai_adk/templates/.claude/skills/moai-foundation-trust/SKILL.md +307 -0
  147. moai_adk/templates/.claude/skills/moai-foundation-trust/examples.md +0 -0
  148. moai_adk/templates/.claude/skills/moai-foundation-trust/reference.md +1099 -0
  149. moai_adk/templates/.claude/skills/moai-lang-c/SKILL.md +124 -0
  150. moai_adk/templates/.claude/skills/moai-lang-c/examples.md +29 -0
  151. moai_adk/templates/.claude/skills/moai-lang-c/reference.md +31 -0
  152. moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +124 -0
  153. moai_adk/templates/.claude/skills/moai-lang-cpp/examples.md +29 -0
  154. moai_adk/templates/.claude/skills/moai-lang-cpp/reference.md +31 -0
  155. moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +123 -0
  156. moai_adk/templates/.claude/skills/moai-lang-csharp/examples.md +29 -0
  157. moai_adk/templates/.claude/skills/moai-lang-csharp/reference.md +30 -0
  158. moai_adk/templates/.claude/skills/moai-lang-dart/SKILL.md +123 -0
  159. moai_adk/templates/.claude/skills/moai-lang-dart/examples.md +29 -0
  160. moai_adk/templates/.claude/skills/moai-lang-dart/reference.md +30 -0
  161. moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +124 -0
  162. moai_adk/templates/.claude/skills/moai-lang-go/examples.md +29 -0
  163. moai_adk/templates/.claude/skills/moai-lang-go/reference.md +31 -0
  164. moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +124 -0
  165. moai_adk/templates/.claude/skills/moai-lang-java/examples.md +29 -0
  166. moai_adk/templates/.claude/skills/moai-lang-java/reference.md +31 -0
  167. moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +125 -0
  168. moai_adk/templates/.claude/skills/moai-lang-javascript/examples.md +29 -0
  169. moai_adk/templates/.claude/skills/moai-lang-javascript/reference.md +32 -0
  170. moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +124 -0
  171. moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md +29 -0
  172. moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md +31 -0
  173. moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +123 -0
  174. moai_adk/templates/.claude/skills/moai-lang-php/examples.md +29 -0
  175. moai_adk/templates/.claude/skills/moai-lang-php/reference.md +30 -0
  176. moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +431 -0
  177. moai_adk/templates/.claude/skills/moai-lang-python/examples.md +624 -0
  178. moai_adk/templates/.claude/skills/moai-lang-python/reference.md +316 -0
  179. moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +123 -0
  180. moai_adk/templates/.claude/skills/moai-lang-r/examples.md +29 -0
  181. moai_adk/templates/.claude/skills/moai-lang-r/reference.md +30 -0
  182. moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +124 -0
  183. moai_adk/templates/.claude/skills/moai-lang-ruby/examples.md +29 -0
  184. moai_adk/templates/.claude/skills/moai-lang-ruby/reference.md +31 -0
  185. moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +124 -0
  186. moai_adk/templates/.claude/skills/moai-lang-rust/examples.md +29 -0
  187. moai_adk/templates/.claude/skills/moai-lang-rust/reference.md +31 -0
  188. moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +123 -0
  189. moai_adk/templates/.claude/skills/moai-lang-scala/examples.md +29 -0
  190. moai_adk/templates/.claude/skills/moai-lang-scala/reference.md +30 -0
  191. moai_adk/templates/.claude/skills/moai-lang-shell/SKILL.md +123 -0
  192. moai_adk/templates/.claude/skills/moai-lang-shell/examples.md +29 -0
  193. moai_adk/templates/.claude/skills/moai-lang-shell/reference.md +30 -0
  194. moai_adk/templates/.claude/skills/moai-lang-sql/SKILL.md +124 -0
  195. moai_adk/templates/.claude/skills/moai-lang-sql/examples.md +29 -0
  196. moai_adk/templates/.claude/skills/moai-lang-sql/reference.md +31 -0
  197. moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +123 -0
  198. moai_adk/templates/.claude/skills/moai-lang-swift/examples.md +29 -0
  199. moai_adk/templates/.claude/skills/moai-lang-swift/reference.md +30 -0
  200. moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +127 -0
  201. moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md +29 -0
  202. moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md +34 -0
  203. moai_adk/templates/.claude/skills/moai-skill-factory/CHECKLIST.md +482 -0
  204. moai_adk/templates/.claude/skills/moai-skill-factory/EXAMPLES.md +278 -0
  205. moai_adk/templates/.claude/skills/moai-skill-factory/INTERACTIVE-DISCOVERY.md +524 -0
  206. moai_adk/templates/.claude/skills/moai-skill-factory/METADATA.md +477 -0
  207. moai_adk/templates/.claude/skills/moai-skill-factory/PARALLEL-ANALYSIS-REPORT.md +429 -0
  208. moai_adk/templates/.claude/skills/moai-skill-factory/PYTHON-VERSION-MATRIX.md +391 -0
  209. moai_adk/templates/.claude/skills/moai-skill-factory/SKILL-FACTORY-WORKFLOW.md +431 -0
  210. moai_adk/templates/.claude/skills/moai-skill-factory/SKILL-UPDATE-ADVISOR.md +577 -0
  211. moai_adk/templates/.claude/skills/moai-skill-factory/SKILL.md +271 -0
  212. moai_adk/templates/.claude/skills/moai-skill-factory/STEP-BY-STEP-GUIDE.md +466 -0
  213. moai_adk/templates/.claude/skills/moai-skill-factory/STRUCTURE.md +583 -0
  214. moai_adk/templates/.claude/skills/moai-skill-factory/WEB-RESEARCH.md +526 -0
  215. moai_adk/templates/.claude/skills/moai-skill-factory/reference.md +465 -0
  216. moai_adk/templates/.claude/skills/moai-skill-factory/scripts/generate-structure.sh +328 -0
  217. moai_adk/templates/.claude/skills/moai-skill-factory/scripts/validate-skill.sh +312 -0
  218. moai_adk/templates/.claude/skills/moai-skill-factory/templates/SKILL_TEMPLATE.md +245 -0
  219. moai_adk/templates/.claude/skills/moai-skill-factory/templates/examples-template.md +285 -0
  220. moai_adk/templates/.claude/skills/moai-skill-factory/templates/reference-template.md +278 -0
  221. moai_adk/templates/.claude/skills/moai-skill-factory/templates/scripts-template.sh +303 -0
  222. moai_adk/templates/.claude/skills/moai-spec-authoring/README.md +137 -0
  223. moai_adk/templates/.claude/skills/moai-spec-authoring/SKILL.md +219 -0
  224. moai_adk/templates/.claude/skills/moai-spec-authoring/examples/validate-spec.sh +161 -0
  225. moai_adk/templates/.claude/skills/moai-spec-authoring/examples.md +541 -0
  226. moai_adk/templates/.claude/skills/moai-spec-authoring/reference.md +622 -0
  227. moai_adk/templates/.github/workflows/c-tag-validation.yml +83 -0
  228. moai_adk/templates/.github/workflows/cpp-tag-validation.yml +79 -0
  229. moai_adk/templates/.github/workflows/csharp-tag-validation.yml +65 -0
  230. moai_adk/templates/.github/workflows/dart-tag-validation.yml +82 -0
  231. moai_adk/templates/.github/workflows/java-tag-validation.yml +75 -0
  232. moai_adk/templates/.github/workflows/kotlin-tag-validation.yml +67 -0
  233. moai_adk/templates/.github/workflows/php-tag-validation.yml +56 -0
  234. moai_adk/templates/.github/workflows/ruby-tag-validation.yml +68 -0
  235. moai_adk/templates/.github/workflows/rust-tag-validation.yml +73 -0
  236. moai_adk/templates/.github/workflows/shell-tag-validation.yml +65 -0
  237. moai_adk/templates/.github/workflows/swift-tag-validation.yml +79 -0
  238. moai_adk/templates/.moai/config.json +113 -0
  239. moai_adk/templates/.moai/memory/CLAUDE-AGENTS-GUIDE.md +208 -0
  240. moai_adk/templates/.moai/memory/CLAUDE-PRACTICES.md +369 -0
  241. moai_adk/templates/.moai/memory/CLAUDE-RULES.md +539 -0
  242. moai_adk/templates/.moai/memory/DEVELOPMENT-GUIDE.md +344 -0
  243. moai_adk/templates/.moai/memory/GITFLOW-PROTECTION-POLICY.md +330 -0
  244. moai_adk/templates/.moai/memory/ISSUE-LABEL-MAPPING.md +150 -0
  245. moai_adk/templates/.moai/memory/SKILLS-DESCRIPTION-POLICY.md +218 -0
  246. moai_adk/templates/.moai/memory/SPEC-METADATA.md +356 -0
  247. moai_adk/templates/.moai/memory/gitflow-protection-policy.md +330 -0
  248. moai_adk/templates/.moai/memory/spec-metadata.md +356 -0
  249. moai_adk/templates/.moai/project/product.md +161 -0
  250. moai_adk/templates/.moai/project/structure.md +156 -0
  251. moai_adk/templates/.moai/project/tech.md +227 -0
  252. moai_adk/templates/CLAUDE.md +90 -10
  253. moai_adk/templates/workflows/go-tag-validation.yml +130 -0
  254. moai_adk/templates/workflows/javascript-tag-validation.yml +135 -0
  255. moai_adk/templates/workflows/python-tag-validation.yml +118 -0
  256. moai_adk/templates/workflows/typescript-tag-validation.yml +154 -0
  257. {moai_adk-0.11.0.dist-info → moai_adk-0.11.1.dist-info}/METADATA +43 -1
  258. moai_adk-0.11.1.dist-info/RECORD +330 -0
  259. moai_adk-0.11.0.dist-info/RECORD +0 -77
  260. /moai_adk/templates/.github/workflows/{release.yml → moai-adk-release.yml} +0 -0
  261. /moai_adk/templates/.github/workflows/{spec-issue-sync.yml → moai-adk-spec-issue-sync.yml} +0 -0
  262. /moai_adk/templates/.github/workflows/{tag-validation.yml → moai-adk-tag-validation.yml} +0 -0
  263. {moai_adk-0.11.0.dist-info → moai_adk-0.11.1.dist-info}/WHEEL +0 -0
  264. {moai_adk-0.11.0.dist-info → moai_adk-0.11.1.dist-info}/entry_points.txt +0 -0
  265. {moai_adk-0.11.0.dist-info → moai_adk-0.11.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,150 @@
1
+ # 📌 GitHub Issue Label Mapping Configuration
2
+
3
+ > **MoAI-ADK Label Management** - Centralized configuration for issue type labels and priority indicators
4
+
5
+ **Version**: 1.0.0
6
+ **Related**: `/alfred:9-feedback`
7
+
8
+ ---
9
+
10
+ ## 🏷️ Issue Type Label Mapping
11
+
12
+ ### Bug Issues (`--bug`)
13
+
14
+ **Primary Labels**: `bug`, `reported`
15
+
16
+ **Optional Labels** (based on priority):
17
+ - `priority-critical` - System down, data loss risk
18
+ - `priority-high` - Major feature broken
19
+ - `priority-medium` - Normal bug
20
+ - `priority-low` - Minor issue
21
+
22
+ ---
23
+
24
+ ### Feature Request Issues (`--feature`)
25
+
26
+ **Primary Labels**: `feature-request`, `enhancement`
27
+
28
+ **Optional Labels** (based on priority):
29
+ - `priority-critical` - Blocking, must implement immediately
30
+ - `priority-high` - Important feature
31
+ - `priority-medium` - Normal priority feature (default)
32
+ - `priority-low` - Nice to have
33
+
34
+ ---
35
+
36
+ ### Improvement Issues (`--improvement`)
37
+
38
+ **Primary Labels**: `improvement`, `enhancement`
39
+
40
+ **Optional Labels** (based on priority):
41
+ - `priority-critical` - Critical refactoring needed
42
+ - `priority-high` - Important improvement
43
+ - `priority-medium` - Normal priority (default)
44
+ - `priority-low` - Technical debt, can wait
45
+
46
+ ---
47
+
48
+ ### Question/Discussion Issues (`--question`)
49
+
50
+ **Primary Labels**: `question`, `help-wanted`
51
+
52
+ **Optional Labels** (based on priority):
53
+ - `priority-critical` - Urgent decision needed
54
+ - `priority-high` - Important decision
55
+ - `priority-medium` - Normal discussion (default)
56
+ - `priority-low` - Optional discussion
57
+
58
+ ---
59
+
60
+ ## 🎯 Priority Emoji Mapping
61
+
62
+ | Priority | Emoji | Use Case |
63
+ |----------|-------|----------|
64
+ | Critical | 🔴 | System outage, data loss, security breach |
65
+ | High | 🟠 | Major feature broken, significant impact |
66
+ | Medium | 🟡 | Normal bugs/features (default) |
67
+ | Low | 🟢 | Minor issues, nice-to-have features |
68
+
69
+ ---
70
+
71
+ ## 🚀 Issue Type Emoji Mapping
72
+
73
+ | Type | Emoji | Description |
74
+ |------|-------|-------------|
75
+ | Bug | 🐛 | Defect or unexpected behavior |
76
+ | Feature | ✨ | New functionality or capability |
77
+ | Improvement | ⚡ | Code quality, performance, or design improvement |
78
+ | Question | ❓ | Question, discussion, or decision needed |
79
+
80
+ ---
81
+
82
+ ## 🛠️ GitHub Labels Setup
83
+
84
+ To create labels in your GitHub repository, use GitHub CLI:
85
+
86
+ ```bash
87
+ # Authenticate first
88
+ gh auth login
89
+
90
+ # Create bug labels
91
+ gh label create "bug" \
92
+ --description "Something isn't working" \
93
+ --color "d73a49"
94
+
95
+ gh label create "reported" \
96
+ --description "User-reported issue" \
97
+ --color "fc2929"
98
+
99
+ # Create feature labels
100
+ gh label create "feature-request" \
101
+ --description "New feature or request" \
102
+ --color "a2eeef"
103
+
104
+ gh label create "enhancement" \
105
+ --description "Improvement or enhancement" \
106
+ --color "0075ca"
107
+
108
+ # Create improvement label
109
+ gh label create "improvement" \
110
+ --description "Performance or code quality improvement" \
111
+ --color "5ebcf6"
112
+
113
+ # Create question labels
114
+ gh label create "question" \
115
+ --description "Question for discussion" \
116
+ --color "fbca04"
117
+
118
+ gh label create "help-wanted" \
119
+ --description "We need help with this" \
120
+ --color "fcfc03"
121
+
122
+ # Create priority labels
123
+ gh label create "priority-critical" \
124
+ --description "Critical priority - URGENT" \
125
+ --color "ff0000"
126
+
127
+ gh label create "priority-high" \
128
+ --description "High priority" \
129
+ --color "ff6600"
130
+
131
+ gh label create "priority-medium" \
132
+ --description "Medium priority" \
133
+ --color "ffcc00"
134
+
135
+ gh label create "priority-low" \
136
+ --description "Low priority" \
137
+ --color "00cc00"
138
+ ```
139
+
140
+ ---
141
+
142
+ ## ✨ Summary
143
+
144
+ This configuration enables:
145
+ - ✅ **Standardized issue labels** across all issue types
146
+ - ✅ **Priority indicators** with emoji for visual identification
147
+ - ✅ **Type emoji** for quick issue categorization
148
+ - ✅ **Automated label assignment** via `/alfred:9-feedback`
149
+
150
+ For more information, see `.moai/docs/quick-issue-creation-guide.md`
@@ -0,0 +1,218 @@
1
+ # Skills Description 개선 정책
2
+
3
+ > MoAI-ADK의 모든 Skills에 적용되는 description 작성 표준
4
+
5
+ ---
6
+
7
+ ## 🎯 설명 (Description) 작성 원칙
8
+
9
+ ### 1. 기본 구조
10
+
11
+ 모든 Skill의 description은 다음 3가지를 포함해야 합니다:
12
+
13
+ ```
14
+ [What it does]: 간단한 기능 설명 (8-12 단어)
15
+ [Key capabilities]: 핵심 기능 목록 (2-3개)
16
+ [When to use]: 사용 시점 (3-5개 트리거 키워드, "Use when" 사용)
17
+ ```
18
+
19
+ ### 2. 작성 템플릿
20
+
21
+ **기본 템플릿**:
22
+ ```
23
+ description: [기능 설명]. [핵심 기능]. Use when [트리거1], [트리거2], or [트리거3].
24
+ ```
25
+
26
+ **확장 템플릿** (필요 시):
27
+ ```
28
+ description: [기능 설명]. [핵심 기능1], [핵심 기능2]. Use when [트리거1], [트리거2], [트리거3], or [트리거4]. Automatically activates [연관 Skills] for [목적].
29
+ ```
30
+
31
+ ### 3. Skills 카테고리별 템플릿
32
+
33
+ #### Foundation Skills (moai-foundation-*)
34
+ ```
35
+ description: [기능]. [핵심 기능 (예: validation, authoring)]. Use when [작업1], [작업2], [작업3], or [작업4].
36
+ ```
37
+ **예시**:
38
+ - ✅ "Validates SPEC YAML frontmatter (7 required fields) and HISTORY section. Use when creating SPEC documents, validating SPEC metadata, checking SPEC structure, or authoring specifications."
39
+ - ❌ "SPEC metadata validation" (너무 짧음)
40
+
41
+ #### Alfred Skills (moai-alfred-*)
42
+ ```
43
+ description: [기능]. [핵심 능력]. Use when [검증/분석/관리 대상], [조건], or [상황]. Automatically activates [연관 Skills] for [목적].
44
+ ```
45
+ **예시**:
46
+ - ✅ "Validates TRUST 5-principles (Test 85%+, Code constraints, Architecture unity, Security, TAG trackability). Use when validating code quality, checking TRUST compliance, verifying test coverage, or analyzing security patterns. Automatically activates moai-foundation-trust and language-specific skills for comprehensive validation."
47
+ - ❌ "TRUST validation" (너무 짧고 트리거 키워드 없음)
48
+
49
+ #### Language Skills (moai-lang-*)
50
+ ```
51
+ description: [언어] best practices with [주요 도구]. Use when [개발 활동], [패턴], or [특수 케이스].
52
+ ```
53
+ **예시**:
54
+ - ✅ "Python best practices with pytest, mypy, ruff, black. Use when writing Python code, implementing tests, type-checking, formatting code, or following PEP standards."
55
+ - ❌ "Python best practices" (너무 일반적)
56
+
57
+ #### Domain Skills (moai-domain-*)
58
+ ```
59
+ description: [도메인] development with [주요 기술/패턴]. Use when [도메인 활동1], [도메인 활동2], or [특수 상황].
60
+ ```
61
+ **예시**:
62
+ - ✅ "Backend API development with REST patterns, authentication, error handling. Use when designing REST APIs, implementing authentication, or building backend services."
63
+ - ❌ "Backend development" (구체성 부족)
64
+
65
+ ### 4. 트리거 키워드 가이드
66
+
67
+ #### 작업 중심 키워드
68
+ - "creating [artifact]", "writing [code/docs]", "implementing [feature]"
69
+ - "validating [aspect]", "checking [quality]", "verifying [compliance]"
70
+ - "analyzing [code/data]", "debugging [issue]", "diagnosing [problem]"
71
+
72
+ #### 조건 중심 키워드
73
+ - "when working with [file type/framework]"
74
+ - "when developing [feature/component]"
75
+ - "when applying [pattern/practice]"
76
+
77
+ #### 상황 중심 키워드
78
+ - "for [workflow/process]", "during [phase/stage]"
79
+ - "to [achieve goal/outcome]"
80
+
81
+ ### 5. 금지 사항 (Anti-patterns)
82
+
83
+ ❌ **너무 짧음**:
84
+ ```
85
+ description: Helps with documents
86
+ ```
87
+
88
+ ❌ **트리거 키워드 없음**:
89
+ ```
90
+ description: PDF processing tool
91
+ ```
92
+
93
+ ❌ **"I can", "You can" 사용** (첫 인칭 회피):
94
+ ```
95
+ description: I help you process Excel files
96
+ ```
97
+
98
+ ❌ **기술적 세부사항만**:
99
+ ```
100
+ description: Uses pdfplumber library
101
+ ```
102
+
103
+ ---
104
+
105
+ ## 📊 Skills 목록별 개선 체크리스트
106
+
107
+ ### Priority 1: Foundation Skills (7개)
108
+ - [ ] moai-foundation-specs ✅ 완료
109
+ - [ ] moai-foundation-ears ✅ 완료
110
+ - [ ] moai-foundation-tags
111
+ - [ ] moai-foundation-trust
112
+ - [ ] moai-foundation-langs
113
+ - [ ] moai-claude-code
114
+ - [ ] moai-foundation-git
115
+
116
+ ### Priority 2: Alfred Skills (10개)
117
+ - [ ] moai-alfred-tag-scanning
118
+ - [ ] moai-alfred-trust-validation
119
+ - [ ] moai-alfred-spec-metadata-validation
120
+ - [ ] moai-alfred-code-reviewer
121
+ - [ ] moai-alfred-git-workflow
122
+ - [ ] moai-alfred-ears-authoring
123
+ - [ ] moai-alfred-debugger-pro
124
+ - [ ] moai-alfred-language-detection
125
+ - [ ] moai-alfred-performance-optimizer
126
+ - [ ] moai-alfred-refactoring-coach
127
+
128
+ ### Priority 3: Language Skills (20개)
129
+ - moai-lang-typescript
130
+ - moai-lang-python
131
+ - moai-lang-go
132
+ - moai-lang-rust
133
+ - moai-lang-java
134
+ - ... (14개 더)
135
+
136
+ ### Priority 4: Domain Skills (12개)
137
+ - moai-domain-backend
138
+ - moai-domain-frontend
139
+ - moai-domain-web-api
140
+ - moai-domain-database
141
+ - ... (8개 더)
142
+
143
+ ### Priority 5: Essentials Skills (4개)
144
+ - moai-essentials-debug
145
+ - moai-essentials-review
146
+ - moai-essentials-refactor
147
+ - moai-essentials-perf
148
+
149
+ ---
150
+
151
+ ## 🔧 개선 방법
152
+
153
+ ### 방법 1: 개별 Edit (고품질)
154
+ 각 Skill의 `description` 필드를 수작업 Edit
155
+ - 이점: 각 Skill에 최적화된 description
156
+ - 단점: 시간이 오래 걸림 (60+ Skills)
157
+
158
+ ### 방법 2: 정책 기반 일괄 개선 (효율성)
159
+ 템플릿을 기반으로 Pattern matching으로 우선순위별 개선
160
+ 1. Priority 1-2: 개별 Edit (가장 중요)
161
+ 2. Priority 3-5: 템플릿 기반 일괄 적용
162
+
163
+ ### 현재 진행 상태
164
+ - ✅ moai-foundation-specs (Priority 1)
165
+ - ✅ moai-foundation-ears (Priority 1)
166
+ - ⏳ 나머지 50+ Skills (Priority 2-5)
167
+
168
+ ---
169
+
170
+ ## 📝 작성 예시
171
+
172
+ ### 좋은 예시
173
+
174
+ #### Foundation Skill
175
+ ```yaml
176
+ description: Validates SPEC YAML frontmatter (7 required fields id, version, status, created, updated, author, priority) and HISTORY section. Use when creating SPEC documents, validating SPEC metadata, checking SPEC structure, or authoring specifications.
177
+ ```
178
+
179
+ #### Alfred Skill
180
+ ```yaml
181
+ description: Generates descriptive commit messages by analyzing git diffs. Use when writing commit messages, reviewing staged changes, or summarizing code modifications. Automatically activates git-workflow skill for advanced patterns.
182
+ ```
183
+
184
+ #### Language Skill
185
+ ```yaml
186
+ description: TypeScript best practices with Vitest, Biome, strict typing. Use when implementing TypeScript code, writing tests, checking code quality, or applying type safety patterns.
187
+ ```
188
+
189
+ #### Domain Skill
190
+ ```yaml
191
+ description: REST API design patterns with authentication, versioning, error handling. Use when designing REST APIs, implementing authentication, building backend services, or managing API versions.
192
+ ```
193
+
194
+ ### 수정 전 vs 수정 후
195
+
196
+ | Skill | Before | After |
197
+ |-------|--------|-------|
198
+ | moai-foundation-specs | "Validates SPEC YAML frontmatter (7 required fields) and HISTORY section" | "Validates SPEC YAML frontmatter (7 required fields id, version, status, created, updated, author, priority) and HISTORY section. Use when creating SPEC documents, validating SPEC metadata, checking SPEC structure, or authoring specifications." |
199
+ | moai-foundation-ears | "EARS requirement authoring guide (Ubiquitous/Event/State/Optional/Constraints)" | "EARS requirement authoring guide covering Ubiquitous/Event/State/Optional/Constraints syntax patterns. Use when writing requirements, authoring specifications, defining system behavior, or creating functional requirements." |
200
+
201
+ ---
202
+
203
+ ## ✅ 최종 검증 체크리스트
204
+
205
+ 각 Skill의 description이 다음을 만족하는지 확인:
206
+
207
+ - [ ] **"What it does"**: 명확한 기능 설명 (명사 + 동사)
208
+ - [ ] **"Use when"**: 3~5개 구체적 트리거 키워드 포함
209
+ - [ ] **길이**: 한 줄 (150-200 자 권장)
210
+ - [ ] **관계**: 연관된 Skills 명시 (선택)
211
+ - [ ] **발견성**: 검색 키워드 포함 (sub-agent가 발견 가능)
212
+ - [ ] **첫 인칭 회피**: "I", "You", "Our" 사용 안 함
213
+ - [ ] **기술 중심성 회피**: 라이브러리/도구명보다 기능/목적 우선
214
+
215
+ ---
216
+
217
+ **작성일**: 2025-10-20
218
+ **최종 업데이트**: Phase 2 진행 중