moai-adk 0.4.5__py3-none-any.whl → 0.20.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of moai-adk might be problematic. Click here for more details.
- moai_adk/__init__.py +1 -1
- moai_adk/__main__.py +74 -1
- moai_adk/cli/commands/__init__.py +1 -1
- moai_adk/cli/commands/analyze.py +119 -0
- moai_adk/cli/commands/backup.py +25 -1
- moai_adk/cli/commands/doctor.py +31 -5
- moai_adk/cli/commands/improve_user_experience.py +307 -0
- moai_adk/cli/commands/init.py +111 -10
- moai_adk/cli/commands/status.py +33 -3
- moai_adk/cli/commands/update.py +921 -130
- moai_adk/cli/commands/validate_links.py +120 -0
- moai_adk/cli/prompts/init_prompts.py +22 -87
- moai_adk/core/analysis/__init__.py +9 -0
- moai_adk/core/analysis/session_analyzer.py +388 -0
- moai_adk/core/analysis/tag_chain_analyzer.py +344 -0
- moai_adk/core/analysis/tag_chain_repair.py +879 -0
- moai_adk/core/config/__init__.py +19 -0
- moai_adk/core/config/migration.py +235 -0
- moai_adk/core/git/__init__.py +1 -1
- moai_adk/core/git/branch.py +1 -1
- moai_adk/core/git/commit.py +1 -1
- moai_adk/core/git/manager.py +1 -1
- moai_adk/core/issue_creator.py +313 -0
- moai_adk/core/mcp/setup.py +56 -0
- moai_adk/core/mcp/setup_old.py +296 -0
- moai_adk/core/project/backup_utils.py +1 -1
- moai_adk/core/project/checker.py +2 -2
- moai_adk/core/project/detector.py +211 -12
- moai_adk/core/project/initializer.py +85 -15
- moai_adk/core/project/phase_executor.py +76 -13
- moai_adk/core/project/validator.py +13 -13
- moai_adk/core/quality/__init__.py +1 -1
- moai_adk/core/quality/trust_checker.py +1 -1
- moai_adk/core/quality/validators/__init__.py +1 -1
- moai_adk/core/quality/validators/base_validator.py +1 -1
- moai_adk/core/tags/__init__.py +86 -0
- moai_adk/core/tags/auto_corrector.py +693 -0
- moai_adk/core/tags/ci_validator.py +463 -0
- moai_adk/core/tags/cli.py +283 -0
- moai_adk/core/tags/generator.py +109 -0
- moai_adk/core/tags/inserter.py +99 -0
- moai_adk/core/tags/mapper.py +126 -0
- moai_adk/core/tags/parser.py +76 -0
- moai_adk/core/tags/policy_validator.py +580 -0
- moai_adk/core/tags/pre_commit_validator.py +421 -0
- moai_adk/core/tags/reporter.py +956 -0
- moai_adk/core/tags/rollback_manager.py +525 -0
- moai_adk/core/tags/tags.py +149 -0
- moai_adk/core/tags/validator.py +897 -0
- moai_adk/core/template/__init__.py +1 -1
- moai_adk/core/template/backup.py +1 -1
- moai_adk/core/template/merger.py +50 -1
- moai_adk/core/template/processor.py +119 -13
- moai_adk/core/template_engine.py +268 -0
- moai_adk/templates/.claude/agents/alfred/backend-expert.md +348 -0
- moai_adk/templates/.claude/agents/alfred/cc-manager.md +209 -944
- moai_adk/templates/.claude/agents/alfred/database-expert.md +352 -0
- moai_adk/templates/.claude/agents/alfred/debug-helper.md +34 -5
- moai_adk/templates/.claude/agents/alfred/devops-expert.md +464 -0
- moai_adk/templates/.claude/agents/alfred/doc-syncer.md +38 -8
- moai_adk/templates/.claude/agents/alfred/format-expert.md +469 -0
- moai_adk/templates/.claude/agents/alfred/frontend-expert.md +357 -0
- moai_adk/templates/.claude/agents/alfred/git-manager.md +128 -9
- moai_adk/templates/.claude/agents/alfred/implementation-planner.md +104 -6
- moai_adk/templates/.claude/agents/alfred/project-manager.md +88 -16
- moai_adk/templates/.claude/agents/alfred/quality-gate.md +36 -9
- moai_adk/templates/.claude/agents/alfred/security-expert.md +270 -0
- moai_adk/templates/.claude/agents/alfred/skill-factory.md +865 -0
- moai_adk/templates/.claude/agents/alfred/spec-builder.md +214 -43
- moai_adk/templates/.claude/agents/alfred/tag-agent.md +111 -9
- moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +309 -160
- moai_adk/templates/.claude/agents/alfred/trust-checker.md +36 -7
- moai_adk/templates/.claude/agents/alfred/ui-ux-expert.md +605 -0
- moai_adk/templates/.claude/commands/alfred/0-project.md +393 -966
- moai_adk/templates/.claude/commands/alfred/1-plan.md +651 -367
- moai_adk/templates/.claude/commands/alfred/2-run.md +388 -241
- moai_adk/templates/.claude/commands/alfred/3-sync.md +1921 -410
- moai_adk/templates/.claude/commands/alfred/9-feedback.md +153 -0
- moai_adk/templates/.claude/commands/alfred/release-new.md +3604 -0
- moai_adk/templates/.claude/hooks/alfred/core/project.py +484 -20
- moai_adk/templates/.claude/hooks/alfred/core/timeout.py +136 -0
- moai_adk/templates/.claude/hooks/alfred/core/ttl_cache.py +108 -0
- moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +198 -0
- moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +14 -6
- moai_adk/templates/.claude/hooks/alfred/post_tool__enable_streaming_ui.py +50 -0
- moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py +93 -0
- moai_adk/templates/.claude/hooks/alfred/post_tool__tag_auto_corrector.py +407 -0
- moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py +99 -0
- moai_adk/templates/.claude/hooks/alfred/pre_tool__realtime_tag_monitor.py +335 -0
- moai_adk/templates/.claude/hooks/alfred/pre_tool__tag_policy_validator.py +325 -0
- moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py +93 -0
- moai_adk/templates/.claude/hooks/alfred/session_start__auto_cleanup.py +580 -0
- moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py +298 -0
- moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py +170 -0
- moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/checkpoint.py +3 -3
- moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/context.py +5 -5
- moai_adk/templates/.claude/hooks/alfred/shared/core/project.py +749 -0
- moai_adk/templates/.claude/hooks/alfred/shared/core/tags.py +230 -0
- moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +198 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/__init__.py +21 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/daily_analysis.py +351 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py +154 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py +174 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/tool.py +87 -0
- moai_adk/templates/.claude/hooks/alfred/shared/handlers/user.py +61 -0
- moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py +111 -0
- moai_adk/templates/.claude/hooks/alfred/utils/__init__.py +1 -0
- moai_adk/templates/.claude/hooks/alfred/utils/hook_config.py +94 -0
- moai_adk/templates/.claude/hooks/alfred/utils/timeout.py +161 -0
- moai_adk/templates/.claude/output-styles/alfred/alfred-moai-adk-beginner.md +267 -0
- moai_adk/templates/.claude/output-styles/alfred/keating-personal-tutor.md +440 -0
- moai_adk/templates/.claude/output-styles/alfred/r2d2-agentic-coding.md +583 -0
- moai_adk/templates/.claude/settings.json +96 -14
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/SKILL.md +70 -0
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/examples.md +62 -0
- moai_adk/templates/.claude/skills/moai-alfred-agent-guide/reference.md +242 -0
- moai_adk/templates/.claude/skills/moai-alfred-ask-user-questions/SKILL.md +237 -0
- moai_adk/templates/.claude/skills/moai-alfred-ask-user-questions/examples.md +871 -0
- moai_adk/templates/.claude/skills/moai-alfred-ask-user-questions/reference.md +653 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/README.md +162 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/SKILL.md +227 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/examples.md +354 -0
- moai_adk/templates/.claude/skills/moai-alfred-clone-pattern/reference.md +158 -0
- moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/SKILL.md +179 -79
- moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/examples.md +117 -0
- moai_adk/templates/.claude/skills/moai-alfred-code-reviewer/scripts/pre-review-check.sh +62 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/SKILL.md +132 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/examples.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-config-schema/reference.md +444 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/SKILL.md +62 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/examples.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-context-budget/reference.md +405 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/SKILL.md +51 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/examples.md +355 -0
- moai_adk/templates/.claude/skills/moai-alfred-dev-guide/reference.md +239 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/SKILL.md +323 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/examples.md +286 -0
- moai_adk/templates/.claude/skills/moai-alfred-expertise-detection/reference.md +126 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/SKILL.md +229 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-issue-labels/reference.md +150 -0
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/SKILL.md +87 -73
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-alfred-language-detection/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/README.md +42 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/SKILL.md +429 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/examples.md +520 -0
- moai_adk/templates/.claude/skills/moai-alfred-personas/reference.md +405 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/SKILL.md +89 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/examples.md +122 -0
- moai_adk/templates/.claude/skills/moai-alfred-practices/reference.md +369 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/SKILL.md +508 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/examples.md +481 -0
- moai_adk/templates/.claude/skills/moai-alfred-proactive-suggestions/reference.md +100 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/SKILL.md +77 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/examples.md +265 -0
- moai_adk/templates/.claude/skills/moai-alfred-rules/reference.md +539 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/SKILL.md +320 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-session-state/reference.md +84 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/README.md +137 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/SKILL.md +219 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/examples/validate-spec.sh +161 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/examples.md +541 -0
- moai_adk/templates/.claude/skills/moai-alfred-spec-authoring/reference.md +622 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/SKILL.md +19 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/examples.md +4 -0
- moai_adk/templates/.claude/skills/moai-alfred-todowrite-pattern/reference.md +211 -0
- moai_adk/templates/.claude/skills/moai-alfred-workflow/SKILL.md +288 -0
- moai_adk/templates/.claude/skills/moai-cc-agents/SKILL.md +269 -0
- moai_adk/templates/.claude/skills/moai-cc-agents/templates/agent-template.md +32 -0
- moai_adk/templates/.claude/skills/moai-cc-claude-md/SKILL.md +298 -0
- moai_adk/templates/.claude/skills/moai-cc-claude-md/templates/CLAUDE-template.md +26 -0
- moai_adk/templates/.claude/skills/moai-cc-commands/SKILL.md +307 -0
- moai_adk/templates/.claude/skills/moai-cc-commands/templates/command-template.md +21 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/SKILL.md +252 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/pre-bash-check.sh +19 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/preserve-permissions.sh +19 -0
- moai_adk/templates/.claude/skills/moai-cc-hooks/scripts/validate-bash-command.py +24 -0
- moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/SKILL.md +199 -0
- moai_adk/templates/.claude/skills/moai-cc-mcp-plugins/templates/settings-mcp-template.json +39 -0
- moai_adk/templates/.claude/skills/moai-cc-memory/SKILL.md +316 -0
- moai_adk/templates/.claude/skills/moai-cc-memory/templates/session-summary-template.md +18 -0
- moai_adk/templates/.claude/skills/moai-cc-settings/SKILL.md +263 -0
- moai_adk/templates/.claude/skills/moai-cc-settings/templates/settings-complete-template.json +30 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/CHECKLIST.md +482 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/EXAMPLES.md +303 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/INTERACTIVE-DISCOVERY.md +524 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/METADATA.md +477 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/PARALLEL-ANALYSIS-REPORT.md +429 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/PYTHON-VERSION-MATRIX.md +391 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/SKILL-FACTORY-WORKFLOW.md +431 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/SKILL-UPDATE-ADVISOR.md +577 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/SKILL.md +273 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/STEP-BY-STEP-GUIDE.md +466 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/STRUCTURE.md +583 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/WEB-RESEARCH.md +526 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/reference.md +608 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/scripts/generate-structure.sh +328 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/scripts/validate-skill.sh +312 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/SKILL_TEMPLATE.md +245 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/examples-template.md +285 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/reference-template.md +278 -0
- moai_adk/templates/.claude/skills/moai-cc-skill-factory/templates/scripts-template.sh +303 -0
- moai_adk/templates/.claude/skills/moai-cc-skills/SKILL.md +291 -0
- moai_adk/templates/.claude/skills/moai-cc-skills/templates/SKILL-template.md +15 -0
- moai_adk/templates/.claude/skills/moai-change-logger/SKILL.md +563 -0
- moai_adk/templates/.claude/skills/moai-design-systems/SKILL.md +802 -0
- moai_adk/templates/.claude/skills/moai-design-systems/examples.md +1238 -0
- moai_adk/templates/.claude/skills/moai-design-systems/reference.md +673 -0
- moai_adk/templates/.claude/skills/moai-domain-backend/SKILL.md +234 -43
- moai_adk/templates/.claude/skills/moai-domain-backend/examples.md +1633 -0
- moai_adk/templates/.claude/skills/moai-domain-backend/reference.md +660 -0
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/SKILL.md +97 -69
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-cli-tool/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-data-science/SKILL.md +97 -72
- moai_adk/templates/.claude/skills/moai-domain-data-science/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-data-science/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-database/SKILL.md +97 -74
- moai_adk/templates/.claude/skills/moai-domain-database/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-database/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-devops/SKILL.md +98 -74
- moai_adk/templates/.claude/skills/moai-domain-devops/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-devops/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/SKILL.md +102 -73
- moai_adk/templates/.claude/skills/moai-domain-frontend/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-frontend/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-domain-ml/SKILL.md +97 -73
- moai_adk/templates/.claude/skills/moai-domain-ml/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-ml/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/SKILL.md +97 -67
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-mobile-app/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-security/SKILL.md +97 -79
- moai_adk/templates/.claude/skills/moai-domain-security/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-security/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-domain-web-api/SKILL.md +97 -71
- moai_adk/templates/.claude/skills/moai-domain-web-api/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-domain-web-api/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-essentials-debug/SKILL.md +265 -64
- moai_adk/templates/.claude/skills/moai-essentials-debug/examples.md +1064 -0
- moai_adk/templates/.claude/skills/moai-essentials-debug/reference.md +1047 -0
- moai_adk/templates/.claude/skills/moai-essentials-perf/SKILL.md +87 -78
- moai_adk/templates/.claude/skills/moai-essentials-perf/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-essentials-perf/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-essentials-refactor/SKILL.md +87 -70
- moai_adk/templates/.claude/skills/moai-essentials-refactor/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-essentials-refactor/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md +87 -86
- moai_adk/templates/.claude/skills/moai-essentials-review/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-essentials-review/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +80 -62
- moai_adk/templates/.claude/skills/moai-foundation-ears/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-ears/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md +207 -50
- moai_adk/templates/.claude/skills/moai-foundation-git/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-git/reference.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-langs/SKILL.md +90 -71
- moai_adk/templates/.claude/skills/moai-foundation-langs/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-langs/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-specs/SKILL.md +78 -58
- moai_adk/templates/.claude/skills/moai-foundation-specs/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-specs/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-tags/SKILL.md +78 -51
- moai_adk/templates/.claude/skills/moai-foundation-tags/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-foundation-tags/reference.md +28 -0
- moai_adk/templates/.claude/skills/moai-foundation-trust/.!11330!examples.md +0 -0
- moai_adk/templates/.claude/skills/moai-foundation-trust/SKILL.md +253 -32
- moai_adk/templates/.claude/skills/moai-foundation-trust/examples.md +0 -0
- moai_adk/templates/.claude/skills/moai-foundation-trust/reference.md +1099 -0
- moai_adk/templates/.claude/skills/moai-jit-docs-enhanced/SKILL.md +460 -0
- moai_adk/templates/.claude/skills/moai-lang-c/SKILL.md +98 -74
- moai_adk/templates/.claude/skills/moai-lang-c/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-c/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/SKILL.md +98 -76
- moai_adk/templates/.claude/skills/moai-lang-cpp/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-cpp/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/SKILL.md +2358 -70
- moai_adk/templates/.claude/skills/moai-lang-csharp/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-csharp/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-dart/SKILL.md +2962 -68
- moai_adk/templates/.claude/skills/moai-lang-dart/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-dart/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-go/SKILL.md +1898 -70
- moai_adk/templates/.claude/skills/moai-lang-go/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-go/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-java/SKILL.md +1465 -68
- moai_adk/templates/.claude/skills/moai-lang-java/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-java/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-javascript/SKILL.md +2364 -66
- moai_adk/templates/.claude/skills/moai-lang-javascript/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-javascript/reference.md +32 -0
- moai_adk/templates/.claude/skills/moai-lang-kotlin/SKILL.md +1630 -69
- moai_adk/templates/.claude/skills/moai-lang-kotlin/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-kotlin/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-php/SKILL.md +89 -61
- moai_adk/templates/.claude/skills/moai-lang-php/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-php/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-python/SKILL.md +735 -66
- moai_adk/templates/.claude/skills/moai-lang-python/examples.md +624 -0
- moai_adk/templates/.claude/skills/moai-lang-python/reference.md +316 -0
- moai_adk/templates/.claude/skills/moai-lang-r/SKILL.md +97 -73
- moai_adk/templates/.claude/skills/moai-lang-r/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-r/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/SKILL.md +98 -73
- moai_adk/templates/.claude/skills/moai-lang-ruby/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-ruby/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-rust/SKILL.md +1834 -70
- moai_adk/templates/.claude/skills/moai-lang-rust/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-rust/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/SKILL.md +99 -74
- moai_adk/templates/.claude/skills/moai-lang-scala/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-scala/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-shell/SKILL.md +97 -74
- moai_adk/templates/.claude/skills/moai-lang-shell/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-shell/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-sql/SKILL.md +98 -74
- moai_adk/templates/.claude/skills/moai-lang-sql/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-sql/reference.md +31 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/SKILL.md +1959 -69
- moai_adk/templates/.claude/skills/moai-lang-swift/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-swift/reference.md +30 -0
- moai_adk/templates/.claude/skills/moai-lang-template/SKILL.md +348 -0
- moai_adk/templates/.claude/skills/moai-lang-template/VARIABLES.md +98 -0
- moai_adk/templates/.claude/skills/moai-lang-typescript/SKILL.md +1230 -66
- moai_adk/templates/.claude/skills/moai-lang-typescript/examples.md +29 -0
- moai_adk/templates/.claude/skills/moai-lang-typescript/reference.md +34 -0
- moai_adk/templates/.claude/skills/moai-learning-optimizer/SKILL.md +575 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/README.md +50 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/SKILL.md +304 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/examples.md +417 -0
- moai_adk/templates/.claude/skills/moai-project-batch-questions/reference.md +704 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/README.md +87 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/SKILL.md +552 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/examples.md +1109 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/reference.md +514 -0
- moai_adk/templates/.claude/skills/moai-project-config-manager/validate.py +106 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/README.md +11 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/SKILL.md +622 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/examples.md +20 -0
- moai_adk/templates/.claude/skills/moai-project-documentation/reference.md +12 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/README.md +152 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/SKILL.md +285 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/examples.md +333 -0
- moai_adk/templates/.claude/skills/moai-project-language-initializer/reference.md +386 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/README.md +49 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/SKILL.md +319 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/examples.md +58 -0
- moai_adk/templates/.claude/skills/moai-project-template-optimizer/reference.md +123 -0
- moai_adk/templates/.claude/skills/moai-session-info/SKILL.md +314 -0
- moai_adk/templates/.claude/skills/moai-streaming-ui/SKILL.md +552 -0
- moai_adk/templates/.claude/skills/moai-tag-policy-validator/SKILL.md +570 -0
- moai_adk/templates/.git-hooks/pre-commit +66 -0
- moai_adk/templates/.git-hooks/pre-push +255 -0
- moai_adk/templates/.github/workflows/c-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/cpp-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/csharp-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/dart-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/go-tag-validation.yml +130 -0
- moai_adk/templates/.github/workflows/java-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/javascript-tag-validation.yml +135 -0
- moai_adk/templates/.github/workflows/kotlin-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/moai-gitflow.yml +166 -3
- moai_adk/templates/.github/workflows/moai-release-create.yml +100 -0
- moai_adk/templates/.github/workflows/moai-release-pipeline.yml +188 -0
- moai_adk/templates/.github/workflows/php-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/python-tag-validation.yml +118 -0
- moai_adk/templates/.github/workflows/release.yml +118 -0
- moai_adk/templates/.github/workflows/ruby-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/rust-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/shell-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/spec-issue-sync.yml +338 -0
- moai_adk/templates/.github/workflows/swift-tag-validation.yml +11 -0
- moai_adk/templates/.github/workflows/tag-report.yml +269 -0
- moai_adk/templates/.github/workflows/tag-validation.yml +186 -0
- moai_adk/templates/.github/workflows/typescript-tag-validation.yml +154 -0
- moai_adk/templates/.mcp.json +31 -0
- moai_adk/templates/.moai/config.json +80 -7
- moai_adk/templates/CLAUDE.md +562 -546
- moai_adk/utils/banner.py +5 -5
- moai_adk/utils/common.py +294 -0
- moai_adk/utils/link_validator.py +235 -0
- moai_adk/utils/logger.py +8 -8
- moai_adk/utils/user_experience.py +451 -0
- moai_adk-0.20.1.dist-info/METADATA +233 -0
- moai_adk-0.20.1.dist-info/RECORD +404 -0
- moai_adk/templates/.claude/hooks/alfred/README.md +0 -230
- moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +0 -156
- moai_adk/templates/.claude/hooks/alfred/core/__init__.py +0 -85
- moai_adk/templates/.claude/hooks/alfred/handlers/notification.py +0 -25
- moai_adk/templates/.claude/hooks/alfred/handlers/session.py +0 -92
- moai_adk/templates/.claude/hooks/alfred/handlers/tool.py +0 -70
- moai_adk/templates/.claude/hooks/alfred/handlers/user.py +0 -41
- moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +0 -636
- moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +0 -692
- moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +0 -470
- moai_adk/templates/.claude/skills/moai-alfred-debugger-pro/SKILL.md +0 -103
- moai_adk/templates/.claude/skills/moai-alfred-ears-authoring/SKILL.md +0 -103
- moai_adk/templates/.claude/skills/moai-alfred-git-workflow/SKILL.md +0 -95
- moai_adk/templates/.claude/skills/moai-alfred-performance-optimizer/SKILL.md +0 -105
- moai_adk/templates/.claude/skills/moai-alfred-refactoring-coach/SKILL.md +0 -97
- moai_adk/templates/.claude/skills/moai-alfred-spec-metadata-validation/SKILL.md +0 -97
- moai_adk/templates/.claude/skills/moai-alfred-tag-scanning/SKILL.md +0 -90
- moai_adk/templates/.claude/skills/moai-alfred-trust-validation/SKILL.md +0 -99
- moai_adk/templates/.claude/skills/moai-alfred-tui-survey/SKILL.md +0 -87
- moai_adk/templates/.claude/skills/moai-alfred-tui-survey/examples.md +0 -62
- moai_adk/templates/.claude/skills/moai-claude-code/SKILL.md +0 -94
- moai_adk/templates/.claude/skills/moai-claude-code/examples.md +0 -513
- moai_adk/templates/.claude/skills/moai-claude-code/reference.md +0 -433
- moai_adk/templates/.claude/skills/moai-claude-code/templates/agent-full.md +0 -332
- moai_adk/templates/.claude/skills/moai-claude-code/templates/command-full.md +0 -384
- moai_adk/templates/.claude/skills/moai-claude-code/templates/plugin-full.json +0 -363
- moai_adk/templates/.claude/skills/moai-claude-code/templates/settings-full.json +0 -595
- moai_adk/templates/.claude/skills/moai-claude-code/templates/skill-full.md +0 -496
- moai_adk/templates/.claude/skills/moai-lang-clojure/SKILL.md +0 -100
- moai_adk/templates/.claude/skills/moai-lang-elixir/SKILL.md +0 -99
- moai_adk/templates/.claude/skills/moai-lang-haskell/SKILL.md +0 -100
- moai_adk/templates/.claude/skills/moai-lang-julia/SKILL.md +0 -98
- moai_adk/templates/.claude/skills/moai-lang-lua/SKILL.md +0 -98
- moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +0 -69
- moai_adk/templates/.moai/memory/development-guide.md +0 -344
- moai_adk/templates/.moai/memory/gitflow-protection-policy.md +0 -220
- moai_adk/templates/.moai/memory/spec-metadata.md +0 -356
- moai_adk/templates/.moai/project/product.md +0 -161
- moai_adk/templates/.moai/project/structure.md +0 -156
- moai_adk/templates/.moai/project/tech.md +0 -227
- moai_adk/templates/__init__.py +0 -2
- moai_adk-0.4.5.dist-info/METADATA +0 -369
- moai_adk-0.4.5.dist-info/RECORD +0 -152
- {moai_adk-0.4.5.dist-info → moai_adk-0.20.1.dist-info}/WHEEL +0 -0
- {moai_adk-0.4.5.dist-info → moai_adk-0.20.1.dist-info}/entry_points.txt +0 -0
- {moai_adk-0.4.5.dist-info → moai_adk-0.20.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,580 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# @CODE:TAG-POLICY-VALIDATOR-001 | @SPEC:TAG-POLICY-001
|
|
3
|
+
"""TAG 정책 위반 실시간 검증 시스템
|
|
4
|
+
|
|
5
|
+
MoAI-ADK의 SPEC-first 원칙을 강제하는 실시간 TAG 정책 검증기.
|
|
6
|
+
Pre-Tool-Use 훅과 통합하여 SPEC-less 코드 생성을 원천적으로 차단.
|
|
7
|
+
|
|
8
|
+
주요 기능:
|
|
9
|
+
- 실시간 TAG 정책 위반 탐지
|
|
10
|
+
- SPEC 없이 CODE 생성 시 차단
|
|
11
|
+
- TAG 체인 무결성 검증
|
|
12
|
+
- 즉각적인 위반 보고 및 수정 가이드
|
|
13
|
+
|
|
14
|
+
@SPEC:TAG-POLICY-001
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
import re
|
|
18
|
+
import time
|
|
19
|
+
from dataclasses import dataclass, field
|
|
20
|
+
from enum import Enum
|
|
21
|
+
from pathlib import Path
|
|
22
|
+
from typing import Any, Dict, List, Optional, Set
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class PolicyViolationLevel(Enum):
|
|
26
|
+
"""정책 위반 수준
|
|
27
|
+
|
|
28
|
+
CRITICAL: 작업을 즉시 중단해야 하는 치명적 위반
|
|
29
|
+
HIGH: 사용자 확인 후 진행 가능한 높은 수준 위반
|
|
30
|
+
MEDIUM: 경고 수준 위반 (권고 사항)
|
|
31
|
+
LOW: 정보 수준 (권장 사항)
|
|
32
|
+
"""
|
|
33
|
+
CRITICAL = "critical"
|
|
34
|
+
HIGH = "high"
|
|
35
|
+
MEDIUM = "medium"
|
|
36
|
+
LOW = "low"
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class PolicyViolationType(Enum):
|
|
40
|
+
"""정책 위반 유형
|
|
41
|
+
|
|
42
|
+
SPECLESS_CODE: SPEC 없이 CODE 생성 (치명적)
|
|
43
|
+
MISSING_TAGS: 필수 TAG 누락 (높음)
|
|
44
|
+
CHAIN_BREAK: TAG 체인 연결 끊김 (높음)
|
|
45
|
+
DUPLICATE_TAGS: 중복 TAG (중간)
|
|
46
|
+
FORMAT_INVALID: TAG 형식 오류 (중간)
|
|
47
|
+
NO_SPEC_REFERENCE: CODE가 SPEC 참조 없음 (낮음)
|
|
48
|
+
"""
|
|
49
|
+
SPECLESS_CODE = "specless_code"
|
|
50
|
+
MISSING_TAGS = "missing_tags"
|
|
51
|
+
CHAIN_BREAK = "chain_break"
|
|
52
|
+
DUPLICATE_TAGS = "duplicate_tags"
|
|
53
|
+
FORMAT_INVALID = "format_invalid"
|
|
54
|
+
NO_SPEC_REFERENCE = "no_spec_reference"
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@dataclass
|
|
58
|
+
class PolicyViolation:
|
|
59
|
+
"""TAG 정책 위반 정보
|
|
60
|
+
|
|
61
|
+
Attributes:
|
|
62
|
+
level: 위반 수준 (CRITICAL|HIGH|MEDIUM|LOW)
|
|
63
|
+
type: 위반 유형 (PolicyViolationType)
|
|
64
|
+
tag: 관련 TAG (있는 경우)
|
|
65
|
+
message: 위반 설명
|
|
66
|
+
file_path: 관련 파일 경로
|
|
67
|
+
action: 제안되는 조치 (block|warn|suggest)
|
|
68
|
+
guidance: 수정 안내
|
|
69
|
+
auto_fix_possible: 자동 수정 가능 여부
|
|
70
|
+
"""
|
|
71
|
+
level: PolicyViolationLevel
|
|
72
|
+
type: PolicyViolationType
|
|
73
|
+
tag: Optional[str]
|
|
74
|
+
message: str
|
|
75
|
+
file_path: Optional[str]
|
|
76
|
+
action: str # block|warn|suggest
|
|
77
|
+
guidance: str
|
|
78
|
+
auto_fix_possible: bool = False
|
|
79
|
+
|
|
80
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
81
|
+
"""딕셔너리로 변환"""
|
|
82
|
+
return {
|
|
83
|
+
"level": self.level.value,
|
|
84
|
+
"type": self.type.value,
|
|
85
|
+
"tag": self.tag,
|
|
86
|
+
"message": self.message,
|
|
87
|
+
"file_path": self.file_path,
|
|
88
|
+
"action": self.action,
|
|
89
|
+
"guidance": self.guidance,
|
|
90
|
+
"auto_fix_possible": self.auto_fix_possible
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
def should_block_operation(self) -> bool:
|
|
94
|
+
"""작업을 차단해야 하는지 여부"""
|
|
95
|
+
return self.level == PolicyViolationLevel.CRITICAL or self.action == "block"
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
@dataclass
|
|
99
|
+
class PolicyValidationConfig:
|
|
100
|
+
"""TAG 정책 검증 설정
|
|
101
|
+
|
|
102
|
+
Attributes:
|
|
103
|
+
strict_mode: 엄격 모드 (모든 위반을 차단)
|
|
104
|
+
require_spec_before_code: CODE 생성 전 SPEC 필수
|
|
105
|
+
require_test_for_code: CODE에 TEST 필수
|
|
106
|
+
allow_duplicate_tags: 중복 TAG 허용 여부
|
|
107
|
+
validation_timeout: 검증 타임아웃 (초)
|
|
108
|
+
auto_fix_enabled: 자동 수정 기능 활성화
|
|
109
|
+
file_types_to_validate: 검증할 파일 확장자
|
|
110
|
+
"""
|
|
111
|
+
strict_mode: bool = True
|
|
112
|
+
require_spec_before_code: bool = True
|
|
113
|
+
require_test_for_code: bool = True
|
|
114
|
+
allow_duplicate_tags: bool = False
|
|
115
|
+
validation_timeout: int = 5
|
|
116
|
+
auto_fix_enabled: bool = False
|
|
117
|
+
file_types_to_validate: Set[str] = field(default_factory=lambda: {
|
|
118
|
+
"py", "js", "ts", "jsx", "tsx", "md", "txt", "yml", "yaml"
|
|
119
|
+
})
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
class TagPolicyValidator:
|
|
123
|
+
"""TAG 정책 실시간 검증기
|
|
124
|
+
|
|
125
|
+
Pre-Tool-Use 훅과 통합하여 파일 생성/수정 시점에 TAG 정책 위반을 탐지하고 차단.
|
|
126
|
+
SPEC-first 원칙을 강제하여 품질 보증.
|
|
127
|
+
|
|
128
|
+
Usage:
|
|
129
|
+
config = PolicyValidationConfig(strict_mode=True)
|
|
130
|
+
validator = TagPolicyValidator(config=config)
|
|
131
|
+
|
|
132
|
+
# 파일 생성 전 검증
|
|
133
|
+
violations = validator.validate_before_creation(
|
|
134
|
+
file_path="src/example.py",
|
|
135
|
+
content="def example(): pass"
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
# 작업 차단 여부 확인
|
|
139
|
+
should_block = any(v.should_block_operation() for v in violations)
|
|
140
|
+
"""
|
|
141
|
+
|
|
142
|
+
# TAG 정규식 패턴
|
|
143
|
+
TAG_PATTERN = re.compile(r"@(SPEC|CODE|TEST|DOC):([A-Z0-9-]+-\d{3})")
|
|
144
|
+
|
|
145
|
+
def __init__(self, config: Optional[PolicyValidationConfig] = None):
|
|
146
|
+
"""초기화
|
|
147
|
+
|
|
148
|
+
Args:
|
|
149
|
+
config: 정책 검증 설정 (기본: PolicyValidationConfig())
|
|
150
|
+
"""
|
|
151
|
+
self.config = config or PolicyValidationConfig()
|
|
152
|
+
self._start_time = time.time()
|
|
153
|
+
|
|
154
|
+
def validate_before_creation(self, file_path: str, content: str) -> List[PolicyViolation]:
|
|
155
|
+
"""파일 생성 전 TAG 정책 검증
|
|
156
|
+
|
|
157
|
+
Pre-Tool-Use 훅에서 호출. 파일 생성 시점에 정책 위반을 탐지.
|
|
158
|
+
|
|
159
|
+
Args:
|
|
160
|
+
file_path: 생성/수정할 파일 경로
|
|
161
|
+
content: 파일 내용
|
|
162
|
+
|
|
163
|
+
Returns:
|
|
164
|
+
PolicyViolation 목록
|
|
165
|
+
"""
|
|
166
|
+
violations = []
|
|
167
|
+
|
|
168
|
+
# 타임아웃 체크
|
|
169
|
+
if time.time() - self._start_time > self.config.validation_timeout:
|
|
170
|
+
return violations
|
|
171
|
+
|
|
172
|
+
# 파일 타입 확인
|
|
173
|
+
if not self._should_validate_file(file_path):
|
|
174
|
+
return violations
|
|
175
|
+
|
|
176
|
+
# 기존 파일 TAG 추출
|
|
177
|
+
existing_tags = self._extract_tags_from_content(content)
|
|
178
|
+
|
|
179
|
+
# 새 파일인지 확인
|
|
180
|
+
is_new_file = not Path(file_path).exists()
|
|
181
|
+
|
|
182
|
+
if is_new_file:
|
|
183
|
+
# 새 파일 생성 시 검증
|
|
184
|
+
violations.extend(self._validate_new_file_creation(file_path, existing_tags))
|
|
185
|
+
else:
|
|
186
|
+
# 기존 파일 수정 시 검증
|
|
187
|
+
violations.extend(self._validate_file_modification(file_path, existing_tags))
|
|
188
|
+
|
|
189
|
+
return violations
|
|
190
|
+
|
|
191
|
+
def validate_after_modification(self, file_path: str, content: str) -> List[PolicyViolation]:
|
|
192
|
+
"""파일 수정 후 TAG 정책 검증
|
|
193
|
+
|
|
194
|
+
Post-Tool-Use 훅에서 호출. 수정 후 최종 상태 검증.
|
|
195
|
+
|
|
196
|
+
Args:
|
|
197
|
+
file_path: 수정된 파일 경로
|
|
198
|
+
content: 수정된 파일 내용
|
|
199
|
+
|
|
200
|
+
Returns:
|
|
201
|
+
PolicyViolation 목록 (주로 경고 수준)
|
|
202
|
+
"""
|
|
203
|
+
violations = []
|
|
204
|
+
|
|
205
|
+
# 타임아웃 체크
|
|
206
|
+
if time.time() - self._start_time > self.config.validation_timeout:
|
|
207
|
+
return violations
|
|
208
|
+
|
|
209
|
+
# 파일 타입 확인
|
|
210
|
+
if not self._should_validate_file(file_path):
|
|
211
|
+
return violations
|
|
212
|
+
|
|
213
|
+
# TAG 추출
|
|
214
|
+
tags = self._extract_tags_from_content(content)
|
|
215
|
+
|
|
216
|
+
# 누락된 TAG 확인
|
|
217
|
+
violations.extend(self._validate_missing_tags(file_path, tags))
|
|
218
|
+
|
|
219
|
+
# 체인 무결성 검증
|
|
220
|
+
violations.extend(self._validate_chain_integrity(file_path, tags))
|
|
221
|
+
|
|
222
|
+
return violations
|
|
223
|
+
|
|
224
|
+
def _should_validate_file(self, file_path: str) -> bool:
|
|
225
|
+
"""파일을 검증해야 하는지 확인
|
|
226
|
+
|
|
227
|
+
Args:
|
|
228
|
+
file_path: 파일 경로
|
|
229
|
+
|
|
230
|
+
Returns:
|
|
231
|
+
검증 대상이면 True
|
|
232
|
+
"""
|
|
233
|
+
path = Path(file_path)
|
|
234
|
+
suffix = path.suffix.lstrip(".")
|
|
235
|
+
return suffix in self.config.file_types_to_validate
|
|
236
|
+
|
|
237
|
+
def _extract_tags_from_content(self, content: str) -> Dict[str, List[str]]:
|
|
238
|
+
"""내용에서 TAG 추출
|
|
239
|
+
|
|
240
|
+
Args:
|
|
241
|
+
content: 파일 내용
|
|
242
|
+
|
|
243
|
+
Returns:
|
|
244
|
+
{tag_type: [domains]} 딕셔너리
|
|
245
|
+
"""
|
|
246
|
+
tags = {"SPEC": [], "CODE": [], "TEST": [], "DOC": []}
|
|
247
|
+
|
|
248
|
+
matches = self.TAG_PATTERN.findall(content)
|
|
249
|
+
for tag_type, domain in matches:
|
|
250
|
+
tags[tag_type].append(domain)
|
|
251
|
+
|
|
252
|
+
return tags
|
|
253
|
+
|
|
254
|
+
def _validate_new_file_creation(self, file_path: str, tags: Dict[str, List[str]]) -> List[PolicyViolation]:
|
|
255
|
+
"""새 파일 생성 시 정책 검증
|
|
256
|
+
|
|
257
|
+
Args:
|
|
258
|
+
file_path: 파일 경로
|
|
259
|
+
tags: 추출된 TAG
|
|
260
|
+
|
|
261
|
+
Returns:
|
|
262
|
+
PolicyViolation 목록
|
|
263
|
+
"""
|
|
264
|
+
violations = []
|
|
265
|
+
|
|
266
|
+
# CODE 파일 생성 시 SPEC 필수 확인
|
|
267
|
+
if self._is_code_file(file_path) and self.config.require_spec_before_code:
|
|
268
|
+
if not tags.get("CODE"):
|
|
269
|
+
violations.append(PolicyViolation(
|
|
270
|
+
level=PolicyViolationLevel.CRITICAL,
|
|
271
|
+
type=PolicyViolationType.SPECLESS_CODE,
|
|
272
|
+
tag=None,
|
|
273
|
+
message="CODE 파일에 @TAG가 없습니다",
|
|
274
|
+
file_path=file_path,
|
|
275
|
+
action="block",
|
|
276
|
+
guidance="CODE 파일은 반드시 @CODE:DOMAIN-XXX 형식의 TAG를 가져야 합니다. 먼저 SPEC을 생성하세요.",
|
|
277
|
+
auto_fix_possible=False
|
|
278
|
+
))
|
|
279
|
+
else:
|
|
280
|
+
# CODE TAG가 있는 경우 연결된 SPEC 확인
|
|
281
|
+
for domain in tags["CODE"]:
|
|
282
|
+
spec_file = self._find_spec_file(domain)
|
|
283
|
+
if not spec_file:
|
|
284
|
+
violations.append(PolicyViolation(
|
|
285
|
+
level=PolicyViolationLevel.HIGH,
|
|
286
|
+
type=PolicyViolationType.NO_SPEC_REFERENCE,
|
|
287
|
+
tag=f"@CODE:{domain}",
|
|
288
|
+
message=f"@CODE:{domain}에 연결된 SPEC이 없습니다",
|
|
289
|
+
file_path=file_path,
|
|
290
|
+
action="block" if self.config.strict_mode else "warn",
|
|
291
|
+
guidance=f".moai/specs/SPEC-{domain}/spec.md 파일을 생성하거나 기존 SPEC에 @TAG를 추가하세요.",
|
|
292
|
+
auto_fix_possible=True
|
|
293
|
+
))
|
|
294
|
+
|
|
295
|
+
# TEST 파일 생성 시 CODE 필수 확인
|
|
296
|
+
if self._is_test_file(file_path) and tags.get("TEST"):
|
|
297
|
+
for domain in tags["TEST"]:
|
|
298
|
+
code_file = self._find_code_file(domain)
|
|
299
|
+
if not code_file:
|
|
300
|
+
violations.append(PolicyViolation(
|
|
301
|
+
level=PolicyViolationLevel.HIGH,
|
|
302
|
+
type=PolicyViolationType.CHAIN_BREAK,
|
|
303
|
+
tag=f"@TEST:{domain}",
|
|
304
|
+
message=f"@TEST:{domain}에 연결된 CODE가 없습니다",
|
|
305
|
+
file_path=file_path,
|
|
306
|
+
action="warn",
|
|
307
|
+
guidance=f"먼저 @CODE:{domain}를 가진 구현 파일을 생성하세요.",
|
|
308
|
+
auto_fix_possible=False
|
|
309
|
+
))
|
|
310
|
+
|
|
311
|
+
return violations
|
|
312
|
+
|
|
313
|
+
def _validate_file_modification(self, file_path: str, tags: Dict[str, List[str]]) -> List[PolicyViolation]:
|
|
314
|
+
"""파일 수정 시 정책 검증
|
|
315
|
+
|
|
316
|
+
Args:
|
|
317
|
+
file_path: 파일 경로
|
|
318
|
+
tags: 추출된 TAG
|
|
319
|
+
|
|
320
|
+
Returns:
|
|
321
|
+
PolicyViolation 목록
|
|
322
|
+
"""
|
|
323
|
+
violations = []
|
|
324
|
+
|
|
325
|
+
# 중복 TAG 확인
|
|
326
|
+
if not self.config.allow_duplicate_tags:
|
|
327
|
+
duplicates = self._find_duplicate_tags(file_path, tags)
|
|
328
|
+
for duplicate in duplicates:
|
|
329
|
+
violations.append(PolicyViolation(
|
|
330
|
+
level=PolicyViolationLevel.MEDIUM,
|
|
331
|
+
type=PolicyViolationType.DUPLICATE_TAGS,
|
|
332
|
+
tag=duplicate,
|
|
333
|
+
message=f"중복된 TAG: {duplicate}",
|
|
334
|
+
file_path=file_path,
|
|
335
|
+
action="warn",
|
|
336
|
+
guidance="중복된 TAG를 제거하세요. 각 TAG는 고유해야 합니다.",
|
|
337
|
+
auto_fix_possible=True
|
|
338
|
+
))
|
|
339
|
+
|
|
340
|
+
return violations
|
|
341
|
+
|
|
342
|
+
def _validate_missing_tags(self, file_path: str, tags: Dict[str, List[str]]) -> List[PolicyViolation]:
|
|
343
|
+
"""누락된 TAG 확인
|
|
344
|
+
|
|
345
|
+
Args:
|
|
346
|
+
file_path: 파일 경로
|
|
347
|
+
tags: 추출된 TAG
|
|
348
|
+
|
|
349
|
+
Returns:
|
|
350
|
+
PolicyViolation 목록
|
|
351
|
+
"""
|
|
352
|
+
violations = []
|
|
353
|
+
|
|
354
|
+
# CODE 파일인데 TAG가 없는 경우
|
|
355
|
+
if self._is_code_file(file_path) and not tags.get("CODE"):
|
|
356
|
+
violations.append(PolicyViolation(
|
|
357
|
+
level=PolicyViolationLevel.HIGH,
|
|
358
|
+
type=PolicyViolationType.MISSING_TAGS,
|
|
359
|
+
tag=None,
|
|
360
|
+
message="CODE 파일에 @TAG가 누락되었습니다",
|
|
361
|
+
file_path=file_path,
|
|
362
|
+
action="suggest",
|
|
363
|
+
guidance="파일 상단에 @CODE:DOMAIN-XXX 형식의 TAG를 추가하세요.",
|
|
364
|
+
auto_fix_possible=True
|
|
365
|
+
))
|
|
366
|
+
|
|
367
|
+
return violations
|
|
368
|
+
|
|
369
|
+
def _validate_chain_integrity(self, file_path: str, tags: Dict[str, List[str]]) -> List[PolicyViolation]:
|
|
370
|
+
"""TAG 체인 무결성 검증
|
|
371
|
+
|
|
372
|
+
Args:
|
|
373
|
+
file_path: 파일 경로
|
|
374
|
+
tags: 추출된 TAG
|
|
375
|
+
|
|
376
|
+
Returns:
|
|
377
|
+
PolicyViolation 목록
|
|
378
|
+
"""
|
|
379
|
+
violations = []
|
|
380
|
+
|
|
381
|
+
# CODE가 있는데 TEST가 없는 경우
|
|
382
|
+
if tags.get("CODE") and self.config.require_test_for_code:
|
|
383
|
+
for domain in tags["CODE"]:
|
|
384
|
+
test_file = self._find_test_file(domain)
|
|
385
|
+
if not test_file:
|
|
386
|
+
violations.append(PolicyViolation(
|
|
387
|
+
level=PolicyViolationLevel.MEDIUM,
|
|
388
|
+
type=PolicyViolationType.CHAIN_BREAK,
|
|
389
|
+
tag=f"@CODE:{domain}",
|
|
390
|
+
message=f"@CODE:{domain}에 연결된 TEST가 없습니다",
|
|
391
|
+
file_path=file_path,
|
|
392
|
+
action="suggest",
|
|
393
|
+
guidance=f"tests/ 디렉토리에 @TEST:{domain}를 가진 테스트 파일을 생성하세요.",
|
|
394
|
+
auto_fix_possible=True
|
|
395
|
+
))
|
|
396
|
+
|
|
397
|
+
return violations
|
|
398
|
+
|
|
399
|
+
def _is_code_file(self, file_path: str) -> bool:
|
|
400
|
+
"""코드 파일인지 확인
|
|
401
|
+
|
|
402
|
+
Args:
|
|
403
|
+
file_path: 파일 경로
|
|
404
|
+
|
|
405
|
+
Returns:
|
|
406
|
+
코드 파일이면 True
|
|
407
|
+
"""
|
|
408
|
+
path = Path(file_path)
|
|
409
|
+
code_patterns = ["src/", "lib/", "app/", "modules/"]
|
|
410
|
+
return (
|
|
411
|
+
path.suffix in [".py", ".js", ".ts", ".jsx", ".tsx"] and
|
|
412
|
+
not any(pattern in str(path) for pattern in ["test/", "tests/", "__tests__", "spec/"])
|
|
413
|
+
)
|
|
414
|
+
|
|
415
|
+
def _is_test_file(self, file_path: str) -> bool:
|
|
416
|
+
"""테스트 파일인지 확인
|
|
417
|
+
|
|
418
|
+
Args:
|
|
419
|
+
file_path: 파일 경로
|
|
420
|
+
|
|
421
|
+
Returns:
|
|
422
|
+
테스트 파일이면 True
|
|
423
|
+
"""
|
|
424
|
+
path = Path(file_path)
|
|
425
|
+
test_patterns = ["test/", "tests/", "__tests__", "spec/", "_test.", "_spec."]
|
|
426
|
+
return any(pattern in str(path) for pattern in test_patterns)
|
|
427
|
+
|
|
428
|
+
def _find_spec_file(self, domain: str) -> Optional[Path]:
|
|
429
|
+
"""DOMAIN에 해당하는 SPEC 파일 찾기
|
|
430
|
+
|
|
431
|
+
Args:
|
|
432
|
+
domain: TAG 도메인 (예: USER-REG-001)
|
|
433
|
+
|
|
434
|
+
Returns:
|
|
435
|
+
SPEC 파일 경로 또는 None
|
|
436
|
+
"""
|
|
437
|
+
spec_patterns = [
|
|
438
|
+
f".moai/specs/SPEC-{domain}/spec.md",
|
|
439
|
+
f".moai/specs/SPEC-{domain}.md",
|
|
440
|
+
f"specs/SPEC-{domain}.md"
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
for pattern in spec_patterns:
|
|
444
|
+
path = Path(pattern)
|
|
445
|
+
if path.exists():
|
|
446
|
+
return path
|
|
447
|
+
|
|
448
|
+
return None
|
|
449
|
+
|
|
450
|
+
def _find_code_file(self, domain: str) -> Optional[Path]:
|
|
451
|
+
"""DOMAIN에 해당하는 CODE 파일 찾기
|
|
452
|
+
|
|
453
|
+
Args:
|
|
454
|
+
domain: TAG 도메인
|
|
455
|
+
|
|
456
|
+
Returns:
|
|
457
|
+
CODE 파일 경로 또는 None
|
|
458
|
+
"""
|
|
459
|
+
# 프로젝트 루트에서 CODE TAG 검색
|
|
460
|
+
for pattern in ["src/**/*.py", "lib/**/*.py", "**/*.py", "**/*.js", "**/*.ts"]:
|
|
461
|
+
for path in Path(".").glob(pattern):
|
|
462
|
+
if path.is_file():
|
|
463
|
+
try:
|
|
464
|
+
content = path.read_text(encoding="utf-8", errors="ignore")
|
|
465
|
+
if f"@CODE:{domain}" in content:
|
|
466
|
+
return path
|
|
467
|
+
except Exception:
|
|
468
|
+
continue
|
|
469
|
+
|
|
470
|
+
return None
|
|
471
|
+
|
|
472
|
+
def _find_test_file(self, domain: str) -> Optional[Path]:
|
|
473
|
+
"""DOMAIN에 해당하는 TEST 파일 찾기
|
|
474
|
+
|
|
475
|
+
Args:
|
|
476
|
+
domain: TAG 도메인
|
|
477
|
+
|
|
478
|
+
Returns:
|
|
479
|
+
TEST 파일 경로 또는 None
|
|
480
|
+
"""
|
|
481
|
+
test_patterns = [
|
|
482
|
+
f"tests/**/test_*{domain}*.py",
|
|
483
|
+
f"test/**/test_*{domain}*.py",
|
|
484
|
+
f"tests/**/*{domain}*_test.py",
|
|
485
|
+
f"**/*test*{domain}*.py"
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
for pattern in test_patterns:
|
|
489
|
+
for path in Path(".").glob(pattern):
|
|
490
|
+
if path.is_file():
|
|
491
|
+
try:
|
|
492
|
+
content = path.read_text(encoding="utf-8", errors="ignore")
|
|
493
|
+
if f"@TEST:{domain}" in content:
|
|
494
|
+
return path
|
|
495
|
+
except Exception:
|
|
496
|
+
continue
|
|
497
|
+
|
|
498
|
+
return None
|
|
499
|
+
|
|
500
|
+
def _find_duplicate_tags(self, file_path: str, tags: Dict[str, List[str]]) -> List[str]:
|
|
501
|
+
"""파일 내 중복 TAG 찾기
|
|
502
|
+
|
|
503
|
+
Args:
|
|
504
|
+
file_path: 파일 경로
|
|
505
|
+
tags: 추출된 TAG
|
|
506
|
+
|
|
507
|
+
Returns:
|
|
508
|
+
중복 TAG 목록
|
|
509
|
+
"""
|
|
510
|
+
duplicates = []
|
|
511
|
+
|
|
512
|
+
try:
|
|
513
|
+
content = Path(file_path).read_text(encoding="utf-8", errors="ignore")
|
|
514
|
+
found_tags = []
|
|
515
|
+
|
|
516
|
+
for tag_type, domains in tags.items():
|
|
517
|
+
for domain in domains:
|
|
518
|
+
tag = f"@{tag_type}:{domain}"
|
|
519
|
+
count = content.count(tag)
|
|
520
|
+
if count > 1:
|
|
521
|
+
duplicates.append(tag)
|
|
522
|
+
|
|
523
|
+
except Exception:
|
|
524
|
+
pass
|
|
525
|
+
|
|
526
|
+
return duplicates
|
|
527
|
+
|
|
528
|
+
def create_validation_report(self, violations: List[PolicyViolation]) -> str:
|
|
529
|
+
"""검증 결과 리포트 생성
|
|
530
|
+
|
|
531
|
+
Args:
|
|
532
|
+
violations: 정책 위반 목록
|
|
533
|
+
|
|
534
|
+
Returns:
|
|
535
|
+
포맷된 리포트 문자열
|
|
536
|
+
"""
|
|
537
|
+
if not violations:
|
|
538
|
+
return "✅ TAG 정책 검증 통과"
|
|
539
|
+
|
|
540
|
+
lines = []
|
|
541
|
+
lines.append("❌ TAG 정책 위반 발견")
|
|
542
|
+
lines.append("=" * 50)
|
|
543
|
+
|
|
544
|
+
# 수준별 그룹화
|
|
545
|
+
by_level = {
|
|
546
|
+
PolicyViolationLevel.CRITICAL: [],
|
|
547
|
+
PolicyViolationLevel.HIGH: [],
|
|
548
|
+
PolicyViolationLevel.MEDIUM: [],
|
|
549
|
+
PolicyViolationLevel.LOW: []
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
for violation in violations:
|
|
553
|
+
by_level[violation.level].append(violation)
|
|
554
|
+
|
|
555
|
+
# 수준별 출력
|
|
556
|
+
level_names = {
|
|
557
|
+
PolicyViolationLevel.CRITICAL: "🚨 치명적",
|
|
558
|
+
PolicyViolationLevel.HIGH: "⚠️ 높음",
|
|
559
|
+
PolicyViolationLevel.MEDIUM: "⚡ 중간",
|
|
560
|
+
PolicyViolationLevel.LOW: "ℹ️ 낮음"
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
for level in [PolicyViolationLevel.CRITICAL, PolicyViolationLevel.HIGH,
|
|
564
|
+
PolicyViolationLevel.MEDIUM, PolicyViolationLevel.LOW]:
|
|
565
|
+
level_violations = by_level[level]
|
|
566
|
+
if level_violations:
|
|
567
|
+
lines.append(f"\n{level_names[level]} ({len(level_violations)}개):")
|
|
568
|
+
lines.append("-" * 30)
|
|
569
|
+
|
|
570
|
+
for violation in level_violations:
|
|
571
|
+
tag_info = f" - {violation.tag}" if violation.tag else ""
|
|
572
|
+
lines.append(f" {violation.message}{tag_info}")
|
|
573
|
+
if violation.file_path:
|
|
574
|
+
lines.append(f" 파일: {violation.file_path}")
|
|
575
|
+
lines.append(f" 조치: {violation.guidance}")
|
|
576
|
+
if violation.auto_fix_possible:
|
|
577
|
+
lines.append(" 🤖 자동 수정 가능")
|
|
578
|
+
lines.append("")
|
|
579
|
+
|
|
580
|
+
return "\n".join(lines)
|