moai-adk 0.35.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 (502) hide show
  1. moai_adk/__init__.py +10 -0
  2. moai_adk/__main__.py +199 -0
  3. moai_adk/cli/__init__.py +6 -0
  4. moai_adk/cli/commands/__init__.py +17 -0
  5. moai_adk/cli/commands/analyze.py +116 -0
  6. moai_adk/cli/commands/doctor.py +272 -0
  7. moai_adk/cli/commands/init.py +372 -0
  8. moai_adk/cli/commands/language.py +248 -0
  9. moai_adk/cli/commands/status.py +104 -0
  10. moai_adk/cli/commands/update.py +2686 -0
  11. moai_adk/cli/main.py +13 -0
  12. moai_adk/cli/prompts/__init__.py +5 -0
  13. moai_adk/cli/prompts/init_prompts.py +219 -0
  14. moai_adk/cli/spec_status.py +263 -0
  15. moai_adk/cli/ui/__init__.py +44 -0
  16. moai_adk/cli/ui/progress.py +422 -0
  17. moai_adk/cli/ui/prompts.py +389 -0
  18. moai_adk/cli/ui/theme.py +129 -0
  19. moai_adk/cli/worktree/__init__.py +27 -0
  20. moai_adk/cli/worktree/__main__.py +31 -0
  21. moai_adk/cli/worktree/cli.py +683 -0
  22. moai_adk/cli/worktree/exceptions.py +89 -0
  23. moai_adk/cli/worktree/manager.py +493 -0
  24. moai_adk/cli/worktree/models.py +65 -0
  25. moai_adk/cli/worktree/registry.py +422 -0
  26. moai_adk/core/PHASE2_OPTIMIZATIONS.md +467 -0
  27. moai_adk/core/__init__.py +1 -0
  28. moai_adk/core/analysis/__init__.py +9 -0
  29. moai_adk/core/analysis/session_analyzer.py +400 -0
  30. moai_adk/core/claude_integration.py +393 -0
  31. moai_adk/core/command_helpers.py +270 -0
  32. moai_adk/core/comprehensive_monitoring_system.py +1183 -0
  33. moai_adk/core/config/__init__.py +19 -0
  34. moai_adk/core/config/auto_spec_config.py +340 -0
  35. moai_adk/core/config/migration.py +244 -0
  36. moai_adk/core/config/unified.py +436 -0
  37. moai_adk/core/context_manager.py +273 -0
  38. moai_adk/core/diagnostics/__init__.py +19 -0
  39. moai_adk/core/diagnostics/slash_commands.py +159 -0
  40. moai_adk/core/enterprise_features.py +1404 -0
  41. moai_adk/core/error_recovery_system.py +1902 -0
  42. moai_adk/core/event_driven_hook_system.py +1371 -0
  43. moai_adk/core/git/__init__.py +31 -0
  44. moai_adk/core/git/branch.py +25 -0
  45. moai_adk/core/git/branch_manager.py +129 -0
  46. moai_adk/core/git/checkpoint.py +134 -0
  47. moai_adk/core/git/commit.py +67 -0
  48. moai_adk/core/git/conflict_detector.py +413 -0
  49. moai_adk/core/git/event_detector.py +79 -0
  50. moai_adk/core/git/manager.py +216 -0
  51. moai_adk/core/hooks/post_tool_auto_spec_completion.py +901 -0
  52. moai_adk/core/input_validation_middleware.py +1006 -0
  53. moai_adk/core/integration/__init__.py +22 -0
  54. moai_adk/core/integration/engine.py +157 -0
  55. moai_adk/core/integration/integration_tester.py +226 -0
  56. moai_adk/core/integration/models.py +88 -0
  57. moai_adk/core/integration/utils.py +211 -0
  58. moai_adk/core/issue_creator.py +305 -0
  59. moai_adk/core/jit_context_loader.py +956 -0
  60. moai_adk/core/jit_enhanced_hook_manager.py +1987 -0
  61. moai_adk/core/language_config.py +202 -0
  62. moai_adk/core/language_config_resolver.py +572 -0
  63. moai_adk/core/language_validator.py +543 -0
  64. moai_adk/core/mcp/setup.py +116 -0
  65. moai_adk/core/merge/__init__.py +9 -0
  66. moai_adk/core/merge/analyzer.py +605 -0
  67. moai_adk/core/migration/__init__.py +18 -0
  68. moai_adk/core/migration/alfred_to_moai_migrator.py +383 -0
  69. moai_adk/core/migration/backup_manager.py +277 -0
  70. moai_adk/core/migration/custom_element_scanner.py +358 -0
  71. moai_adk/core/migration/file_migrator.py +209 -0
  72. moai_adk/core/migration/interactive_checkbox_ui.py +488 -0
  73. moai_adk/core/migration/selective_restorer.py +470 -0
  74. moai_adk/core/migration/template_utils.py +74 -0
  75. moai_adk/core/migration/user_selection_ui.py +338 -0
  76. moai_adk/core/migration/version_detector.py +139 -0
  77. moai_adk/core/migration/version_migrator.py +228 -0
  78. moai_adk/core/performance/__init__.py +6 -0
  79. moai_adk/core/performance/cache_system.py +316 -0
  80. moai_adk/core/performance/parallel_processor.py +116 -0
  81. moai_adk/core/phase_optimized_hook_scheduler.py +879 -0
  82. moai_adk/core/project/__init__.py +1 -0
  83. moai_adk/core/project/backup_utils.py +70 -0
  84. moai_adk/core/project/checker.py +300 -0
  85. moai_adk/core/project/detector.py +293 -0
  86. moai_adk/core/project/initializer.py +387 -0
  87. moai_adk/core/project/phase_executor.py +716 -0
  88. moai_adk/core/project/validator.py +139 -0
  89. moai_adk/core/quality/__init__.py +6 -0
  90. moai_adk/core/quality/trust_checker.py +377 -0
  91. moai_adk/core/quality/validators/__init__.py +6 -0
  92. moai_adk/core/quality/validators/base_validator.py +19 -0
  93. moai_adk/core/realtime_monitoring_dashboard.py +1724 -0
  94. moai_adk/core/robust_json_parser.py +611 -0
  95. moai_adk/core/rollback_manager.py +918 -0
  96. moai_adk/core/session_manager.py +651 -0
  97. moai_adk/core/skill_loading_system.py +579 -0
  98. moai_adk/core/spec/confidence_scoring.py +680 -0
  99. moai_adk/core/spec/ears_template_engine.py +1247 -0
  100. moai_adk/core/spec/quality_validator.py +687 -0
  101. moai_adk/core/spec_status_manager.py +478 -0
  102. moai_adk/core/template/__init__.py +7 -0
  103. moai_adk/core/template/backup.py +174 -0
  104. moai_adk/core/template/config.py +191 -0
  105. moai_adk/core/template/languages.py +43 -0
  106. moai_adk/core/template/merger.py +233 -0
  107. moai_adk/core/template/processor.py +1200 -0
  108. moai_adk/core/template_engine.py +310 -0
  109. moai_adk/core/template_variable_synchronizer.py +417 -0
  110. moai_adk/core/unified_permission_manager.py +745 -0
  111. moai_adk/core/user_behavior_analytics.py +851 -0
  112. moai_adk/core/version_sync.py +429 -0
  113. moai_adk/foundation/__init__.py +56 -0
  114. moai_adk/foundation/backend.py +1027 -0
  115. moai_adk/foundation/database.py +1115 -0
  116. moai_adk/foundation/devops.py +1585 -0
  117. moai_adk/foundation/ears.py +431 -0
  118. moai_adk/foundation/frontend.py +870 -0
  119. moai_adk/foundation/git/commit_templates.py +557 -0
  120. moai_adk/foundation/git.py +376 -0
  121. moai_adk/foundation/langs.py +484 -0
  122. moai_adk/foundation/ml_ops.py +1162 -0
  123. moai_adk/foundation/testing.py +1524 -0
  124. moai_adk/foundation/trust/trust_principles.py +676 -0
  125. moai_adk/foundation/trust/validation_checklist.py +1573 -0
  126. moai_adk/project/__init__.py +0 -0
  127. moai_adk/project/configuration.py +1084 -0
  128. moai_adk/project/documentation.py +566 -0
  129. moai_adk/project/schema.py +447 -0
  130. moai_adk/statusline/__init__.py +38 -0
  131. moai_adk/statusline/alfred_detector.py +105 -0
  132. moai_adk/statusline/config.py +376 -0
  133. moai_adk/statusline/enhanced_output_style_detector.py +372 -0
  134. moai_adk/statusline/git_collector.py +190 -0
  135. moai_adk/statusline/main.py +322 -0
  136. moai_adk/statusline/metrics_tracker.py +78 -0
  137. moai_adk/statusline/renderer.py +343 -0
  138. moai_adk/statusline/update_checker.py +129 -0
  139. moai_adk/statusline/version_reader.py +741 -0
  140. moai_adk/templates/.claude/agents/moai/ai-nano-banana.md +714 -0
  141. moai_adk/templates/.claude/agents/moai/builder-agent.md +474 -0
  142. moai_adk/templates/.claude/agents/moai/builder-command.md +1172 -0
  143. moai_adk/templates/.claude/agents/moai/builder-plugin.md +637 -0
  144. moai_adk/templates/.claude/agents/moai/builder-skill.md +666 -0
  145. moai_adk/templates/.claude/agents/moai/expert-backend.md +899 -0
  146. moai_adk/templates/.claude/agents/moai/expert-database.md +777 -0
  147. moai_adk/templates/.claude/agents/moai/expert-debug.md +401 -0
  148. moai_adk/templates/.claude/agents/moai/expert-devops.md +720 -0
  149. moai_adk/templates/.claude/agents/moai/expert-frontend.md +734 -0
  150. moai_adk/templates/.claude/agents/moai/expert-performance.md +657 -0
  151. moai_adk/templates/.claude/agents/moai/expert-security.md +513 -0
  152. moai_adk/templates/.claude/agents/moai/expert-testing.md +733 -0
  153. moai_adk/templates/.claude/agents/moai/expert-uiux.md +1041 -0
  154. moai_adk/templates/.claude/agents/moai/manager-claude-code.md +432 -0
  155. moai_adk/templates/.claude/agents/moai/manager-docs.md +573 -0
  156. moai_adk/templates/.claude/agents/moai/manager-git.md +1060 -0
  157. moai_adk/templates/.claude/agents/moai/manager-project.md +891 -0
  158. moai_adk/templates/.claude/agents/moai/manager-quality.md +624 -0
  159. moai_adk/templates/.claude/agents/moai/manager-spec.md +809 -0
  160. moai_adk/templates/.claude/agents/moai/manager-strategy.md +780 -0
  161. moai_adk/templates/.claude/agents/moai/manager-tdd.md +784 -0
  162. moai_adk/templates/.claude/agents/moai/mcp-context7.md +458 -0
  163. moai_adk/templates/.claude/agents/moai/mcp-figma.md +1607 -0
  164. moai_adk/templates/.claude/agents/moai/mcp-notion.md +789 -0
  165. moai_adk/templates/.claude/agents/moai/mcp-playwright.md +469 -0
  166. moai_adk/templates/.claude/agents/moai/mcp-sequential-thinking.md +1032 -0
  167. moai_adk/templates/.claude/commands/moai/0-project.md +1386 -0
  168. moai_adk/templates/.claude/commands/moai/1-plan.md +1427 -0
  169. moai_adk/templates/.claude/commands/moai/2-run.md +943 -0
  170. moai_adk/templates/.claude/commands/moai/3-sync.md +1324 -0
  171. moai_adk/templates/.claude/commands/moai/9-feedback.md +314 -0
  172. moai_adk/templates/.claude/hooks/__init__.py +8 -0
  173. moai_adk/templates/.claude/hooks/moai/__init__.py +8 -0
  174. moai_adk/templates/.claude/hooks/moai/lib/__init__.py +85 -0
  175. moai_adk/templates/.claude/hooks/moai/lib/checkpoint.py +244 -0
  176. moai_adk/templates/.claude/hooks/moai/lib/common.py +131 -0
  177. moai_adk/templates/.claude/hooks/moai/lib/config_manager.py +446 -0
  178. moai_adk/templates/.claude/hooks/moai/lib/config_validator.py +639 -0
  179. moai_adk/templates/.claude/hooks/moai/lib/example_config.json +104 -0
  180. moai_adk/templates/.claude/hooks/moai/lib/git_operations_manager.py +590 -0
  181. moai_adk/templates/.claude/hooks/moai/lib/language_validator.py +317 -0
  182. moai_adk/templates/.claude/hooks/moai/lib/models.py +102 -0
  183. moai_adk/templates/.claude/hooks/moai/lib/path_utils.py +28 -0
  184. moai_adk/templates/.claude/hooks/moai/lib/project.py +768 -0
  185. moai_adk/templates/.claude/hooks/moai/lib/test_hooks_improvements.py +443 -0
  186. moai_adk/templates/.claude/hooks/moai/lib/timeout.py +160 -0
  187. moai_adk/templates/.claude/hooks/moai/lib/unified_timeout_manager.py +530 -0
  188. moai_adk/templates/.claude/hooks/moai/session_end__auto_cleanup.py +862 -0
  189. moai_adk/templates/.claude/hooks/moai/session_start__show_project_info.py +1083 -0
  190. moai_adk/templates/.claude/output-styles/moai/r2d2.md +560 -0
  191. moai_adk/templates/.claude/output-styles/moai/yoda.md +359 -0
  192. moai_adk/templates/.claude/settings.json +172 -0
  193. moai_adk/templates/.claude/skills/moai-ai-nano-banana/SKILL.md +307 -0
  194. moai_adk/templates/.claude/skills/moai-ai-nano-banana/examples.md +431 -0
  195. moai_adk/templates/.claude/skills/moai-ai-nano-banana/scripts/batch_generate.py +560 -0
  196. moai_adk/templates/.claude/skills/moai-ai-nano-banana/scripts/generate_image.py +362 -0
  197. moai_adk/templates/.claude/skills/moai-docs-generation/SKILL.md +249 -0
  198. moai_adk/templates/.claude/skills/moai-docs-generation/examples.md +406 -0
  199. moai_adk/templates/.claude/skills/moai-docs-generation/modules/README.md +44 -0
  200. moai_adk/templates/.claude/skills/moai-docs-generation/modules/api-documentation.md +130 -0
  201. moai_adk/templates/.claude/skills/moai-docs-generation/modules/code-documentation.md +152 -0
  202. moai_adk/templates/.claude/skills/moai-docs-generation/modules/multi-format-output.md +178 -0
  203. moai_adk/templates/.claude/skills/moai-docs-generation/modules/user-guides.md +147 -0
  204. moai_adk/templates/.claude/skills/moai-docs-generation/reference.md +328 -0
  205. moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +320 -0
  206. moai_adk/templates/.claude/skills/moai-domain-backend/examples.md +718 -0
  207. moai_adk/templates/.claude/skills/moai-domain-backend/reference.md +464 -0
  208. moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +323 -0
  209. moai_adk/templates/.claude/skills/moai-domain-database/examples.md +830 -0
  210. moai_adk/templates/.claude/skills/moai-domain-database/modules/README.md +53 -0
  211. moai_adk/templates/.claude/skills/moai-domain-database/modules/mongodb.md +231 -0
  212. moai_adk/templates/.claude/skills/moai-domain-database/modules/postgresql.md +169 -0
  213. moai_adk/templates/.claude/skills/moai-domain-database/modules/redis.md +262 -0
  214. moai_adk/templates/.claude/skills/moai-domain-database/reference.md +545 -0
  215. moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +497 -0
  216. moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md +968 -0
  217. moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md +664 -0
  218. moai_adk/templates/.claude/skills/moai-domain-uiux/SKILL.md +455 -0
  219. moai_adk/templates/.claude/skills/moai-domain-uiux/examples.md +560 -0
  220. moai_adk/templates/.claude/skills/moai-domain-uiux/modules/accessibility-wcag.md +260 -0
  221. moai_adk/templates/.claude/skills/moai-domain-uiux/modules/component-architecture.md +228 -0
  222. moai_adk/templates/.claude/skills/moai-domain-uiux/modules/icon-libraries.md +401 -0
  223. moai_adk/templates/.claude/skills/moai-domain-uiux/modules/theming-system.md +373 -0
  224. moai_adk/templates/.claude/skills/moai-domain-uiux/reference.md +243 -0
  225. moai_adk/templates/.claude/skills/moai-formats-data/SKILL.md +492 -0
  226. moai_adk/templates/.claude/skills/moai-formats-data/examples.md +804 -0
  227. moai_adk/templates/.claude/skills/moai-formats-data/modules/README.md +98 -0
  228. moai_adk/templates/.claude/skills/moai-formats-data/modules/SKILL-MODULARIZATION-TEMPLATE.md +278 -0
  229. moai_adk/templates/.claude/skills/moai-formats-data/modules/caching-performance.md +459 -0
  230. moai_adk/templates/.claude/skills/moai-formats-data/modules/data-validation.md +485 -0
  231. moai_adk/templates/.claude/skills/moai-formats-data/modules/json-optimization.md +374 -0
  232. moai_adk/templates/.claude/skills/moai-formats-data/modules/toon-encoding.md +308 -0
  233. moai_adk/templates/.claude/skills/moai-formats-data/reference.md +585 -0
  234. moai_adk/templates/.claude/skills/moai-foundation-claude/SKILL.md +202 -0
  235. moai_adk/templates/.claude/skills/moai-foundation-claude/examples.md +732 -0
  236. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/best-practices-checklist.md +616 -0
  237. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-custom-slash-commands-official.md +729 -0
  238. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-hooks-official.md +560 -0
  239. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-iam-official.md +635 -0
  240. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-memory-official.md +543 -0
  241. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-settings-official.md +663 -0
  242. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-skills-official.md +113 -0
  243. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-sub-agents-official.md +238 -0
  244. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/complete-configuration-guide.md +175 -0
  245. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/skill-examples.md +1674 -0
  246. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/skill-formatting-guide.md +729 -0
  247. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-examples.md +1513 -0
  248. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-formatting-guide.md +1086 -0
  249. moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-integration-patterns.md +1100 -0
  250. moai_adk/templates/.claude/skills/moai-foundation-claude/reference.md +209 -0
  251. moai_adk/templates/.claude/skills/moai-foundation-context/SKILL.md +441 -0
  252. moai_adk/templates/.claude/skills/moai-foundation-context/examples.md +1048 -0
  253. moai_adk/templates/.claude/skills/moai-foundation-context/reference.md +246 -0
  254. moai_adk/templates/.claude/skills/moai-foundation-core/SKILL.md +420 -0
  255. moai_adk/templates/.claude/skills/moai-foundation-core/examples.md +358 -0
  256. moai_adk/templates/.claude/skills/moai-foundation-core/modules/README.md +296 -0
  257. moai_adk/templates/.claude/skills/moai-foundation-core/modules/agents-reference.md +359 -0
  258. moai_adk/templates/.claude/skills/moai-foundation-core/modules/commands-reference.md +432 -0
  259. moai_adk/templates/.claude/skills/moai-foundation-core/modules/delegation-patterns.md +757 -0
  260. moai_adk/templates/.claude/skills/moai-foundation-core/modules/execution-rules.md +687 -0
  261. moai_adk/templates/.claude/skills/moai-foundation-core/modules/modular-system.md +665 -0
  262. moai_adk/templates/.claude/skills/moai-foundation-core/modules/progressive-disclosure.md +649 -0
  263. moai_adk/templates/.claude/skills/moai-foundation-core/modules/spec-first-tdd.md +864 -0
  264. moai_adk/templates/.claude/skills/moai-foundation-core/modules/token-optimization.md +708 -0
  265. moai_adk/templates/.claude/skills/moai-foundation-core/modules/trust-5-framework.md +981 -0
  266. moai_adk/templates/.claude/skills/moai-foundation-core/reference.md +478 -0
  267. moai_adk/templates/.claude/skills/moai-foundation-philosopher/SKILL.md +315 -0
  268. moai_adk/templates/.claude/skills/moai-foundation-philosopher/examples.md +228 -0
  269. moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/assumption-matrix.md +80 -0
  270. moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/cognitive-bias.md +199 -0
  271. moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/first-principles.md +140 -0
  272. moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/trade-off-analysis.md +154 -0
  273. moai_adk/templates/.claude/skills/moai-foundation-philosopher/reference.md +157 -0
  274. moai_adk/templates/.claude/skills/moai-foundation-quality/SKILL.md +364 -0
  275. moai_adk/templates/.claude/skills/moai-foundation-quality/examples.md +1232 -0
  276. moai_adk/templates/.claude/skills/moai-foundation-quality/modules/best-practices.md +261 -0
  277. moai_adk/templates/.claude/skills/moai-foundation-quality/modules/integration-patterns.md +194 -0
  278. moai_adk/templates/.claude/skills/moai-foundation-quality/modules/proactive-analysis.md +229 -0
  279. moai_adk/templates/.claude/skills/moai-foundation-quality/modules/trust5-validation.md +169 -0
  280. moai_adk/templates/.claude/skills/moai-foundation-quality/reference.md +1266 -0
  281. moai_adk/templates/.claude/skills/moai-foundation-quality/scripts/quality-gate.sh +668 -0
  282. moai_adk/templates/.claude/skills/moai-foundation-quality/templates/github-actions-quality.yml +481 -0
  283. moai_adk/templates/.claude/skills/moai-foundation-quality/templates/quality-config.yaml +519 -0
  284. moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +649 -0
  285. moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +478 -0
  286. moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md +612 -0
  287. moai_adk/templates/.claude/skills/moai-lang-flutter/SKILL.md +477 -0
  288. moai_adk/templates/.claude/skills/moai-lang-flutter/examples.md +1090 -0
  289. moai_adk/templates/.claude/skills/moai-lang-flutter/reference.md +686 -0
  290. moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +376 -0
  291. moai_adk/templates/.claude/skills/moai-lang-go/examples.md +919 -0
  292. moai_adk/templates/.claude/skills/moai-lang-go/reference.md +737 -0
  293. moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +385 -0
  294. moai_adk/templates/.claude/skills/moai-lang-java/examples.md +864 -0
  295. moai_adk/templates/.claude/skills/moai-lang-java/reference.md +291 -0
  296. moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +382 -0
  297. moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md +1006 -0
  298. moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md +562 -0
  299. moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +644 -0
  300. moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +481 -0
  301. moai_adk/templates/.claude/skills/moai-lang-python/examples.md +977 -0
  302. moai_adk/templates/.claude/skills/moai-lang-python/reference.md +804 -0
  303. moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +579 -0
  304. moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +687 -0
  305. moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +372 -0
  306. moai_adk/templates/.claude/skills/moai-lang-rust/examples.md +659 -0
  307. moai_adk/templates/.claude/skills/moai-lang-rust/reference.md +504 -0
  308. moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +497 -0
  309. moai_adk/templates/.claude/skills/moai-lang-scala/examples.md +633 -0
  310. moai_adk/templates/.claude/skills/moai-lang-scala/reference.md +423 -0
  311. moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +497 -0
  312. moai_adk/templates/.claude/skills/moai-lang-swift/examples.md +918 -0
  313. moai_adk/templates/.claude/skills/moai-lang-swift/reference.md +672 -0
  314. moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +368 -0
  315. moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md +1089 -0
  316. moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md +731 -0
  317. moai_adk/templates/.claude/skills/moai-library-mermaid/SKILL.md +300 -0
  318. moai_adk/templates/.claude/skills/moai-library-mermaid/advanced-patterns.md +465 -0
  319. moai_adk/templates/.claude/skills/moai-library-mermaid/examples.md +270 -0
  320. moai_adk/templates/.claude/skills/moai-library-mermaid/optimization.md +440 -0
  321. moai_adk/templates/.claude/skills/moai-library-mermaid/reference.md +228 -0
  322. moai_adk/templates/.claude/skills/moai-library-nextra/SKILL.md +319 -0
  323. moai_adk/templates/.claude/skills/moai-library-nextra/advanced-patterns.md +336 -0
  324. moai_adk/templates/.claude/skills/moai-library-nextra/examples.md +592 -0
  325. moai_adk/templates/.claude/skills/moai-library-nextra/modules/advanced-deployment-patterns.md +182 -0
  326. moai_adk/templates/.claude/skills/moai-library-nextra/modules/advanced-patterns.md +17 -0
  327. moai_adk/templates/.claude/skills/moai-library-nextra/modules/configuration.md +57 -0
  328. moai_adk/templates/.claude/skills/moai-library-nextra/modules/content-architecture-optimization.md +162 -0
  329. moai_adk/templates/.claude/skills/moai-library-nextra/modules/deployment.md +52 -0
  330. moai_adk/templates/.claude/skills/moai-library-nextra/modules/framework-core-configuration.md +186 -0
  331. moai_adk/templates/.claude/skills/moai-library-nextra/modules/i18n-setup.md +55 -0
  332. moai_adk/templates/.claude/skills/moai-library-nextra/modules/mdx-components.md +52 -0
  333. moai_adk/templates/.claude/skills/moai-library-nextra/optimization.md +303 -0
  334. moai_adk/templates/.claude/skills/moai-library-nextra/reference.md +379 -0
  335. moai_adk/templates/.claude/skills/moai-library-shadcn/SKILL.md +372 -0
  336. moai_adk/templates/.claude/skills/moai-library-shadcn/examples.md +575 -0
  337. moai_adk/templates/.claude/skills/moai-library-shadcn/modules/advanced-patterns.md +394 -0
  338. moai_adk/templates/.claude/skills/moai-library-shadcn/modules/optimization.md +278 -0
  339. moai_adk/templates/.claude/skills/moai-library-shadcn/modules/shadcn-components.md +457 -0
  340. moai_adk/templates/.claude/skills/moai-library-shadcn/modules/shadcn-theming.md +373 -0
  341. moai_adk/templates/.claude/skills/moai-library-shadcn/reference.md +74 -0
  342. moai_adk/templates/.claude/skills/moai-mcp-figma/SKILL.md +402 -0
  343. moai_adk/templates/.claude/skills/moai-mcp-figma/advanced-patterns.md +607 -0
  344. moai_adk/templates/.claude/skills/moai-mcp-notion/SKILL.md +300 -0
  345. moai_adk/templates/.claude/skills/moai-mcp-notion/advanced-patterns.md +537 -0
  346. moai_adk/templates/.claude/skills/moai-platform-auth0/SKILL.md +291 -0
  347. moai_adk/templates/.claude/skills/moai-platform-clerk/SKILL.md +390 -0
  348. moai_adk/templates/.claude/skills/moai-platform-convex/SKILL.md +398 -0
  349. moai_adk/templates/.claude/skills/moai-platform-firebase-auth/SKILL.md +379 -0
  350. moai_adk/templates/.claude/skills/moai-platform-firestore/SKILL.md +358 -0
  351. moai_adk/templates/.claude/skills/moai-platform-neon/SKILL.md +467 -0
  352. moai_adk/templates/.claude/skills/moai-platform-railway/SKILL.md +377 -0
  353. moai_adk/templates/.claude/skills/moai-platform-supabase/SKILL.md +466 -0
  354. moai_adk/templates/.claude/skills/moai-platform-vercel/SKILL.md +482 -0
  355. moai_adk/templates/.claude/skills/moai-plugin-builder/SKILL.md +474 -0
  356. moai_adk/templates/.claude/skills/moai-plugin-builder/examples.md +621 -0
  357. moai_adk/templates/.claude/skills/moai-plugin-builder/migration.md +341 -0
  358. moai_adk/templates/.claude/skills/moai-plugin-builder/reference.md +463 -0
  359. moai_adk/templates/.claude/skills/moai-plugin-builder/validation.md +373 -0
  360. moai_adk/templates/.claude/skills/moai-security-auth0/SKILL.md +275 -0
  361. moai_adk/templates/.claude/skills/moai-security-auth0/modules/adaptive-mfa.md +233 -0
  362. moai_adk/templates/.claude/skills/moai-security-auth0/modules/akamai-integration.md +215 -0
  363. moai_adk/templates/.claude/skills/moai-security-auth0/modules/application-credentials.md +280 -0
  364. moai_adk/templates/.claude/skills/moai-security-auth0/modules/attack-protection-log-events.md +225 -0
  365. moai_adk/templates/.claude/skills/moai-security-auth0/modules/attack-protection-overview.md +140 -0
  366. moai_adk/templates/.claude/skills/moai-security-auth0/modules/bot-detection.md +144 -0
  367. moai_adk/templates/.claude/skills/moai-security-auth0/modules/breached-password-detection.md +187 -0
  368. moai_adk/templates/.claude/skills/moai-security-auth0/modules/brute-force-protection.md +189 -0
  369. moai_adk/templates/.claude/skills/moai-security-auth0/modules/certifications.md +282 -0
  370. moai_adk/templates/.claude/skills/moai-security-auth0/modules/compliance-overview.md +263 -0
  371. moai_adk/templates/.claude/skills/moai-security-auth0/modules/continuous-session-protection.md +307 -0
  372. moai_adk/templates/.claude/skills/moai-security-auth0/modules/customize-mfa.md +178 -0
  373. moai_adk/templates/.claude/skills/moai-security-auth0/modules/dpop-implementation.md +283 -0
  374. moai_adk/templates/.claude/skills/moai-security-auth0/modules/fapi-implementation.md +259 -0
  375. moai_adk/templates/.claude/skills/moai-security-auth0/modules/gdpr-compliance.md +313 -0
  376. moai_adk/templates/.claude/skills/moai-security-auth0/modules/guardian-configuration.md +269 -0
  377. moai_adk/templates/.claude/skills/moai-security-auth0/modules/highly-regulated-identity.md +272 -0
  378. moai_adk/templates/.claude/skills/moai-security-auth0/modules/jwt-fundamentals.md +248 -0
  379. moai_adk/templates/.claude/skills/moai-security-auth0/modules/mdl-verification.md +211 -0
  380. moai_adk/templates/.claude/skills/moai-security-auth0/modules/mfa-api-management.md +278 -0
  381. moai_adk/templates/.claude/skills/moai-security-auth0/modules/mfa-factors.md +226 -0
  382. moai_adk/templates/.claude/skills/moai-security-auth0/modules/mfa-overview.md +174 -0
  383. moai_adk/templates/.claude/skills/moai-security-auth0/modules/mtls-sender-constraining.md +316 -0
  384. moai_adk/templates/.claude/skills/moai-security-auth0/modules/ropg-flow-mfa.md +217 -0
  385. moai_adk/templates/.claude/skills/moai-security-auth0/modules/security-center.md +325 -0
  386. moai_adk/templates/.claude/skills/moai-security-auth0/modules/security-guidance.md +277 -0
  387. moai_adk/templates/.claude/skills/moai-security-auth0/modules/state-parameters.md +178 -0
  388. moai_adk/templates/.claude/skills/moai-security-auth0/modules/step-up-authentication.md +251 -0
  389. moai_adk/templates/.claude/skills/moai-security-auth0/modules/suspicious-ip-throttling.md +240 -0
  390. moai_adk/templates/.claude/skills/moai-security-auth0/modules/tenant-access-control.md +180 -0
  391. moai_adk/templates/.claude/skills/moai-security-auth0/modules/webauthn-fido.md +235 -0
  392. moai_adk/templates/.claude/skills/moai-workflow-jit-docs/SKILL.md +449 -0
  393. moai_adk/templates/.claude/skills/moai-workflow-jit-docs/advanced-patterns.md +379 -0
  394. moai_adk/templates/.claude/skills/moai-workflow-jit-docs/examples.md +544 -0
  395. moai_adk/templates/.claude/skills/moai-workflow-jit-docs/optimization.md +286 -0
  396. moai_adk/templates/.claude/skills/moai-workflow-jit-docs/reference.md +307 -0
  397. moai_adk/templates/.claude/skills/moai-workflow-project/README.md +190 -0
  398. moai_adk/templates/.claude/skills/moai-workflow-project/SKILL.md +390 -0
  399. moai_adk/templates/.claude/skills/moai-workflow-project/__init__.py +520 -0
  400. moai_adk/templates/.claude/skills/moai-workflow-project/complete_workflow_demo_fixed.py +574 -0
  401. moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_project_setup.py +317 -0
  402. moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_workflow_demo.py +663 -0
  403. moai_adk/templates/.claude/skills/moai-workflow-project/examples/config-migration-example.json +190 -0
  404. moai_adk/templates/.claude/skills/moai-workflow-project/examples/question-examples.json +175 -0
  405. moai_adk/templates/.claude/skills/moai-workflow-project/examples/quick_start.py +196 -0
  406. moai_adk/templates/.claude/skills/moai-workflow-project/examples.md +547 -0
  407. moai_adk/templates/.claude/skills/moai-workflow-project/modules/__init__.py +17 -0
  408. moai_adk/templates/.claude/skills/moai-workflow-project/modules/advanced-patterns.md +158 -0
  409. moai_adk/templates/.claude/skills/moai-workflow-project/modules/ask_user_integration.py +340 -0
  410. moai_adk/templates/.claude/skills/moai-workflow-project/modules/batch_questions.py +713 -0
  411. moai_adk/templates/.claude/skills/moai-workflow-project/modules/config_manager.py +538 -0
  412. moai_adk/templates/.claude/skills/moai-workflow-project/modules/documentation_manager.py +1336 -0
  413. moai_adk/templates/.claude/skills/moai-workflow-project/modules/language_initializer.py +730 -0
  414. moai_adk/templates/.claude/skills/moai-workflow-project/modules/migration_manager.py +608 -0
  415. moai_adk/templates/.claude/skills/moai-workflow-project/modules/template_optimizer.py +1005 -0
  416. moai_adk/templates/.claude/skills/moai-workflow-project/reference.md +275 -0
  417. moai_adk/templates/.claude/skills/moai-workflow-project/schemas/config-schema.json +316 -0
  418. moai_adk/templates/.claude/skills/moai-workflow-project/schemas/tab_schema.json +1434 -0
  419. moai_adk/templates/.claude/skills/moai-workflow-project/templates/config-template.json +71 -0
  420. moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/product-template.md +44 -0
  421. moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/structure-template.md +48 -0
  422. moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/tech-template.md +92 -0
  423. moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/config-manager-setup.json +109 -0
  424. moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/language-initializer.json +228 -0
  425. moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/menu-project-config.json +130 -0
  426. moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/project-batch-questions.json +97 -0
  427. moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/spec-workflow-setup.json +150 -0
  428. moai_adk/templates/.claude/skills/moai-workflow-project/test_integration_simple.py +436 -0
  429. moai_adk/templates/.claude/skills/moai-workflow-spec/SKILL.md +534 -0
  430. moai_adk/templates/.claude/skills/moai-workflow-spec/examples.md +900 -0
  431. moai_adk/templates/.claude/skills/moai-workflow-spec/reference.md +704 -0
  432. moai_adk/templates/.claude/skills/moai-workflow-templates/SKILL.md +377 -0
  433. moai_adk/templates/.claude/skills/moai-workflow-templates/examples.md +552 -0
  434. moai_adk/templates/.claude/skills/moai-workflow-templates/modules/code-templates.md +124 -0
  435. moai_adk/templates/.claude/skills/moai-workflow-templates/modules/feedback-templates.md +100 -0
  436. moai_adk/templates/.claude/skills/moai-workflow-templates/modules/template-optimizer.md +138 -0
  437. moai_adk/templates/.claude/skills/moai-workflow-templates/reference.md +346 -0
  438. moai_adk/templates/.claude/skills/moai-workflow-testing/LICENSE.txt +202 -0
  439. moai_adk/templates/.claude/skills/moai-workflow-testing/SKILL.md +456 -0
  440. moai_adk/templates/.claude/skills/moai-workflow-testing/advanced-patterns.md +576 -0
  441. moai_adk/templates/.claude/skills/moai-workflow-testing/examples/ai-powered-testing.py +294 -0
  442. moai_adk/templates/.claude/skills/moai-workflow-testing/examples/console_logging.py +35 -0
  443. moai_adk/templates/.claude/skills/moai-workflow-testing/examples/element_discovery.py +40 -0
  444. moai_adk/templates/.claude/skills/moai-workflow-testing/examples/static_html_automation.py +34 -0
  445. moai_adk/templates/.claude/skills/moai-workflow-testing/examples.md +672 -0
  446. moai_adk/templates/.claude/skills/moai-workflow-testing/modules/README.md +220 -0
  447. moai_adk/templates/.claude/skills/moai-workflow-testing/modules/ai-debugging.md +845 -0
  448. moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review.md +1416 -0
  449. moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization.md +1234 -0
  450. moai_adk/templates/.claude/skills/moai-workflow-testing/modules/smart-refactoring.md +1243 -0
  451. moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7.md +1260 -0
  452. moai_adk/templates/.claude/skills/moai-workflow-testing/optimization.md +505 -0
  453. moai_adk/templates/.claude/skills/moai-workflow-testing/reference/playwright-best-practices.md +57 -0
  454. moai_adk/templates/.claude/skills/moai-workflow-testing/reference.md +440 -0
  455. moai_adk/templates/.claude/skills/moai-workflow-testing/scripts/with_server.py +218 -0
  456. moai_adk/templates/.claude/skills/moai-workflow-testing/templates/alfred-integration.md +376 -0
  457. moai_adk/templates/.claude/skills/moai-workflow-testing/workflows/enterprise-testing-workflow.py +571 -0
  458. moai_adk/templates/.claude/skills/moai-worktree/SKILL.md +411 -0
  459. moai_adk/templates/.claude/skills/moai-worktree/examples.md +606 -0
  460. moai_adk/templates/.claude/skills/moai-worktree/modules/integration-patterns.md +982 -0
  461. moai_adk/templates/.claude/skills/moai-worktree/modules/parallel-development.md +778 -0
  462. moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-commands.md +646 -0
  463. moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-management.md +782 -0
  464. moai_adk/templates/.claude/skills/moai-worktree/reference.md +357 -0
  465. moai_adk/templates/.git-hooks/pre-commit +128 -0
  466. moai_adk/templates/.git-hooks/pre-push +365 -0
  467. moai_adk/templates/.github/workflows/ci-universal.yml +513 -0
  468. moai_adk/templates/.github/workflows/security-secrets-check.yml +179 -0
  469. moai_adk/templates/.github/workflows/spec-issue-sync.yml +337 -0
  470. moai_adk/templates/.gitignore +222 -0
  471. moai_adk/templates/.mcp.json +13 -0
  472. moai_adk/templates/.moai/config/config.yaml +58 -0
  473. moai_adk/templates/.moai/config/questions/_schema.yaml +174 -0
  474. moai_adk/templates/.moai/config/questions/tab0-init.yaml +251 -0
  475. moai_adk/templates/.moai/config/questions/tab1-user.yaml +107 -0
  476. moai_adk/templates/.moai/config/questions/tab2-project.yaml +79 -0
  477. moai_adk/templates/.moai/config/questions/tab3-git.yaml +632 -0
  478. moai_adk/templates/.moai/config/questions/tab4-quality.yaml +182 -0
  479. moai_adk/templates/.moai/config/questions/tab5-system.yaml +96 -0
  480. moai_adk/templates/.moai/config/sections/git-strategy.yaml +116 -0
  481. moai_adk/templates/.moai/config/sections/language.yaml +11 -0
  482. moai_adk/templates/.moai/config/sections/project.yaml +13 -0
  483. moai_adk/templates/.moai/config/sections/quality.yaml +17 -0
  484. moai_adk/templates/.moai/config/sections/system.yaml +24 -0
  485. moai_adk/templates/.moai/config/sections/user.yaml +5 -0
  486. moai_adk/templates/.moai/config/statusline-config.yaml +92 -0
  487. moai_adk/templates/.moai/scripts/setup-glm.py +136 -0
  488. moai_adk/templates/CLAUDE.md +642 -0
  489. moai_adk/utils/__init__.py +30 -0
  490. moai_adk/utils/banner.py +38 -0
  491. moai_adk/utils/common.py +294 -0
  492. moai_adk/utils/link_validator.py +241 -0
  493. moai_adk/utils/logger.py +147 -0
  494. moai_adk/utils/safe_file_reader.py +206 -0
  495. moai_adk/utils/timeout.py +160 -0
  496. moai_adk/utils/toon_utils.py +256 -0
  497. moai_adk/version.py +22 -0
  498. moai_adk-0.35.1.dist-info/METADATA +3018 -0
  499. moai_adk-0.35.1.dist-info/RECORD +502 -0
  500. moai_adk-0.35.1.dist-info/WHEEL +4 -0
  501. moai_adk-0.35.1.dist-info/entry_points.txt +3 -0
  502. moai_adk-0.35.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,502 @@
1
+ moai_adk/__init__.py,sha256=GSkKTzeALGivfpEG7rUOjeuVPEfeaZ32MvFj0Wmhc_I,183
2
+ moai_adk/__main__.py,sha256=CGjXgWx01kK9HhklfrDQKilZpdEPMu8Khl8uHmawb4g,5171
3
+ moai_adk/version.py,sha256=fDix75fByBNLRt8vh6PQBmRhep5eG-7Ucif2ghLBi1w,662
4
+ moai_adk/cli/__init__.py,sha256=dsDmnB7NiEBAmOxmRmYY74-KLlh7-joJmVmx2TvdfeY,120
5
+ moai_adk/cli/main.py,sha256=mYAUkUiQ_SAjfyjsYkmN2uP8-X9rTHcYq4OCHZIPwno,272
6
+ moai_adk/cli/spec_status.py,sha256=mKrjrd7EAS7m54em3kcP185nCawJQBpapVldM7Hj2hg,7850
7
+ moai_adk/cli/commands/__init__.py,sha256=TFrUGIO-LtictkPkh6aiEuAfNqXV9iiZ1fImPnK4upQ,504
8
+ moai_adk/cli/commands/analyze.py,sha256=wovPcdiTPNA6SH5h1wcxOxPD0Eln-Y00ZtHKAdsRHoU,4159
9
+ moai_adk/cli/commands/doctor.py,sha256=HaHl7GNqvMXXNvZ4D_9GLS0FYbxiKndvMnsgXmnbY-s,9726
10
+ moai_adk/cli/commands/init.py,sha256=uWJKEB86ZBHOoQJdD6YOxU7pasr7Y50bnG6IeSTqTF0,15588
11
+ moai_adk/cli/commands/language.py,sha256=jj88_URW8uPMGvkoEpMkeXfVMjqWy3JXvX9Xan3DPyY,10003
12
+ moai_adk/cli/commands/status.py,sha256=LJEm_UvX8H3VjXpZzUxfmLR-EIT5JnTRPiECOGquPPw,3370
13
+ moai_adk/cli/commands/update.py,sha256=ZX_fd6RLhJFOfQa8mly9rH1nO2sZ21fRjJ9HgJ7Otzk,102015
14
+ moai_adk/cli/prompts/__init__.py,sha256=a4_ctS4KEvGtmM9j7z8XIlMkpftohjVb9woUwZu38gE,136
15
+ moai_adk/cli/prompts/init_prompts.py,sha256=abYpmDs6Tnj4-69CNAY3NE2-2Ax2p2bhrWLFFXWAGS8,7095
16
+ moai_adk/cli/ui/__init__.py,sha256=_LoxQj57E5uwMjAxf67iVl7kI4E-XHp-2GGWq_vDN5E,902
17
+ moai_adk/cli/ui/progress.py,sha256=adj4xdiMvPOCP08KyiE5RXqHdeDoknZ4ZEOT7BP8e2I,12185
18
+ moai_adk/cli/ui/prompts.py,sha256=8yFXlw75R6CAJ2cWod9kOIWeWsjqm_zZlE7MBtq6UDs,11975
19
+ moai_adk/cli/ui/theme.py,sha256=lqJ_vdr6G1Yzv5erfNkJJ27jjT0_GoxtjVsqD5IyMrg,4028
20
+ moai_adk/cli/worktree/__init__.py,sha256=XK8kw_Hh_kvr3g_ZOAv8AuwMZUBknfmYjVxgZBGRan0,737
21
+ moai_adk/cli/worktree/__main__.py,sha256=SSGb3IcJwFAANUObW1ggVwk81cJSoBXMJS8eUeVNswY,734
22
+ moai_adk/cli/worktree/cli.py,sha256=Nbwr0bL8YDS6VXisUlY18lMD7ddLImYAT_Xc3qEpJug,26536
23
+ moai_adk/cli/worktree/exceptions.py,sha256=i8qqSzrjyP3dcyKMgHK--k-58TYAflvRdF8aeHkmup4,2774
24
+ moai_adk/cli/worktree/manager.py,sha256=eh5LBcN1PCstmymwYJr3jfsz_H18lTpXRyzLI6Zhua8,20512
25
+ moai_adk/cli/worktree/models.py,sha256=zxN_C8MZ4awyx8MunoXiCiyLtlWBS4D_GQneRP8PkPs,1804
26
+ moai_adk/cli/worktree/registry.py,sha256=-auqHNvFaTv0CumwtcYbvl1l44wh8A4Wxcg2MmISP-8,14564
27
+ moai_adk/core/PHASE2_OPTIMIZATIONS.md,sha256=L4MDq6dZOYcxbf3JY4qdFZ9qNQFeDtlWcES7KRSJhcw,15453
28
+ moai_adk/core/__init__.py,sha256=c6O2RU2mjE6gUOvHDcQzNJMLFejsoriWM-lAChnWdCQ,42
29
+ moai_adk/core/claude_integration.py,sha256=TAjJ7cO3kh4l2tHXO-hXxaUngkJYea8v2B6-ClrR1gM,13903
30
+ moai_adk/core/command_helpers.py,sha256=PhEse2rkpf87ellu_k4y_z-tsasokVqCs3fl9_UJvuA,7541
31
+ moai_adk/core/comprehensive_monitoring_system.py,sha256=h1AxxjyAWUQ7A19JeFYrKsceeNmFfx1DgQLUrQzkYcs,42962
32
+ moai_adk/core/context_manager.py,sha256=GuAGNRqQ5o9jCSqu6mN1bXiotB2_Pd5ssEH1sOROVwM,7794
33
+ moai_adk/core/enterprise_features.py,sha256=F9Vx33rWNbIX6Bt3oJKixMLPwi1WQVTSZ_z9Vabb1qo,51065
34
+ moai_adk/core/error_recovery_system.py,sha256=Zz-uN-hbu04ArQGErcdZRtIlYvgKY5SXbwgfYks2rW8,71234
35
+ moai_adk/core/event_driven_hook_system.py,sha256=4VqYNcD7upyV_PtmXQPApQ_PJDytzKslzNjvAx0uOaU,53423
36
+ moai_adk/core/input_validation_middleware.py,sha256=p3oqtR7jmzX142gq7RgRKxr7ATizoL1Y4cgcPZvH_1Y,38897
37
+ moai_adk/core/issue_creator.py,sha256=2fiONpbBC0jTWgI7QOXtr6HFQKl520kMDycgCRfKPOk,9354
38
+ moai_adk/core/jit_context_loader.py,sha256=vqvuI9Ogro2VqkEfz2a6zEP52obJIrZRWIOi7sYxwLA,35086
39
+ moai_adk/core/jit_enhanced_hook_manager.py,sha256=I3llWEMjbE24q8G0XFuMzQEB3hFQuejSiY6iQ3Z67ZU,77083
40
+ moai_adk/core/language_config.py,sha256=wnJIroHY9wuo6BExmQb3iRGeXqq_VnG0TO2agmgEF8Y,5309
41
+ moai_adk/core/language_config_resolver.py,sha256=5a4mDxGMD7sc6Suf6VYDa0PNCs_gPf4pTu8yuxttpfQ,19477
42
+ moai_adk/core/language_validator.py,sha256=s6-ZLqoYnJoLEesTSLGoMm8haDJEiSZWu2o_1UI-pHA,18872
43
+ moai_adk/core/phase_optimized_hook_scheduler.py,sha256=az-Qf9UoOfQWdkwsIgewrIuJXs0V3CBotrIXyZ-uhig,34529
44
+ moai_adk/core/realtime_monitoring_dashboard.py,sha256=vH0OQOK499P_N6Jcbccn6oYCEz3rIgk8PACWTXzUbuM,63822
45
+ moai_adk/core/robust_json_parser.py,sha256=0yk9SQzsLgDdfnYmXLiGJT3zgy2k7VeuFzt5MuwlefA,21992
46
+ moai_adk/core/rollback_manager.py,sha256=SYFoFTZ5nfJ1yYboG9CQl4Hute_CbAK7emGpGMDYC7A,36535
47
+ moai_adk/core/session_manager.py,sha256=RNmmW-b9S0slOZ5tikWmKhlJiE8jCWEki3ojiKkhjnc,20571
48
+ moai_adk/core/skill_loading_system.py,sha256=8-vTAC21bxDPZb0ZtGlQIaxMPARlXMSGaHBDLOxRyDA,21380
49
+ moai_adk/core/spec_status_manager.py,sha256=DbysDvloC5aEMs4TV0xtFI53HYRZwKH0nBgaTAPLG_w,18925
50
+ moai_adk/core/template_engine.py,sha256=-iBgugtxZnilXXbNV3IanD6C72_q0VFvs5E9HyeGRyY,11517
51
+ moai_adk/core/template_variable_synchronizer.py,sha256=y_pXtF3jGhv57_u9OJAmYthqao9i6sG-QghQnuo6CHg,16087
52
+ moai_adk/core/unified_permission_manager.py,sha256=U_9QsmGhuEvuj6Je7fwAxVOfhnYRi09tq8XNHiDjQps,26961
53
+ moai_adk/core/user_behavior_analytics.py,sha256=6YV-xd6p3fOdnrPS8LT3fU7Xoq6NcEzMrw54xXeTIYo,31296
54
+ moai_adk/core/version_sync.py,sha256=AwvfGQ_R-8_M_U9yfOeu48lu51T1IoM8DVj3C-WG2fs,15559
55
+ moai_adk/core/analysis/__init__.py,sha256=9kyEqSwDrbR6SFTCeH0CqsiLju5lJQ_7ZKJDkr-B7AM,181
56
+ moai_adk/core/analysis/session_analyzer.py,sha256=O1pdQjZO_xrNfD-HXhcHvnYwJV_MtgJzRNl5X_gBOrI,15492
57
+ moai_adk/core/config/__init__.py,sha256=2uZARVqKpGllLfRafhI-vd2p0rYbpcfX7807_BttAg8,526
58
+ moai_adk/core/config/auto_spec_config.py,sha256=iDzsckYXnUxatGnXl_vPRdpZRU2BfnBnEANq4DyD2mI,13302
59
+ moai_adk/core/config/migration.py,sha256=a4OL3Ab6zOiGx9NcPHlXU2_eTYZvUVMihupCz-SFMaU,8220
60
+ moai_adk/core/config/unified.py,sha256=A-GAkbdcOq2Px39VB9kfz7cWrRmEK57vZooKk81zhZ8,14111
61
+ moai_adk/core/diagnostics/__init__.py,sha256=aF-qC2CW0wxZDpxnlh-TILYs3kqwOIj2EjXYEXY-2j8,387
62
+ moai_adk/core/diagnostics/slash_commands.py,sha256=QV8K6MsFbJ8omeWh7nA6Ug22I2U8unU-sTrMR7KlU64,4565
63
+ moai_adk/core/git/__init__.py,sha256=5MDY6Z2kuh0hAzRcdab_jZIEEum1BVF8ZcI6xadMj3A,804
64
+ moai_adk/core/git/branch.py,sha256=Ng5Et1aIrk-M5NqPg7QL9jkIAHjo3Cj1D1gHFdhIeRI,531
65
+ moai_adk/core/git/branch_manager.py,sha256=cXWqerxXR1Iwe99MW2I1olnD0L3y0Hc1JBKQDS22_HA,3955
66
+ moai_adk/core/git/checkpoint.py,sha256=YpDZ-wJC7CgOy8IYxClciSrFFYjUnvum5YU2hO3O-UY,4216
67
+ moai_adk/core/git/commit.py,sha256=IbkD8mp6qGYCkDXqXFKoJeArbV1yoyOH9LGRaVnhp_k,1957
68
+ moai_adk/core/git/conflict_detector.py,sha256=S1ZmiX20d0jp51p4OnUYj7osBN_OQVNJwJyzVyPL3zo,14036
69
+ moai_adk/core/git/event_detector.py,sha256=eqkUMeWyHEfzFFnSNXNxqvQxwZoOFkn6-u1aW7Z9pW8,2171
70
+ moai_adk/core/git/manager.py,sha256=Cw8nmn92MNSkCkmu9bIYzVXvVF9yD_8j1iySClOJ9sM,6657
71
+ moai_adk/core/hooks/post_tool_auto_spec_completion.py,sha256=VUQIJ7xo5kapyHDb--7focMWbuHEgGLbaPD_bcS3Hx8,29455
72
+ moai_adk/core/integration/__init__.py,sha256=2B-VsFn2Qp7_K9qhi20HmQm_23K4eqYLE_x0H7L-r8s,575
73
+ moai_adk/core/integration/engine.py,sha256=zAkv336UvbFDpTeWmFq-6s3F879zWedzLYjXzEefzzk,5309
74
+ moai_adk/core/integration/integration_tester.py,sha256=uWI4qxhe8tNgTvy68f3CYa7a6DLdzY_TktulWCn0BnM,6970
75
+ moai_adk/core/integration/models.py,sha256=9g_VfjzAXgy2gdKVy-ek2h9RjY4-vTtV1RYtVF0pexI,1886
76
+ moai_adk/core/integration/utils.py,sha256=gPY5T25a4IUItfq5acC2IMQb6dB2W2juj6z-yanOxok,5720
77
+ moai_adk/core/mcp/setup.py,sha256=PiRdAPY9tnawEwWv4yDLH3SGVAYwZyQ1JdAW8W8jnKY,4406
78
+ moai_adk/core/merge/__init__.py,sha256=rR5Pk6qQ5YvuDq2HyalITZMecx_ZoOaDwQCJcpRnF88,226
79
+ moai_adk/core/merge/analyzer.py,sha256=Zs5jvadH_8ur-1fDTJexjz0mGGl3UwFvjEk5ypoYVu0,23532
80
+ moai_adk/core/migration/__init__.py,sha256=4rceVhv6HQ0bq1W6W4jqsHJF5xG6TrwRlsbvARQo6EY,439
81
+ moai_adk/core/migration/alfred_to_moai_migrator.py,sha256=WmaTT2bUUbw8UPY9GKEClMxomMiTwt8D6QdiejEy3jc,14249
82
+ moai_adk/core/migration/backup_manager.py,sha256=JU-uet3M1RnSQr-acaW29ZXIwDxEv5LMT0emuHEwHnE,9490
83
+ moai_adk/core/migration/custom_element_scanner.py,sha256=RLIQhpzIGwdop6ChVhMR_DVgGYYEVt4d72CJdXMF_cQ,13488
84
+ moai_adk/core/migration/file_migrator.py,sha256=s7KIVZfsQJMdf43iujI5qxzICUpzkr5wajsmvoa43dU,6558
85
+ moai_adk/core/migration/interactive_checkbox_ui.py,sha256=SPZ1y3NmFV7X0o2C1X3UfEEdhavpFrufnx1-QUjGDTw,17631
86
+ moai_adk/core/migration/selective_restorer.py,sha256=Ye-ahN47caa7YI8GZU93vXQKYV0GjRnyc-uwoE8N7Pg,18761
87
+ moai_adk/core/migration/template_utils.py,sha256=iZH3-uDh5JsmSOhfqmV_LEYzflTbonObObBuZn4d2b8,2252
88
+ moai_adk/core/migration/user_selection_ui.py,sha256=6Evw3hr5LVZoBNYwW5SEZM6VkFBjo_g89qQFneezfQw,12415
89
+ moai_adk/core/migration/version_detector.py,sha256=kMNZwT0LiJR7qF5ELwxnmMTK8rNlziKW09fk7QI7hYg,4665
90
+ moai_adk/core/migration/version_migrator.py,sha256=ZK2_jb62BJFueWSA6CjOlXHPuH4k6uAOwflA3lcSQ60,8093
91
+ moai_adk/core/performance/__init__.py,sha256=KmMLRqNtwXSifFWPQk9W23bon0ni0llUOWljgFVtP6U,175
92
+ moai_adk/core/performance/cache_system.py,sha256=Cu3Wn6_9ck8RfpGQgZvm3awI9h5AKU0lJMOrw9URFaw,9407
93
+ moai_adk/core/performance/parallel_processor.py,sha256=8YIFCVR_I9cS36VgP321Asz9PGzKQRMjVl22aEu6eYg,3867
94
+ moai_adk/core/project/__init__.py,sha256=9dcHdCUMbJNG2jGP_-eynQU5R4IjYbPAKk7ybp8A81Y,52
95
+ moai_adk/core/project/backup_utils.py,sha256=vyL3bA7M8tEIiVtbuxJMrqfG221Um7eknMEjZHro6LM,1660
96
+ moai_adk/core/project/checker.py,sha256=dU4TWe1gBvd6ByDsMSNpgdCdkKdymle3gvYtmsKB7FY,9388
97
+ moai_adk/core/project/detector.py,sha256=mZyRvht122scJk792RtoLx-AoblCnFg0ieb1-fe0zGc,8921
98
+ moai_adk/core/project/initializer.py,sha256=2b1PII5JcNoB-CEfsj-cmRGgNo_VamexJPC4TsNWZco,15427
99
+ moai_adk/core/project/phase_executor.py,sha256=Fmc3oeih6p3d62Vaw9ETcj61WnhVQ_kC1LszcXnbCQI,26886
100
+ moai_adk/core/project/validator.py,sha256=hhWCE8DCix2swYWib_7Jdeq05TIleTXjM4xm-lSdw14,4348
101
+ moai_adk/core/quality/__init__.py,sha256=fBOdfexGDfvibVW_6CRgjV8oGxvbCrTSjbb-JLMnBHM,155
102
+ moai_adk/core/quality/trust_checker.py,sha256=lS92t0vW9l558Gkf0sbsNvfStH7plVag8hCfcJJzjHM,12797
103
+ moai_adk/core/quality/validators/__init__.py,sha256=B4qQWr7ECxr-AmXWZYHkzXfg-9CMvt-ZVEfTWa-peog,205
104
+ moai_adk/core/quality/validators/base_validator.py,sha256=BtBaLuDCGdspu0N-o1dNt0CRaiOKMnnHQIxKEOM1lbU,453
105
+ moai_adk/core/spec/confidence_scoring.py,sha256=G4yYLu36HxKn5TafgwgplTduQtCd3Pi83GdnYKD61TM,27129
106
+ moai_adk/core/spec/ears_template_engine.py,sha256=59Hz428nB7MdwuEoiMU43JH3JwOoBpgmYkNr1yGJuZE,42213
107
+ moai_adk/core/spec/quality_validator.py,sha256=ULe3jizEX9y_KFOlFShnz_OtCew7vCgjjqXrWMePdow,25541
108
+ moai_adk/core/template/__init__.py,sha256=VVphg9ctDfLdhuTg23-nDXDsrUAF6X0xAR_1k-srBtY,281
109
+ moai_adk/core/template/backup.py,sha256=Ocf1GY1Mo_bAaT9hWL2AOSzP6MoslCHG3La-_Yc41Fk,5831
110
+ moai_adk/core/template/config.py,sha256=kHJJjjQZgSH82e7m3rrYozK8EhxEK3XajlQuv2HivbU,6053
111
+ moai_adk/core/template/languages.py,sha256=S2OdZV001sypeK5NCIfGJkVd0Hv-2dofRWj8ycL4-r4,1546
112
+ moai_adk/core/template/merger.py,sha256=maLIFhw2cxHS_Vvq62t6eKK8kgA-6TBA9K5mwTafzmI,9169
113
+ moai_adk/core/template/processor.py,sha256=oOR8_f_flJZaigxhD6brDz311HeC_S-opJ9gSOKp5jA,47022
114
+ moai_adk/foundation/__init__.py,sha256=M7EG2Zcx265TuKqP0ZsBt9qJTfYjARjRFX4VP02PbKU,1283
115
+ moai_adk/foundation/backend.py,sha256=iBFpoY6wKIAAyos6-WLmzdr1GQV5XZLrCEyX0659e98,32344
116
+ moai_adk/foundation/database.py,sha256=MJZfFaNFMm1I1jLSvSCWgHDHxk9mMKWLVFq4snE7f2A,38135
117
+ moai_adk/foundation/devops.py,sha256=lqQQeTS88hfaS-4qMa3nm4jPg6HmxOZp-GlCxwGCVbw,55839
118
+ moai_adk/foundation/ears.py,sha256=G6zL2KCSmTtGJ6cZZYptJY0pGh-FLzKnbj3qshqpOLw,15978
119
+ moai_adk/foundation/frontend.py,sha256=T1rnXTHbZsoEMJWggah2hn0tc2-esTWvo_kFOMTq7iw,29726
120
+ moai_adk/foundation/git.py,sha256=RyYDrO0cOmOIamNWSHH8nnyQK5zjP9SFJNdD7iwQ6dE,13376
121
+ moai_adk/foundation/langs.py,sha256=Iw8BNJxmdFcJJj_oVpMDL0i50faxi7HsuaFDTR54ro8,16307
122
+ moai_adk/foundation/ml_ops.py,sha256=VidOrrod3860M5L8vo3LSjpP8aNsmGD6Jy40CfQ6xQ4,34554
123
+ moai_adk/foundation/testing.py,sha256=1444uF6aTxcmsft1nueyPjeZRvjgnFtA0Zsr2rFfP4o,52723
124
+ moai_adk/foundation/git/commit_templates.py,sha256=YRZ0ndKSxeanE5Ywao0MVP2Jx8-vFeuU9eoMmmLQPUI,21769
125
+ moai_adk/foundation/trust/trust_principles.py,sha256=dkv6JCjUfhuYSzy4sgQTt8x9HenpoWQE_rtYCOLVCCA,26607
126
+ moai_adk/foundation/trust/validation_checklist.py,sha256=cGOPyNLvxxhEXjnKNlvgTX8F12TeOTj2DL3qBqjgXKY,65844
127
+ moai_adk/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ moai_adk/project/configuration.py,sha256=G0tylEhUdcpUikYvDAMnOlsGeDlEvxamzdyz7tciMCI,38766
129
+ moai_adk/project/documentation.py,sha256=thOGDRIN9A0tFiOHQAPE_YRJk-dCva_W1y__W4JrhMQ,18413
130
+ moai_adk/project/schema.py,sha256=pJf5zoIhgHbSRZ5UzxpOEdjcoHdazyLPBy3tiyTI-w8,17897
131
+ moai_adk/statusline/__init__.py,sha256=7fY3L9o5xThHcG1feEvOMxTreUyF-xSCr68WgBegOng,1029
132
+ moai_adk/statusline/alfred_detector.py,sha256=pGEw5WC_Pvxu6t2w4QWyLxNMsZg7aNeaObUXWAi9_R4,2872
133
+ moai_adk/statusline/config.py,sha256=RoMpPRJIBM98IF_22vMl7NhK240PCcBGyWnS7kipOAo,13814
134
+ moai_adk/statusline/enhanced_output_style_detector.py,sha256=wk4TX8cLYPFBGh3BRs9d3m7jHCO-f42th5xzKuM0OrA,12918
135
+ moai_adk/statusline/git_collector.py,sha256=WxEQHM7l5-9l7afdsmsqncOF1bXsI-N8yb38sj9_X64,5416
136
+ moai_adk/statusline/main.py,sha256=wfI4riayZLQ-mqSSVaDWaoDEYKBWn4v98MlSfXgZp-s,9449
137
+ moai_adk/statusline/metrics_tracker.py,sha256=mv9hJpn_kYqjDyVCNQGeOZMOQcQZfQhhs25DVpOuI_Q,2319
138
+ moai_adk/statusline/renderer.py,sha256=Y4STAb8LfCl5KbJ_5s-6QKAYfH7tSUELaZ2K1c8W_pY,11686
139
+ moai_adk/statusline/update_checker.py,sha256=iwvwMedvXYbCGlEyxIcWmZL0kMvLXg-coVm4qF9FKvc,4064
140
+ moai_adk/statusline/version_reader.py,sha256=YvcK628gAHFDAjJg0mj91FLkviMQ-4pet5NSW5m5AQI,24442
141
+ moai_adk/templates/.gitignore,sha256=AwpUv9TL-TIkRTGlv9PtUP0y-Q0AgXiqY_k9wDZ15AI,4320
142
+ moai_adk/templates/.mcp.json,sha256=oZSdN6RchIbYm4FHO0EOIsZUPq8HQS-x_bnYDcGeqfE,228
143
+ moai_adk/templates/CLAUDE.md,sha256=Ri5KNPyNF25hMNobUB_P4KCDTeZze5jJ6CfP7pRwAJI,23287
144
+ moai_adk/templates/.claude/settings.json,sha256=E-1CP9uxSVdCVHZl0OXYmw3IHd47bWUmpHsHy1psN40,4633
145
+ moai_adk/templates/.claude/agents/moai/ai-nano-banana.md,sha256=0ZILzAFy36B9DVVMgjSIH5hFdsg0NURW-pjkD02jFLA,32339
146
+ moai_adk/templates/.claude/agents/moai/builder-agent.md,sha256=hnw_jPWH95F6nTOjSUYtwhORNmNV9U4KTFbITrzGMmg,14585
147
+ moai_adk/templates/.claude/agents/moai/builder-command.md,sha256=6vZ31105HkN2q7f4Ay6tHdxtpg8JuuU2ct6g9XX5cew,44421
148
+ moai_adk/templates/.claude/agents/moai/builder-plugin.md,sha256=-IIHV5ndT6WnIA5mjxZ1im0fqmzRbMXzL077Yu6M378,20500
149
+ moai_adk/templates/.claude/agents/moai/builder-skill.md,sha256=m-xQnfv5MC7TYOpqFX3o3bwxI5W8eadjp_dswuOefig,27812
150
+ moai_adk/templates/.claude/agents/moai/expert-backend.md,sha256=GPtyiXo95vUE43kZRbl4WoHuuSrTQCQFPjkutxRUZS0,33700
151
+ moai_adk/templates/.claude/agents/moai/expert-database.md,sha256=HHb5IjpWpDUc6SmeSUjwqXC5k9Mttn-2OqzV2x04Jj4,29532
152
+ moai_adk/templates/.claude/agents/moai/expert-debug.md,sha256=ZlTZ-LqFUiV4ceH-yKsD699n41qWcvCYzh8usmCaI28,16578
153
+ moai_adk/templates/.claude/agents/moai/expert-devops.md,sha256=eAMIhjfwPg55U2aHwKVMHjjm61EleLObcYNv0ZUVFF8,29388
154
+ moai_adk/templates/.claude/agents/moai/expert-frontend.md,sha256=B-QhkwfrTmnFdaPKwiM_DYFDCfJdnmOBOcOEnLBV_vM,28733
155
+ moai_adk/templates/.claude/agents/moai/expert-performance.md,sha256=ofqOlxK7jRko96yMpliWiDfpPUQQLQihtJ6y3vFuP3I,26471
156
+ moai_adk/templates/.claude/agents/moai/expert-security.md,sha256=jIuxMU9lIRniHnNTZwGCzkofMlFEVfaU4kcwTAnrg7M,22729
157
+ moai_adk/templates/.claude/agents/moai/expert-testing.md,sha256=5fdHPjDCO5EhXZv15t2xdmWSmx03lSjOSVFhMZBjlOs,28995
158
+ moai_adk/templates/.claude/agents/moai/expert-uiux.md,sha256=SKqZianl7iu1VNgaIu6tQGbnlRGm5_vzceYezG9gUPo,41974
159
+ moai_adk/templates/.claude/agents/moai/manager-claude-code.md,sha256=AjT2E_GA927jkOU0k9zoS3CL6RrqjTT2XW15S2n0aFg,13499
160
+ moai_adk/templates/.claude/agents/moai/manager-docs.md,sha256=go-KGFSQ_v4ncobkKLDSe5gTQL_3BjTlgmW9Jx5--0s,20353
161
+ moai_adk/templates/.claude/agents/moai/manager-git.md,sha256=2bVFVlXC0K5k9q8DC0OlO7SmfnAk_IyOydoxctu_n4s,39233
162
+ moai_adk/templates/.claude/agents/moai/manager-project.md,sha256=zAVmEcacr_DIXcdH7u5OaXHTZSw3yS9byqcyCrITy10,42368
163
+ moai_adk/templates/.claude/agents/moai/manager-quality.md,sha256=wi6zw8OZ-KsUxAS3QElVCDLZM6cGDSKVFw8NP5GAczA,22920
164
+ moai_adk/templates/.claude/agents/moai/manager-spec.md,sha256=ODJuyn_Wndbk5m2BELHify5FOMxuT6sm3s1UVhlLCqo,34362
165
+ moai_adk/templates/.claude/agents/moai/manager-strategy.md,sha256=VEgZkIkOPflhvOWEtHDrb4yj_mkqS_D7O3aFMvpZWYk,28174
166
+ moai_adk/templates/.claude/agents/moai/manager-tdd.md,sha256=9zt3gIUgxwrFmPmTYQycs_t_ohUMe7zlbdaHtp8eadk,24206
167
+ moai_adk/templates/.claude/agents/moai/mcp-context7.md,sha256=uFOWZ5X2rS35kTPC863QsNaVivC5YJwFE4xbmbEqu_o,20021
168
+ moai_adk/templates/.claude/agents/moai/mcp-figma.md,sha256=4LzbgwaLMOE0QD8wUIn9BZZu5SZ-46ELXZzJJSlAzi8,58090
169
+ moai_adk/templates/.claude/agents/moai/mcp-notion.md,sha256=Uz90GkhuOp6H7Ix3EZiYDvXDZwbVyGPm7X-qYi6ckT4,34791
170
+ moai_adk/templates/.claude/agents/moai/mcp-playwright.md,sha256=IAAXVPOBrkLkEJBFxhv2BVRL9dhhq2xgcnPmcrBtBtQ,19633
171
+ moai_adk/templates/.claude/agents/moai/mcp-sequential-thinking.md,sha256=6jUuRIAmAGQnVYrdksS2x509Yj4ctc4m02_ut7wgm8k,47831
172
+ moai_adk/templates/.claude/commands/moai/0-project.md,sha256=7Nzfqn04oy2lcCFMh_mlvPi3j3GPesVFDUiJ3X3c1X4,52504
173
+ moai_adk/templates/.claude/commands/moai/1-plan.md,sha256=vA2WqP16LYE03mkrv8Rt_izJIdCa5xwl6m2Jisa7tas,50662
174
+ moai_adk/templates/.claude/commands/moai/2-run.md,sha256=nImWm0U9Be6cFCfu2gQKU2eq8kqmEiH_ijlpGdSIWTw,34395
175
+ moai_adk/templates/.claude/commands/moai/3-sync.md,sha256=_lOOTjYOoYnYm0N22AJ1W-v58HlgnthVw_-UfrR4kFI,47425
176
+ moai_adk/templates/.claude/commands/moai/9-feedback.md,sha256=0Zi6p96xfM8gQ263uCngoPjmGwDQhZXh11xnVAlbvYU,10785
177
+ moai_adk/templates/.claude/hooks/__init__.py,sha256=pY8dLZZm19j_0ofSY98-GNvZMmDz6rg6Lxs8AF_6bfI,146
178
+ moai_adk/templates/.claude/hooks/moai/__init__.py,sha256=9Yrrsvk1UeD_DVvFSPtL04cpzohjuAWkZZSGwfusXdE,159
179
+ moai_adk/templates/.claude/hooks/moai/session_end__auto_cleanup.py,sha256=aKLrGdQeZH1axdn4GhJn96FYwbYe_JREbgPgufIYi8Q,27673
180
+ moai_adk/templates/.claude/hooks/moai/session_start__show_project_info.py,sha256=o3dfylXQ4_HXl_Xj1g23BRviXp5r9zYg4zKqAkDTBiY,39130
181
+ moai_adk/templates/.claude/hooks/moai/lib/__init__.py,sha256=pl13jwa7H5i8GFsQ7RJYsSTHXzQxlR_wuS9HnN5AeyM,2208
182
+ moai_adk/templates/.claude/hooks/moai/lib/checkpoint.py,sha256=rzaME0TP2uYr_970oZsiI2QiF3zL0IOW2wcgHxDOpZQ,7799
183
+ moai_adk/templates/.claude/hooks/moai/lib/common.py,sha256=OUzQiwTPbrYekhPyCPCHSe62jaHy-sh_fNXpspeCgWo,3821
184
+ moai_adk/templates/.claude/hooks/moai/lib/config_manager.py,sha256=oKD_glLrF_M5ZCOFFpdNqqSBVOWdTtnp6xEA38-e4LM,13311
185
+ moai_adk/templates/.claude/hooks/moai/lib/config_validator.py,sha256=js0Cq1ecyMgxQ5Ettjeiv12bnDysSAfzCP68pAVaivs,25875
186
+ moai_adk/templates/.claude/hooks/moai/lib/example_config.json,sha256=IcXjdGddUs33rREcfW2C3MvfCmiZzVmdek5uvnzD2zY,2246
187
+ moai_adk/templates/.claude/hooks/moai/lib/git_operations_manager.py,sha256=zRqnRDESgoRN5d7Yh9thW7pJBi5Pj1poo8vtVBZUQ2s,21557
188
+ moai_adk/templates/.claude/hooks/moai/lib/language_validator.py,sha256=0UlEF0MB_KYfcDQXPdNKzBTZPxxGWKcO-d7OZHJhA5s,11276
189
+ moai_adk/templates/.claude/hooks/moai/lib/models.py,sha256=cRC7qKthD5oQgnCyc4RcV1RxyDJRQJe5C1ULksBAyNw,3410
190
+ moai_adk/templates/.claude/hooks/moai/lib/path_utils.py,sha256=lihIHt27UV4MSC5mFlWFxOtrPaHGhZAdFGCGAygaASw,700
191
+ moai_adk/templates/.claude/hooks/moai/lib/project.py,sha256=9u3tedsHQ7s1-cuWMZ2Z52vEtOnRFKuSRAm2HCaE9NY,27882
192
+ moai_adk/templates/.claude/hooks/moai/lib/test_hooks_improvements.py,sha256=Q5iN3c2nEbZrmUdZFSJZ7AAQrmhJR1CdG2qp12BYjUw,16768
193
+ moai_adk/templates/.claude/hooks/moai/lib/timeout.py,sha256=AswOODaJd1MDcjOf5V_y-guI8JovF48mTnZxgkww8NI,5321
194
+ moai_adk/templates/.claude/hooks/moai/lib/unified_timeout_manager.py,sha256=7iBjmKSWcJt0ofCGIVq4SO36L4wEiH7EkVlU0hihSSI,19228
195
+ moai_adk/templates/.claude/output-styles/moai/r2d2.md,sha256=qw5-4ByZj26dm3-8NIAgwk57e8j2vyQlso7JMxcGKl4,22246
196
+ moai_adk/templates/.claude/output-styles/moai/yoda.md,sha256=fdT0m6d_CnrcShHm90-i39sJvupt2OcVwpXuiKmcpY8,13754
197
+ moai_adk/templates/.claude/skills/moai-ai-nano-banana/SKILL.md,sha256=VIjh_klC6Z5Z9yaexJs9hdMPR72Ie7fGxgpO18keyrE,7877
198
+ moai_adk/templates/.claude/skills/moai-ai-nano-banana/examples.md,sha256=rMj1FDaqZ_xXID8S84mIFh6kdb_-ELB_tWZ3oCvU2xY,12123
199
+ moai_adk/templates/.claude/skills/moai-ai-nano-banana/scripts/batch_generate.py,sha256=7mPcKEIqKuxp9mFZOnLWPTxBAzP9CoHA_-vfYgQ3dIA,18719
200
+ moai_adk/templates/.claude/skills/moai-ai-nano-banana/scripts/generate_image.py,sha256=TpUSTsMuWXT0TVOPMqAtTZGDwogLpfYV4IjxahfWoSA,12487
201
+ moai_adk/templates/.claude/skills/moai-docs-generation/SKILL.md,sha256=ce51XyIVQ7JoJ5tBrYuZr2NnFgTnMffExopFSLtrryE,6284
202
+ moai_adk/templates/.claude/skills/moai-docs-generation/examples.md,sha256=pKt0itLi01sJPczBsJwwYd90lw3AzIHQg3PdFrS4E8E,9706
203
+ moai_adk/templates/.claude/skills/moai-docs-generation/reference.md,sha256=0O0_sG4-z7fkAVAhkBVLU-8ny1h9vSp1VEhvjR1MYOY,8149
204
+ moai_adk/templates/.claude/skills/moai-docs-generation/modules/README.md,sha256=OxGELTeNLsReK1vq1uMd9W1sE1kzOm3DIhh_5zw6XXU,1479
205
+ moai_adk/templates/.claude/skills/moai-docs-generation/modules/api-documentation.md,sha256=QcblquFl5MboFTSCEr7bv7U6WBdmNBrk_JKJrs7qUYQ,3086
206
+ moai_adk/templates/.claude/skills/moai-docs-generation/modules/code-documentation.md,sha256=SI__qMnLszC-yv6lp5ABB5l2Q8F0QgN0f8FoLdNcuwg,4430
207
+ moai_adk/templates/.claude/skills/moai-docs-generation/modules/multi-format-output.md,sha256=8KmyXzCpyOOERRUTTFab1Acc_WvJWZdmHEDjLM5WGhs,4567
208
+ moai_adk/templates/.claude/skills/moai-docs-generation/modules/user-guides.md,sha256=NWdZeG7d87o4Jwz-NOJCm2Aa-YyXHAeHoDDRF-Kogn0,3733
209
+ moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md,sha256=-sZ350bQLXSisK5AyEdDmFc7wTfb26ez06X5eX5Eh08,8050
210
+ moai_adk/templates/.claude/skills/moai-domain-backend/examples.md,sha256=tBLBDVV3kpKRl_6_o_0NGY0WNhoJ67-ROghjrlc0ByA,19132
211
+ moai_adk/templates/.claude/skills/moai-domain-backend/reference.md,sha256=p-zDoRVOXg1uk53IgpM6Sbv6G5oZKzSysEyiny7yOxU,12220
212
+ moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md,sha256=X1-DvRbx8mcz_8WYv3ew-CrF8ue_BOWV9FjiW5aGk30,8561
213
+ moai_adk/templates/.claude/skills/moai-domain-database/examples.md,sha256=m8g0le66YJNQje8vnCIXBCV0epmfySjmURXwxBOvGCE,24024
214
+ moai_adk/templates/.claude/skills/moai-domain-database/reference.md,sha256=pVS65BHc4xd1E5Lu0b87pEFpv19FVD66yCZlkom5XCQ,13747
215
+ moai_adk/templates/.claude/skills/moai-domain-database/modules/README.md,sha256=0XEKa1FoE62Qxp-4OIKKVGfbuGcwHODxBY1w89t2YRM,1752
216
+ moai_adk/templates/.claude/skills/moai-domain-database/modules/mongodb.md,sha256=868pb-lJFA3mFroqPpvxG9HVOtrFYXzMyp7_1bF_7Pc,5283
217
+ moai_adk/templates/.claude/skills/moai-domain-database/modules/postgresql.md,sha256=HT2OBC8UayM8yoqaabPVp4ZmSMAfsrLuVEcO_OK9euQ,4867
218
+ moai_adk/templates/.claude/skills/moai-domain-database/modules/redis.md,sha256=eFdoCUG7bYTl6cjz53goZ8aBFMND5n0unD2shcCR114,6441
219
+ moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md,sha256=olmdsC63BThvzifkqH5iaOvVsdbsI80svIFNBAbNibg,10958
220
+ moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md,sha256=a71w0M0VqzNJnk9biKSVRbv6DIgVxGk-fhNMBVGLevw,23347
221
+ moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md,sha256=A3pi00G6nH7bLh2n0MS3JiseF8FAZYUWNGBoFsZjnzE,15899
222
+ moai_adk/templates/.claude/skills/moai-domain-uiux/SKILL.md,sha256=mK73hywka-LuSOs87D7-uDM2BQJd85vjQdveuJ-2Uw8,14203
223
+ moai_adk/templates/.claude/skills/moai-domain-uiux/examples.md,sha256=cTEJgomGEU8HC1dGooCr9lsJdBDABzokN6MSRi6SRts,11540
224
+ moai_adk/templates/.claude/skills/moai-domain-uiux/reference.md,sha256=2fOEV0krUN4T-dQZTlQYMqwjk-CTW05D5a0PMOIGiOM,7855
225
+ moai_adk/templates/.claude/skills/moai-domain-uiux/modules/accessibility-wcag.md,sha256=mMcqi-DVnVDJcwmidSgwxT0rb_Lh-I5nR42-V6Bel3s,6030
226
+ moai_adk/templates/.claude/skills/moai-domain-uiux/modules/component-architecture.md,sha256=85fzlvOqytMaF7EFkZ_io243NoKXahPqeZMJ4a-ucUo,4615
227
+ moai_adk/templates/.claude/skills/moai-domain-uiux/modules/icon-libraries.md,sha256=SMtRHA6qE8jfPl7YxOvsDY4u69L_zsQQ49voX3n4FZA,9679
228
+ moai_adk/templates/.claude/skills/moai-domain-uiux/modules/theming-system.md,sha256=0EBB8bmNQo6VIwUKSVEypKXFLTzLgj8FXrHZwaW-Q2M,8661
229
+ moai_adk/templates/.claude/skills/moai-formats-data/SKILL.md,sha256=qL3Y8doE3QlngDZsEuOaxdNtXxkKae_tajCVpizaJa8,13488
230
+ moai_adk/templates/.claude/skills/moai-formats-data/examples.md,sha256=OCiOLyzRGje6WybSpXfqJ37kgcttiYkvXHUIPy4AIcI,23224
231
+ moai_adk/templates/.claude/skills/moai-formats-data/reference.md,sha256=HsdOSB6uL72LsUW9QpajBimApGZ4YDRQUNR901UW6OI,14623
232
+ moai_adk/templates/.claude/skills/moai-formats-data/modules/README.md,sha256=u1ka7_TGUH2OY_9G97zavjEsYoixRcsPi4swrx4I9W0,3120
233
+ moai_adk/templates/.claude/skills/moai-formats-data/modules/SKILL-MODULARIZATION-TEMPLATE.md,sha256=QPHQTWxkHDHHrBhSNq2bglp3327F58L9-dgGEHL_jK4,7123
234
+ moai_adk/templates/.claude/skills/moai-formats-data/modules/caching-performance.md,sha256=7Tty-34DR6d7_KvCpD6_sMtw-kA78iAOW0bONxfQRcc,12607
235
+ moai_adk/templates/.claude/skills/moai-formats-data/modules/data-validation.md,sha256=bCSHj0zJgPXsQmcypeNYpps31p3dqRz-O0STzUEoJww,15384
236
+ moai_adk/templates/.claude/skills/moai-formats-data/modules/json-optimization.md,sha256=-OvXDaMiUgbIS2lauBww43MdR7kX9FFWWGXZCBJVYWg,10048
237
+ moai_adk/templates/.claude/skills/moai-formats-data/modules/toon-encoding.md,sha256=V6hB8BwkzcU9YID--QFsZ_H-KO71gj2tXB0jwYKBD5M,7117
238
+ moai_adk/templates/.claude/skills/moai-foundation-claude/SKILL.md,sha256=LDJ4jjswXfLekBrlLc647uBoBMFtEktLfT4Jgi4bDXQ,7579
239
+ moai_adk/templates/.claude/skills/moai-foundation-claude/examples.md,sha256=2FM16_wHagY17leLXWpZ1mdl8ol0-2l6Fo1tGBuBA4g,16163
240
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference.md,sha256=JyGzwvJaXoIZNvT9IAAV-sQU9IL744SPK2L3HLPCeok,5815
241
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/best-practices-checklist.md,sha256=K0pp9qD-zexFPHrFJJBK_v-t7zBFMm2w4oWajp41MxQ,17608
242
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-custom-slash-commands-official.md,sha256=j_vIpsKDTn4TTLossz09LVcEZoy06yaladR9RXmwnKY,16046
243
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-hooks-official.md,sha256=vQsWVqUJNKXTt6k1OoptUfqsThR3r8R5mxvkGXV9VE4,10061
244
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-iam-official.md,sha256=uFvZPw8mgrKDA38qPm1L6AXRPW1M8yLYmJ2ey_zdfo4,12787
245
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-memory-official.md,sha256=Ue7XgIujqs4GhGBJy9v0u1T5Pm4wyUOoTLfS1jVpfsk,13597
246
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-settings-official.md,sha256=LWo7kK-UGTmUJchPpacoaZ2VYXWIJgpA5NHZ7bFzSrU,11685
247
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-skills-official.md,sha256=wehbHvDEbp61I_qZ7I-YA8Scb-KCHJoVafYRZVo0sdc,3361
248
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/claude-code-sub-agents-official.md,sha256=4FNiNEMKyTCZP7Gk_P5EzgWku3-F4LIEGYlYagjmzAg,7644
249
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/complete-configuration-guide.md,sha256=9HMRnxykowcXwFR_pdRns8b-xAdAQVeCMqufMiSyfJ8,3090
250
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/skill-examples.md,sha256=LP_8OTYKMUFGe7AejM1QkOjzRml3-LPnSrIKusxY7j4,45979
251
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/skill-formatting-guide.md,sha256=zfNjxUar9n9eltdSOCbWrP4q4O4nIrik4dd0vybyb1k,17315
252
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-examples.md,sha256=M9gZ3vGwbCt9wCEATlWDn0yzJyr3GHtnH0L5cUKGY7s,45821
253
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-formatting-guide.md,sha256=N7mLAkE7rC7S7FYzYqJSzPie8Nwz5hprLmgMK_Qwt0s,31259
254
+ moai_adk/templates/.claude/skills/moai-foundation-claude/reference/sub-agents/sub-agent-integration-patterns.md,sha256=51scFGpON8Ax10ozt8QtCue1uaCCSVd4DbPWIqI72wY,30865
255
+ moai_adk/templates/.claude/skills/moai-foundation-context/SKILL.md,sha256=qeC2yfKvVha0kNnqAimLv8kdto8K_JX3bf1vNqOptU4,13681
256
+ moai_adk/templates/.claude/skills/moai-foundation-context/examples.md,sha256=7FK7R0rChgVxcIUBD3qt6Guk_ZmpHsKfwio3wJ4ADx4,31487
257
+ moai_adk/templates/.claude/skills/moai-foundation-context/reference.md,sha256=09KOMed-MstBGQA5j9uBAZ5SzakaIZAmq5SsIk83eJU,6646
258
+ moai_adk/templates/.claude/skills/moai-foundation-core/SKILL.md,sha256=EPCUu6nYd9K5D5Axj6f_YbQVR4hhoKoFVWpl_cOx244,13748
259
+ moai_adk/templates/.claude/skills/moai-foundation-core/examples.md,sha256=OBa54TBi04pHMUbp2sgRml8JWlwnYKikHzs57wztFzw,10074
260
+ moai_adk/templates/.claude/skills/moai-foundation-core/reference.md,sha256=Lo-gtW93WzBIzudWH62_G2tcEhtyH3Yo8kTmSdszmsM,14213
261
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/README.md,sha256=6KIK_y3aYMYbxpyetCCu0__PzA-XOxblvH-Yrwqee_8,7758
262
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/agents-reference.md,sha256=rZ7k1u9t87J-m9gbdlwmflzSyEK3eTGHva9fMW4GLfU,12560
263
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/commands-reference.md,sha256=Y-BHY43d_SIxXz2ImAJWLFShi6eEJV1ErDrubqxdFl8,11239
264
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/delegation-patterns.md,sha256=YZiQP34IFa4DUljMJRzj4jSOtEpEqBfeLbGYqzGD0AA,17744
265
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/execution-rules.md,sha256=_WpNUemCZlCbmThyNbeF4ykGPq9vpUTRylK-vVOaSxg,17735
266
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/modular-system.md,sha256=-4pivzaz67SLQovXVPBHh8k1tYpE39_vlAObWsW0rws,15954
267
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/progressive-disclosure.md,sha256=Y4Ll6lff6Y1Ofo99ZZlwDZ0baswZg68eW7g-yNLLy9A,15369
268
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/spec-first-tdd.md,sha256=Tf2yBHcF0C-gV2H14a22VrUnLpmNwu0wV4VP59cJhz8,22003
269
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/token-optimization.md,sha256=h9l32dHiG1OaYqpaSUZb4GorbTHr9KD7eb8jB1fUsKE,18989
270
+ moai_adk/templates/.claude/skills/moai-foundation-core/modules/trust-5-framework.md,sha256=5cdrSzvUr1q-luqMS3sMWYzvFxlWvi9dY11QS8Qa8Nk,23218
271
+ moai_adk/templates/.claude/skills/moai-foundation-philosopher/SKILL.md,sha256=JDLmwOHMTtS8z-ce2AQfNpoOPz04xUA5hzbSBVmN10Q,11541
272
+ moai_adk/templates/.claude/skills/moai-foundation-philosopher/examples.md,sha256=EimKWF87CzJo7JHEZJcD-p3fIalMYLpbqyoc8HJ2Ejw,7370
273
+ moai_adk/templates/.claude/skills/moai-foundation-philosopher/reference.md,sha256=VJmRxE7xlJBWU06o4NoZypRi5Tmvxi1Y9sn1DwpxIUs,3659
274
+ moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/assumption-matrix.md,sha256=BXCvj169f7uFmgsYKOQAlZkfJ_6sShL8xKrFdvMcapI,2296
275
+ moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/cognitive-bias.md,sha256=vMvLSiRDfjA6JeTMrl8a1cD1KAkFfWvvu8aSnYl023Q,6411
276
+ moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/first-principles.md,sha256=LBa3kHggBOHvQodmpSh-juAr6vExGjuMo9g3wbSTgWE,3904
277
+ moai_adk/templates/.claude/skills/moai-foundation-philosopher/modules/trade-off-analysis.md,sha256=WRDFyyNduKx-IbLJ537kLTLMuzIeGM89hCm2GAINY18,3894
278
+ moai_adk/templates/.claude/skills/moai-foundation-quality/SKILL.md,sha256=sJABayTDiFm14FoIlA9OvfjeEbNUh324H9t5FgcxYKs,10941
279
+ moai_adk/templates/.claude/skills/moai-foundation-quality/examples.md,sha256=CHFans-AxgMRSQXJ5Jw6UbL3_d6hXVDpi22RYlbVgW8,32927
280
+ moai_adk/templates/.claude/skills/moai-foundation-quality/reference.md,sha256=Mr1kLEC1H9oUidde_u1wSHj2Xo3F1pODpjAn4tpA6Uk,26785
281
+ moai_adk/templates/.claude/skills/moai-foundation-quality/modules/best-practices.md,sha256=t98-4E5-_uByHOUgXAgbi6p2dSEkHAV07UjZnjyucKs,6973
282
+ moai_adk/templates/.claude/skills/moai-foundation-quality/modules/integration-patterns.md,sha256=kVRfxIkZbqwAo1v6lUx15NithUuew3gSb6fr64mpRKo,5945
283
+ moai_adk/templates/.claude/skills/moai-foundation-quality/modules/proactive-analysis.md,sha256=1HQedYjkDmmMpottRO5Psfy4ZjSR_gvRErAOn35_490,6367
284
+ moai_adk/templates/.claude/skills/moai-foundation-quality/modules/trust5-validation.md,sha256=5VBzkBlHoItRaxSn9Fh2cT2J6fIzLx1x29Pu264C4jA,4492
285
+ moai_adk/templates/.claude/skills/moai-foundation-quality/scripts/quality-gate.sh,sha256=n5ZwS2Yf96EB6WR6ETBGC_naY5B6a0k6KxFm5gttqF4,19884
286
+ moai_adk/templates/.claude/skills/moai-foundation-quality/templates/github-actions-quality.yml,sha256=zOBz3dahjgb--7YBWy8OlXSWYth-imBokc0ZF4h0LZM,16005
287
+ moai_adk/templates/.claude/skills/moai-foundation-quality/templates/quality-config.yaml,sha256=6bCbEgJzaDD0bZAK0nlssHUDsjKlFRpat5awCAN-hmo,11755
288
+ moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md,sha256=zJvBpMNplUkuV-BBr414xfmTFsnhrURF_RYc0Z5lj-Y,14888
289
+ moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md,sha256=Ig6h6dUdLbeKqfmcVX3F-i4oOlXjk96Lnb0sBzHx4vs,14172
290
+ moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md,sha256=9TqXBHCh5CYDFI_NpB5vt72Uu5_126aptwL8LLdDS9I,14199
291
+ moai_adk/templates/.claude/skills/moai-lang-flutter/SKILL.md,sha256=emYcYRSq5A0UvSXbGW5uIA830-kc8nXgHomcChNs0bc,12739
292
+ moai_adk/templates/.claude/skills/moai-lang-flutter/examples.md,sha256=4put7pw9DElgUHEA1hfAL_cPRHKLXMBf7g5yh8hCIJc,30549
293
+ moai_adk/templates/.claude/skills/moai-lang-flutter/reference.md,sha256=0oKJlY20eX3wFWcL4cfxuG09HB0jxNzeiq35NclDQiA,16492
294
+ moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md,sha256=QgzIlSle7aLSnhkeGqGDHj-CEXCyAfS_ibP9aMVFcnw,8341
295
+ moai_adk/templates/.claude/skills/moai-lang-go/examples.md,sha256=nUlX7vVVJe5-Rgk2MP5zTgA6NxTosxknIONYhEJO1hM,21514
296
+ moai_adk/templates/.claude/skills/moai-lang-go/reference.md,sha256=d_e16TTxwds52hUYS_ShLXSL5WM6j1wLWh6OA9nSa8c,15477
297
+ moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md,sha256=yLPR8eneZZNOVLUeLwcIw3JiKvU4Z-UHz9l-naqLZA0,11580
298
+ moai_adk/templates/.claude/skills/moai-lang-java/examples.md,sha256=ayjX4tO4kQWYXon3t_08P7g09uzF_B9zm8pS8OK0G0I,27364
299
+ moai_adk/templates/.claude/skills/moai-lang-java/reference.md,sha256=CFCyDtbrPWISuyrpoIgwlKd7I41_wM2Qqibjb-48ytU,7262
300
+ moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md,sha256=UN39DVS0zGN70b-RI-V3d2wR9fM1raq_5CFRVBTP8Aw,11716
301
+ moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md,sha256=Axup5wZlVdN6Flf5pZOs7mWJQzzRrL0oQSN2fu_py_8,30770
302
+ moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md,sha256=6jK-hbtMQ3zVwyf8ACSwd5NFZcx_nI92AzRwFiIO40Y,12752
303
+ moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md,sha256=R0OlCvJnxvJhakoXCWWnTjvTt9GBnDXIrzKAfh4Ij8k,15182
304
+ moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md,sha256=tIh1wSGP07-lEs02WgC65ViwapDOd4c91AaIGS4W0J8,12311
305
+ moai_adk/templates/.claude/skills/moai-lang-python/examples.md,sha256=XXMNdNWZn0GSCm6Epam6YGFcttEc0XFpUk5IIY23Qfw,26593
306
+ moai_adk/templates/.claude/skills/moai-lang-python/reference.md,sha256=zGhGD7BOFgdHu68aTReENIbd1-NnmKslYWOm5T8cdTE,20612
307
+ moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md,sha256=23c47ufy4OZIuEB_W9ClFhAN_a2_ixpDjHEeTDdqd2s,12578
308
+ moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md,sha256=5e7-90WvwuTO4w5u6trI2rX1sOmscp2QEbVQ-cc2bmI,15749
309
+ moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md,sha256=l22ag3vk6D1PSyH5gAQ7NRm_CVdC1CRT_Y9C3dbz9ko,9191
310
+ moai_adk/templates/.claude/skills/moai-lang-rust/examples.md,sha256=KHVO06gjrg-ZhDMeg4ZpAUUipYZMdUL4tJBlKLdou1A,15296
311
+ moai_adk/templates/.claude/skills/moai-lang-rust/reference.md,sha256=eTvqLFGCXQ0Bjcl6A8kwCmjnM92l5QfcPoiXkDNaEbM,11527
312
+ moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md,sha256=20DfQ28PZtGmUR3XseYWs7q1iEkIqazGcdeGR2lgu8E,13492
313
+ moai_adk/templates/.claude/skills/moai-lang-scala/examples.md,sha256=veBLAALZY3hzCSjF0yLNDTxPr82QRH2XdiwfT-bx6_g,19809
314
+ moai_adk/templates/.claude/skills/moai-lang-scala/reference.md,sha256=uyEQM9MGcRNXkfq_7c231nd3YEfmQu2u9R0hCeFZun4,10322
315
+ moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md,sha256=JbzDICUPS-AScekYbbqXrHMmLedeKPuePQUao8EGK-U,13767
316
+ moai_adk/templates/.claude/skills/moai-lang-swift/examples.md,sha256=C_c9vqMzF-8xGTSb6VWd3MrSgX4LquIqpVD7_NGpbog,25622
317
+ moai_adk/templates/.claude/skills/moai-lang-swift/reference.md,sha256=7vl_muyNFuX5eHczxzLOpQzp-c7VNUPvfV4QONX2jq4,17998
318
+ moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md,sha256=v2mr8ZFYlggLBG293aEc83D4PdNZpsXcLXYOIzcgnt4,10129
319
+ moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md,sha256=9nUE9uE-gG7tms3sqWpkPqUf1LfUicnS8fAAvNNlTrs,26091
320
+ moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md,sha256=D-LMxmJdMzBYY--SesXp8OwQSxr6GrkQUKqf9LmcKcg,21371
321
+ moai_adk/templates/.claude/skills/moai-library-mermaid/SKILL.md,sha256=oezdx2Tl2uSxGCx-hRq2CfItmSljR3zGRzct_1bu72M,7363
322
+ moai_adk/templates/.claude/skills/moai-library-mermaid/advanced-patterns.md,sha256=1pPhPQqEg6zS3uFV_dQxNKFyH73Kq8UK2ZpVjM57qLg,12967
323
+ moai_adk/templates/.claude/skills/moai-library-mermaid/examples.md,sha256=jNJrw_-hTPQik91j5U5441gJb2_7SqE_m_rEojZuI30,3826
324
+ moai_adk/templates/.claude/skills/moai-library-mermaid/optimization.md,sha256=ecEVWDNDCoHGvqbaWibBwdXAMzPul-gJFBXmQRHTfC4,10774
325
+ moai_adk/templates/.claude/skills/moai-library-mermaid/reference.md,sha256=iWFc05JKACWVoAwXu657kdJl74p5V_vBfWPYB-prfoQ,9057
326
+ moai_adk/templates/.claude/skills/moai-library-nextra/SKILL.md,sha256=dFiTxymTU3Tq3jgNRYK3TfV4tT3xvu2Mum8l7PGg8ks,6304
327
+ moai_adk/templates/.claude/skills/moai-library-nextra/advanced-patterns.md,sha256=FEmf2lAnsKgJguVcvDKILpEPYEWO1BsNp2aNcDOt4V4,7786
328
+ moai_adk/templates/.claude/skills/moai-library-nextra/examples.md,sha256=ywgbAPUBt4CL4YN5UDpwjxGX_vn1nwpNSW2YzwtgkQU,12446
329
+ moai_adk/templates/.claude/skills/moai-library-nextra/optimization.md,sha256=0dbwbdwe1FQToeWTvnuk7JRFM-aWnT9le6b2O6YTEb8,6145
330
+ moai_adk/templates/.claude/skills/moai-library-nextra/reference.md,sha256=_plRr5PTml46NRHLVxe1HaCt8Nvet_cSnUPzBFAKsxE,7584
331
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/advanced-deployment-patterns.md,sha256=XuevBDn_2sHMSns4KW8L6kdbB6gK5ckbuQkeycJ_O5E,3389
332
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/advanced-patterns.md,sha256=DT6Yi5Swo4OnRFtqONux8kow49dsQ4HKz9x95eMDF1g,474
333
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/configuration.md,sha256=l6_XsfHy9LuPLqXO-lhOvcbupI60riJmE9QHynxm-PY,777
334
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/content-architecture-optimization.md,sha256=FalMYxWJojHqySNmarOK6rAFMlwh4i5x4rrW0C6S748,3022
335
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/deployment.md,sha256=3oQdmA0TknStYJLqvq2V5uWWUsc2eIb5LPogwyrt3qo,686
336
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/framework-core-configuration.md,sha256=QpnLS9ka-7UhpwaYTk0nja8b8tJ47J4qfPDF07FamWU,4053
337
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/i18n-setup.md,sha256=imDts24uxeVmy-vAAj365qS-0TVf79vFT6lOzYFI9ow,586
338
+ moai_adk/templates/.claude/skills/moai-library-nextra/modules/mdx-components.md,sha256=zKE3ptmIOsi9ApFKyJU_3NQ-Ozf2Y9AFPLY0pcq_qeM,688
339
+ moai_adk/templates/.claude/skills/moai-library-shadcn/SKILL.md,sha256=u2VLC7pOJaSNiD6xEA29VShAtozYIl_87hwuCs9tCKA,11366
340
+ moai_adk/templates/.claude/skills/moai-library-shadcn/examples.md,sha256=49eLXuyr7ZorBH0DkqKNrBmEmCN46ttXMF7liJKGh78,12795
341
+ moai_adk/templates/.claude/skills/moai-library-shadcn/reference.md,sha256=CqG3N1TGg4IftCxK2TpRQJO-h6AmOsCO89glT--6Jzk,2966
342
+ moai_adk/templates/.claude/skills/moai-library-shadcn/modules/advanced-patterns.md,sha256=Ed5k9vcwfyap5TrUIjjot16Tth1KNh043ztvZS-bHW0,9139
343
+ moai_adk/templates/.claude/skills/moai-library-shadcn/modules/optimization.md,sha256=pT3lqxPVr-4bn6Bxi0sm6QBQPaD6nXUCeSoJkkEnjQk,5457
344
+ moai_adk/templates/.claude/skills/moai-library-shadcn/modules/shadcn-components.md,sha256=JHk9jEznYV00yGwHj_050aE-__K1UKU5PSqiiANLki8,10483
345
+ moai_adk/templates/.claude/skills/moai-library-shadcn/modules/shadcn-theming.md,sha256=0EBB8bmNQo6VIwUKSVEypKXFLTzLgj8FXrHZwaW-Q2M,8661
346
+ moai_adk/templates/.claude/skills/moai-mcp-figma/SKILL.md,sha256=ZSEe7OWhsGQ37AXDfqWDCqdUnsVZmDo9EKSd2VBNBsM,10738
347
+ moai_adk/templates/.claude/skills/moai-mcp-figma/advanced-patterns.md,sha256=RleyH7gOcgs5_kUV3yctKVrqgE52IOfyP522GIYHJw4,16684
348
+ moai_adk/templates/.claude/skills/moai-mcp-notion/SKILL.md,sha256=cG9te_JMLw2KAZED8zOvZ-CjY-iVZrsLPhWxLtuChIs,8641
349
+ moai_adk/templates/.claude/skills/moai-mcp-notion/advanced-patterns.md,sha256=0XvYD72H-vqiT4kW7aghkif5RuDhXlgNzGv34fgMiS4,11776
350
+ moai_adk/templates/.claude/skills/moai-platform-auth0/SKILL.md,sha256=j5pfMbInsGqvYk6nZY3Te7Y_dgRL6AY5Te9Qfrw9pig,11808
351
+ moai_adk/templates/.claude/skills/moai-platform-clerk/SKILL.md,sha256=eEK6A-M8IaI0w5WsggPw7S_ZXGKP86OxM2AiBx_TWz0,11170
352
+ moai_adk/templates/.claude/skills/moai-platform-convex/SKILL.md,sha256=TJJrewPboEdmx7A4aAE9x2Zb1gE3XV9bEvNWIgcwHu8,11516
353
+ moai_adk/templates/.claude/skills/moai-platform-firebase-auth/SKILL.md,sha256=KNOsAMJplVTltthEqGvp7X6Ed883VdjRtLFiu3Th0GI,11518
354
+ moai_adk/templates/.claude/skills/moai-platform-firestore/SKILL.md,sha256=MDOgbIHAwJZYE1GRUZZUQ5q83jMadNu8JYIvd2bfEg8,10415
355
+ moai_adk/templates/.claude/skills/moai-platform-neon/SKILL.md,sha256=OliaBNwnZcmtN4TbYDfOgTSvendTdbB1VvgP5IgwCdk,12889
356
+ moai_adk/templates/.claude/skills/moai-platform-railway/SKILL.md,sha256=vpA6kXuZnIaJez0351uOyVujdOFWR2eEeAE91KhG7ig,8579
357
+ moai_adk/templates/.claude/skills/moai-platform-supabase/SKILL.md,sha256=RA2aViLeIkPSmP0SAX1fL9NJTzk-6TeqerBaPB1Cdk4,14626
358
+ moai_adk/templates/.claude/skills/moai-platform-vercel/SKILL.md,sha256=dNO6LtqZmVOf8S3Z2Vswqzu-6i9FxuYklzN1I-VebsI,12204
359
+ moai_adk/templates/.claude/skills/moai-plugin-builder/SKILL.md,sha256=SSjhsBiRgK2BIfBlrQXM2aDQO9Fw3vJZBSdvV76L71g,10838
360
+ moai_adk/templates/.claude/skills/moai-plugin-builder/examples.md,sha256=uKAsT2PYFT62h1Abx8wwg2N4xLacxAl0fC_fPyO3-YA,11305
361
+ moai_adk/templates/.claude/skills/moai-plugin-builder/migration.md,sha256=XLwX4UGB0cy12xIQV9Rdbk-Xh2_jU1EOV2cxX9YPW2Y,5821
362
+ moai_adk/templates/.claude/skills/moai-plugin-builder/reference.md,sha256=Kt9DTq-YRm1gn8La_LUXh6Iy9PN0SmMAbNmKa_SFNcE,9254
363
+ moai_adk/templates/.claude/skills/moai-plugin-builder/validation.md,sha256=lsV2wmdvBspA2x78ilZzcd0t4t8CE7UZAzu5GOgBXNM,7870
364
+ moai_adk/templates/.claude/skills/moai-security-auth0/SKILL.md,sha256=PzBhQ9UrnHcK4jJNHYfXEKN55YGdN10SeIxtCllaV3E,10329
365
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/adaptive-mfa.md,sha256=9riv7i_A9XnHDVa48ZGUAZ6QtHto79-_VXiJBYasg5M,5376
366
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/akamai-integration.md,sha256=ERzokp5PecU4yutv0bId_EAdmXt1T3ZUEDwrSmpfZYI,5752
367
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/application-credentials.md,sha256=t6AcJWlh2wfUjzEIDKRnbCoOawn6r1eq5iWsdsw0nug,5375
368
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/attack-protection-log-events.md,sha256=8hcvD3lSnsO_yoY7HG60gh2KMgEWlMCxNiJgR30_F8Q,5252
369
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/attack-protection-overview.md,sha256=NaHP1OJS-_l9M0fbZ7Uyz1okT0tc-XKWOgLDdg5HSIw,5647
370
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/bot-detection.md,sha256=iISUCMC7upZ-omolCUKItOZF5Ep1dpQFLJkJmxplLyU,3739
371
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/breached-password-detection.md,sha256=PrPWtns6bv9mRIeJ7CCsxsBt-HuQXeasXCsdA3AuI_Q,4808
372
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/brute-force-protection.md,sha256=C4lniedEW-ANvQI1VSmKiz758OTR8Im5MvxRutB-1s4,5273
373
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/certifications.md,sha256=bygmNsQo89g3SNI97yn5bOPJFzXydmHm91_IS-RgIGc,5132
374
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/compliance-overview.md,sha256=lfPoC85AWTz1B4NljxjggmYrRprq0CKkuW43wbqkmBI,5377
375
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/continuous-session-protection.md,sha256=Qis5mHo4McTOIQz-fVYGsqVOCbcRr_QVmgjB6vvgcVc,5539
376
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/customize-mfa.md,sha256=MFbvteh1B_ADsnA33rkE-RDZjWxO9f_iB-_yGw1BDzU,4317
377
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/dpop-implementation.md,sha256=4ndPq-2nJEPaaKpKDvNR-1cMRAmCFOlvBh-79QdY7XI,6167
378
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/fapi-implementation.md,sha256=Q2YPOr_RNXkMN8o_mP4TZeMbD_Q1L7WiVtzY0aAZg9I,5489
379
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/gdpr-compliance.md,sha256=tDOpD60HGSXckSP1RYI3mDJhf1u3fwe2bvJ9UNx3nhQ,5553
380
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/guardian-configuration.md,sha256=HKiT6oY8IauY8RtLUuQ97Nef6A0a-oqFO11xxQZj_Ko,5528
381
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/highly-regulated-identity.md,sha256=Gd0EfjoKuSQ41EPnm-Qjxc3a6S6Ynj029kxvJX0z1G0,6135
382
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/jwt-fundamentals.md,sha256=DjwFCuhp7B2iHKorrXOKy-ufiQeNGMH_dd0ODqlNmas,5211
383
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/mdl-verification.md,sha256=va6wnGS0IdbL8BufbDrc2wKVHlDLscYlVfOzHhcz1dw,5321
384
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/mfa-api-management.md,sha256=d4Ob0jrCenEE5B1klnvsg8nrbvWgApCBTOJFGow1-w4,5550
385
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/mfa-factors.md,sha256=KER5MPbnIkartvyxgQMJ94fDgfV9jXEctvtkhquNbhA,4639
386
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/mfa-overview.md,sha256=_y1kNpb43k-LUOwyZLdXHjeHvB2c30aJSr9AhTu3vU8,4300
387
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/mtls-sender-constraining.md,sha256=Ljz7A_k1zPOQruAaJkyuSqZrWHndLGrOZ59u8f9fyvc,7001
388
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/ropg-flow-mfa.md,sha256=djfS0L3umS8uXkKlh8cGEqj5QwtXlAVylT2iSxXsX5o,5243
389
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/security-center.md,sha256=kNYwhn-XKck5wVAIqtehJs5wra-ZFVhA2i1e3nCNvmM,5851
390
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/security-guidance.md,sha256=n0vHqnog1-lrnN801Si5ERMZ6OCT1YNmUM_VXKpSNWc,4872
391
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/state-parameters.md,sha256=jK-BxDhSXAl2GTXxAIFN5lRizMojcdl3nQyo6esU7lo,5397
392
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/step-up-authentication.md,sha256=Wz840ysxBBawBjJQlMIt0DpIJxJYLbCBlrnVulnDevI,6009
393
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/suspicious-ip-throttling.md,sha256=gdYi6pl-Ay3_3Kk1hDG5uOoV8tLdZmWSZaA_LF89-q0,6135
394
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/tenant-access-control.md,sha256=d8HWHMuSD9y2hmFfpFAk7UyFR1Dw9HOJyeboOHWOaQ4,5151
395
+ moai_adk/templates/.claude/skills/moai-security-auth0/modules/webauthn-fido.md,sha256=9SvJ-GuT0fQ7DObiRKhRKa9haz3JKTnPy3xv3Y6JqiQ,5747
396
+ moai_adk/templates/.claude/skills/moai-workflow-jit-docs/SKILL.md,sha256=nXRblYcvo5iuBbsv6G-4b94XPXjcEXbDz3rb9J3WqU0,11706
397
+ moai_adk/templates/.claude/skills/moai-workflow-jit-docs/advanced-patterns.md,sha256=D-sfECnHvvPtXtM03Ts7sVtzZhBKYIKFaIKwwU0doaA,9953
398
+ moai_adk/templates/.claude/skills/moai-workflow-jit-docs/examples.md,sha256=QGbjT80voDA0chiK9-bRK8A4qghGARfF-OWb2O-D_S4,15220
399
+ moai_adk/templates/.claude/skills/moai-workflow-jit-docs/optimization.md,sha256=m5e3Ugw__-9wc1tp_TFUBMOUOzY1oIVbdvmYyN95elc,6457
400
+ moai_adk/templates/.claude/skills/moai-workflow-jit-docs/reference.md,sha256=wkgy_11LOsjE_ehUkbH4SsVB40dn6iPsjt9rA89gAmU,8007
401
+ moai_adk/templates/.claude/skills/moai-workflow-project/README.md,sha256=j2mvkX1UNxXcMbWwYajZGWDJfZP2uKgUdVs7j1dYHJk,5766
402
+ moai_adk/templates/.claude/skills/moai-workflow-project/SKILL.md,sha256=mDTPLKstQmoOfXBRaao475_U7o8d0-cKqUtgvZrywh4,11184
403
+ moai_adk/templates/.claude/skills/moai-workflow-project/__init__.py,sha256=TNiuszN12R8ZXXGHfXqTwgOMRNrBi2BVNbzBaiwqTLk,19520
404
+ moai_adk/templates/.claude/skills/moai-workflow-project/complete_workflow_demo_fixed.py,sha256=O3SbGcahj3TWHOltqN8ElzGCsmn6fLGcY9hysGtkhbY,21284
405
+ moai_adk/templates/.claude/skills/moai-workflow-project/examples.md,sha256=eRjGTMd7Y5_uy2o-3Xyy4SPbUZqGhsj0jcXq8Zzmmu8,14322
406
+ moai_adk/templates/.claude/skills/moai-workflow-project/reference.md,sha256=b6sDO7F0lU9ZU0KbWFlrMrEsrOrlkF6ZkGXBqjVcXkQ,9563
407
+ moai_adk/templates/.claude/skills/moai-workflow-project/test_integration_simple.py,sha256=RLd0wngVwnnONEZwMr7wBlfY-K3lhjvH9e1eBuhybOM,14468
408
+ moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_project_setup.py,sha256=fHkMLp_KuY_uL2DGwkvgwJ3LuTcRN9WsVi1N_4dXhy4,10473
409
+ moai_adk/templates/.claude/skills/moai-workflow-project/examples/complete_workflow_demo.py,sha256=dpy9FxZDAOA0Mq-4N84XXyRmjQh-Mr2lYrnvTflLJkU,24029
410
+ moai_adk/templates/.claude/skills/moai-workflow-project/examples/config-migration-example.json,sha256=Nlnkl0Qit9R8iwWfRW1VZkQlQJcIDKH1ZZ7MnqM5hzM,5162
411
+ moai_adk/templates/.claude/skills/moai-workflow-project/examples/question-examples.json,sha256=6pg7KNA-crJ0HbWmn8s35dpXPNnxgYUGf9jDFPrLhW0,6615
412
+ moai_adk/templates/.claude/skills/moai-workflow-project/examples/quick_start.py,sha256=vrRN8cIebTEh4gC1A0HQC571-2pkKhfdDDv1hTrvsQQ,6967
413
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/__init__.py,sha256=CI2_E6TBXcgR6l_oK4L8QseZi-hdnZwyv74yu-Q2CjQ,570
414
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/advanced-patterns.md,sha256=EQ8CDV7v1-zVRN8nlD1zH18GvBXfpctMtUNDRx6qch8,3935
415
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/ask_user_integration.py,sha256=CmGqtiyHUd_d_s9o04PaxYDV8qMDg5szFqTE7iW3II8,12211
416
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/batch_questions.py,sha256=ydtkVVMG4289le6Y1rhTiyz3rf0sE-GlT-pXiuZjjuc,25633
417
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/config_manager.py,sha256=_pXWeND6ggz1PNBZivU624dU4eKubxhNNSNC6zfNGe0,17895
418
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/documentation_manager.py,sha256=4sCsYsegPGIESz2V-oBZcxL7RdADLBxps3SNyapeWAs,38883
419
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/language_initializer.py,sha256=lLEZsxJag6FBOkfptXmvSUoTJk8h-tsA1YU1WKeh87o,27496
420
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/migration_manager.py,sha256=aG6UBzAK4FZYh4XH4VqTRt_aMYeop-GsyKq-KQbf32o,21320
421
+ moai_adk/templates/.claude/skills/moai-workflow-project/modules/template_optimizer.py,sha256=CfObX0uddlLU1fT_Fhff-lRQR9_Apvi6POGK0VtCBMU,40342
422
+ moai_adk/templates/.claude/skills/moai-workflow-project/schemas/config-schema.json,sha256=OszKRTGYYy7_Kz55PFLSs7UmU6T2BGM0V3AZyQy65pI,9962
423
+ moai_adk/templates/.claude/skills/moai-workflow-project/schemas/tab_schema.json,sha256=PPPfLxCgl9WeI-hAh52XZMEASLLIE-s7zoSCd7VUP6k,53083
424
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/config-template.json,sha256=-FyJX2kb5A0oZNNw1z8eiMaZQnNUddJQlV0b4RwFNfg,1637
425
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/product-template.md,sha256=kG4jCYCEKXf7m6NNcqkOyKejw3KPUXff_OJAzdFwR5w,960
426
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/structure-template.md,sha256=NpRsW1ggWLsdn8TQJHVh4x_BMtVsCNMdtwYEQD45nlQ,905
427
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/doc-templates/tech-template.md,sha256=oXOhfvvQBI_155sUu6KqRd0zgS0z3t89X5RW-0YR3_0,1752
428
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/config-manager-setup.json,sha256=K9as4bj-xg1q4Cv3U2WbX3KWOh4-9Wfbsx4bc5xA314,3031
429
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/language-initializer.json,sha256=TmyCheN9XbDjqZ7roPZieaPb-9mopc45JvKyyOS2XWw,6567
430
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/menu-project-config.json,sha256=N34rvq8uwdvg_ePI968bX6jritkCS4UJVJpZKy7uc2I,3952
431
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/project-batch-questions.json,sha256=PM0rR3J7wduAoRsgJzdsRHGEub4f55tKzhnTJmX3bEg,3010
432
+ moai_adk/templates/.claude/skills/moai-workflow-project/templates/question-templates/spec-workflow-setup.json,sha256=PPcF-nSRuu0FdBl-KTNjtN8eMtALbkgS97NbYcEskls,4449
433
+ moai_adk/templates/.claude/skills/moai-workflow-spec/SKILL.md,sha256=D_RfoElGEHMQgvY0dZdvM0bLLmbVKKNQQGZmbwmtAIU,19350
434
+ moai_adk/templates/.claude/skills/moai-workflow-spec/examples.md,sha256=RLURx0LN7a5QG_9JlvIBNngZfDOiQmXDNvERG8shfNs,28637
435
+ moai_adk/templates/.claude/skills/moai-workflow-spec/reference.md,sha256=ZpJ-XHwIHo127YTCY00GkzuvI0imrkW2WbcvvK2i65U,17774
436
+ moai_adk/templates/.claude/skills/moai-workflow-templates/SKILL.md,sha256=02orGVPJxDU22xpXCJqz2Sj5i8s08dm4YbxYcO5AYrA,12021
437
+ moai_adk/templates/.claude/skills/moai-workflow-templates/examples.md,sha256=-AxxK9znJ1PHdRQorbTJpv_nMvKDwi741WGnVOdH9As,13631
438
+ moai_adk/templates/.claude/skills/moai-workflow-templates/reference.md,sha256=RUm2zC8VsrKXukjT1vjSkLLm81SpSYpyas9tjZQseRY,10851
439
+ moai_adk/templates/.claude/skills/moai-workflow-templates/modules/code-templates.md,sha256=oQZqlzg4nAjqG378eQEWDkKRGFLLNpICP3_6B0F9dnA,2331
440
+ moai_adk/templates/.claude/skills/moai-workflow-templates/modules/feedback-templates.md,sha256=cpgisqRyy6m2xc7Tb9Iy02L5_mquFasuFgNfbPJazjM,1832
441
+ moai_adk/templates/.claude/skills/moai-workflow-templates/modules/template-optimizer.md,sha256=lf_DSKOcx9FaIBDEuv2OyPlikBnYRVJ9jxrEl0o-JK8,3042
442
+ moai_adk/templates/.claude/skills/moai-workflow-testing/LICENSE.txt,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
443
+ moai_adk/templates/.claude/skills/moai-workflow-testing/SKILL.md,sha256=jq2OBTHmDDj7yY4Vo-PQvMK1FxkQD56u1IuB03KWws4,13099
444
+ moai_adk/templates/.claude/skills/moai-workflow-testing/advanced-patterns.md,sha256=v6Zq9NQVKsS1eJ1_jwIVdLV6T-SgZz3jMUukGE93fAE,14063
445
+ moai_adk/templates/.claude/skills/moai-workflow-testing/examples.md,sha256=lIFJOudd5e2FSQ3JLW4J4Dc62dwe4wecwtiRNyJYakk,18164
446
+ moai_adk/templates/.claude/skills/moai-workflow-testing/optimization.md,sha256=zm9_PPd-Ab3y_iKvlgV3IXg-fo9ScBN8jne7RCquVN0,11052
447
+ moai_adk/templates/.claude/skills/moai-workflow-testing/reference.md,sha256=fpJhg5v1JBiYQiR7VejWanjeMP0VkI7fL1oEDhbY2j4,13991
448
+ moai_adk/templates/.claude/skills/moai-workflow-testing/examples/ai-powered-testing.py,sha256=HnzmJ6kckV2x3MfaU9FyMLgJR8ZBAA5aYW5VFAA831w,9363
449
+ moai_adk/templates/.claude/skills/moai-workflow-testing/examples/console_logging.py,sha256=DtI47CTPQzDXcE9WjCX_r2ywkEMzuIg3ODtabQx9kQM,1027
450
+ moai_adk/templates/.claude/skills/moai-workflow-testing/examples/element_discovery.py,sha256=JlT6VxMy7vBHwBC4586ffsVkwolBjEOCt__K7r71D04,1464
451
+ moai_adk/templates/.claude/skills/moai-workflow-testing/examples/static_html_automation.py,sha256=oPV4dVvDVTl5ogPIvL8Eae7ro0d3Tm7hdiUuyrHT0aE,955
452
+ moai_adk/templates/.claude/skills/moai-workflow-testing/modules/README.md,sha256=T0ro7eRFHcScf03C2fX85KqTnhqedRjwQAqCIR52V_U,7504
453
+ moai_adk/templates/.claude/skills/moai-workflow-testing/modules/ai-debugging.md,sha256=amMiPMr91-GAotp6w8Zg0KmELbE4y1CNQX8VsPjFeXc,23184
454
+ moai_adk/templates/.claude/skills/moai-workflow-testing/modules/automated-code-review.md,sha256=GDZfgpLwrgvhhKYyGKOGsZN-1z-MwWOUAdDwdJvwnik,41907
455
+ moai_adk/templates/.claude/skills/moai-workflow-testing/modules/performance-optimization.md,sha256=HenkGAd-YNNgrUkz4nb596Mt97nSyMd9vnhtMqu_png,35971
456
+ moai_adk/templates/.claude/skills/moai-workflow-testing/modules/smart-refactoring.md,sha256=2D6p1Wj5zY7VVpZI9iLgPRix7ergUDV-6RqPHyJhBMY,35328
457
+ moai_adk/templates/.claude/skills/moai-workflow-testing/modules/tdd-context7.md,sha256=edOPKE27x2fhtp__DybFQf2zZpeeAKQ_5enmPbNzq_c,37305
458
+ moai_adk/templates/.claude/skills/moai-workflow-testing/reference/playwright-best-practices.md,sha256=d09dljtZGDZ5YsDftgDldVfRmoSp_Rj3kT0EWXE5TTA,2126
459
+ moai_adk/templates/.claude/skills/moai-workflow-testing/scripts/with_server.py,sha256=A_B5Y4chAeurybJpsvCTO3zJPGmg_yZIMfyD1N_n8xY,7168
460
+ moai_adk/templates/.claude/skills/moai-workflow-testing/templates/alfred-integration.md,sha256=CJXdWOeS5LzA7oAAPq2L_Brqyw6If_SVKzNPDIbY4_s,8594
461
+ moai_adk/templates/.claude/skills/moai-workflow-testing/workflows/enterprise-testing-workflow.py,sha256=rjMjbB6RTLXvImNOX1f1igaHZAJiCAEBKrE0ogvKXVU,21177
462
+ moai_adk/templates/.claude/skills/moai-worktree/SKILL.md,sha256=HwkfFxP2DTV58r_eZSpoyTQG4NjnqjqUOrg9W447Nw8,10947
463
+ moai_adk/templates/.claude/skills/moai-worktree/examples.md,sha256=M4HZQgv5EjyyXcoz7sbSMmL97xs-mAY0L4TbSc2jl-Y,14828
464
+ moai_adk/templates/.claude/skills/moai-worktree/reference.md,sha256=V7yfjg0I1_g02uTTd-sa9az0LKTEt65TQvmlQ2MoXxU,9807
465
+ moai_adk/templates/.claude/skills/moai-worktree/modules/integration-patterns.md,sha256=su7o4DEuMICVQf1iDRfiyvfFe7uNgr9bQ2lyxQTbAj4,25619
466
+ moai_adk/templates/.claude/skills/moai-worktree/modules/parallel-development.md,sha256=LLt6802RG6qovwgyN7ezWQWDWa0SHslAvCJ6n9jDR1E,19677
467
+ moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-commands.md,sha256=tf6iQamecQZLYbo1rjScHerYDrCyO0rLeY5tfHkc5WI,14108
468
+ moai_adk/templates/.claude/skills/moai-worktree/modules/worktree-management.md,sha256=XPq5xMeYHKarmLIxGH_QRjQwr0VZCZlrBpZIFI_kkFA,21441
469
+ moai_adk/templates/.git-hooks/pre-commit,sha256=Zl0DQ4gv6uh-grHTRRO0dBnZyqmN2YonYwlSYzHDNwM,4469
470
+ moai_adk/templates/.git-hooks/pre-push,sha256=DxCcnTq00ttNraz61nD50Sr6W1OeW9yS_7DBVk5y2-o,15589
471
+ moai_adk/templates/.github/workflows/ci-universal.yml,sha256=y-Vz8LwyIwxWazXp-s_3NYKKaLAoYggykIgBQ0JHk3I,15456
472
+ moai_adk/templates/.github/workflows/security-secrets-check.yml,sha256=FdXNhCttE5lppm1wGAidhERXUy7E7ctpoGMgzPJdvRs,6039
473
+ moai_adk/templates/.github/workflows/spec-issue-sync.yml,sha256=LWcsf-Oorj2sLQgXb_Nr5D4tvVv9erZIiqruCdEChvg,13194
474
+ moai_adk/templates/.moai/config/config.yaml,sha256=UQu-XEtyn8gTwSHgZYSfpnl3Pc4NmmDzDCrehJmiiWM,1832
475
+ moai_adk/templates/.moai/config/statusline-config.yaml,sha256=g5GkeWH4AQ8TjXpI0-WEHjvNXbDSabEQeFxE3MFu9cM,4439
476
+ moai_adk/templates/.moai/config/questions/_schema.yaml,sha256=c6nyCJi9A2MrcUjft2S8jgGart2JZ7bz4Uq7veWTyoE,5616
477
+ moai_adk/templates/.moai/config/questions/tab0-init.yaml,sha256=Lxv7o_Omw1ZHt76qzQ8YGrsHzcy0Oju221-A5KR19dI,8458
478
+ moai_adk/templates/.moai/config/questions/tab1-user.yaml,sha256=nOlvtii7zxJ-n-MQUTeW86YqmpjFbTv9Zl94t-ijAck,3672
479
+ moai_adk/templates/.moai/config/questions/tab2-project.yaml,sha256=Q-e3RjLh6tlW7zrhFljwCgYPWHZ7rzLUc0WL8m4y5ps,2552
480
+ moai_adk/templates/.moai/config/questions/tab3-git.yaml,sha256=sKMfha95gMWi7zjQducnjEkZ6ztMthhQu1DgW7OxfKw,21447
481
+ moai_adk/templates/.moai/config/questions/tab4-quality.yaml,sha256=4OzwFrNL8WlBZ5DAUwNSqxUYQcgcuMhuCw4B-bhrABY,5962
482
+ moai_adk/templates/.moai/config/questions/tab5-system.yaml,sha256=YrjhhokrtsTG7aXGmrg-avFiw4YCfBQZOWMWXm5bhIY,3000
483
+ moai_adk/templates/.moai/config/sections/git-strategy.yaml,sha256=X6blCj-u2CbuBFDqigIviNS5QQ6EKkR5x13JRFy1Euw,2780
484
+ moai_adk/templates/.moai/config/sections/language.yaml,sha256=AtPzx-cmBitr8G59skdjWdri6WuepZ3z9NWNuk64Lm0,705
485
+ moai_adk/templates/.moai/config/sections/project.yaml,sha256=En7Me8Juw1V4Sg3zOPPyzwjBFln4h0ERNUI1zBtH_fg,500
486
+ moai_adk/templates/.moai/config/sections/quality.yaml,sha256=C74pi62xQFScpbDMqDbPmn69UFFacHGaq-NZlKZKybI,650
487
+ moai_adk/templates/.moai/config/sections/system.yaml,sha256=81-Mab1WJNTLzkEAYEuzpc0IfsiqEcYVSDZdmZ83_lE,1499
488
+ moai_adk/templates/.moai/config/sections/user.yaml,sha256=geJx838ftGMAI27EvTzxiLMHyST17VBosajvjsebmqM,188
489
+ moai_adk/templates/.moai/scripts/setup-glm.py,sha256=tvkek36nmLC_H_cHRyEGojhc3yrl3SUi6BrSI8sNy14,4714
490
+ moai_adk/utils/__init__.py,sha256=V9HCYtAXsy2UK2g7_j0x61M7qQxbks3hU5pD6vjuCSo,605
491
+ moai_adk/utils/banner.py,sha256=sEoAWQngIbsJG1mUziCJ1MPf1kTIoEn7jsg2170Es98,1876
492
+ moai_adk/utils/common.py,sha256=d7289A7emhXJo2aMFU19apcZnS5kw3sUr_GPkQbx2mU,9391
493
+ moai_adk/utils/link_validator.py,sha256=YbbYq1Gqv8E5_4W8w5KKlxTeK0l6Ws8ij-Sd6SIvzDk,8133
494
+ moai_adk/utils/logger.py,sha256=bwC9wDYJMHvcVz5dfBf9HT5b_bVkqE1Ka9QQojf2hr4,4628
495
+ moai_adk/utils/safe_file_reader.py,sha256=5hLT9onVPeLxRDqYottAxYEwS5NXfMU0GBux4VYU53Q,5981
496
+ moai_adk/utils/timeout.py,sha256=6D7Tv8LpkoNTiYT5brv4L00LH1X2a5qhsRyWX5zvBaM,5272
497
+ moai_adk/utils/toon_utils.py,sha256=ZPT5wU5yeBp0lcpm52GflrSLC-zNOJ163gGZiEbEk1c,7843
498
+ moai_adk-0.35.1.dist-info/METADATA,sha256=CP-0YqP0DH-SFkoNTk1ltbC4yOA1DQwJ4hSDVI2xg1Q,91373
499
+ moai_adk-0.35.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
500
+ moai_adk-0.35.1.dist-info/entry_points.txt,sha256=UR4WEorqnFCczm0mgtIGZMmdjrSSPmv9C5OWFQgUBn4,104
501
+ moai_adk-0.35.1.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
502
+ moai_adk-0.35.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ moai-adk = moai_adk.__main__:main
3
+ moai-worktree = moai_adk.cli.worktree.__main__:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 MoAI-ADK Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.