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,93 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# @CODE:HOOKS-CLARITY-CLEAN | SPEC: Individual hook files for better UX
|
|
3
|
+
"""SessionEnd Hook: Session Cleanup and Finalization
|
|
4
|
+
|
|
5
|
+
Claude Code Event: SessionEnd
|
|
6
|
+
Purpose: Clean up resources and finalize session when Claude Code exits
|
|
7
|
+
Execution: Triggered when Claude Code session ends
|
|
8
|
+
|
|
9
|
+
Output: Continue execution (currently a stub for future enhancements)
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
import json
|
|
13
|
+
import sys
|
|
14
|
+
from pathlib import Path
|
|
15
|
+
from typing import Any
|
|
16
|
+
|
|
17
|
+
# Setup import path for shared modules
|
|
18
|
+
HOOKS_DIR = Path(__file__).parent
|
|
19
|
+
SHARED_DIR = HOOKS_DIR / "shared"
|
|
20
|
+
if str(SHARED_DIR) not in sys.path:
|
|
21
|
+
sys.path.insert(0, str(SHARED_DIR))
|
|
22
|
+
|
|
23
|
+
from handlers import handle_session_end # noqa: E402
|
|
24
|
+
from utils.timeout import CrossPlatformTimeout # noqa: E402
|
|
25
|
+
from utils.timeout import TimeoutError as PlatformTimeoutError # noqa: E402
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def main() -> None:
|
|
29
|
+
"""Main entry point for SessionEnd hook
|
|
30
|
+
|
|
31
|
+
Currently a stub for future functionality:
|
|
32
|
+
- Clear temporary caches
|
|
33
|
+
- Save session metrics
|
|
34
|
+
- Upload analytics (if enabled)
|
|
35
|
+
- Cleanup background processes
|
|
36
|
+
|
|
37
|
+
Exit Codes:
|
|
38
|
+
0: Success
|
|
39
|
+
1: Error (timeout, JSON parse failure, handler exception)
|
|
40
|
+
"""
|
|
41
|
+
# Set 5-second timeout
|
|
42
|
+
timeout = CrossPlatformTimeout(5)
|
|
43
|
+
timeout.start()
|
|
44
|
+
|
|
45
|
+
try:
|
|
46
|
+
# Read JSON payload from stdin
|
|
47
|
+
input_data = sys.stdin.read()
|
|
48
|
+
data = json.loads(input_data) if input_data.strip() else {}
|
|
49
|
+
|
|
50
|
+
# Call handler
|
|
51
|
+
result = handle_session_end(data)
|
|
52
|
+
|
|
53
|
+
# Output result as JSON
|
|
54
|
+
print(json.dumps(result.to_dict()))
|
|
55
|
+
sys.exit(0)
|
|
56
|
+
|
|
57
|
+
except PlatformTimeoutError:
|
|
58
|
+
# Timeout - return minimal valid response
|
|
59
|
+
timeout_response: dict[str, Any] = {
|
|
60
|
+
"continue": True,
|
|
61
|
+
"systemMessage": "⚠️ SessionEnd cleanup timeout - session ending anyway",
|
|
62
|
+
}
|
|
63
|
+
print(json.dumps(timeout_response))
|
|
64
|
+
print("SessionEnd hook timeout after 5 seconds", file=sys.stderr)
|
|
65
|
+
sys.exit(1)
|
|
66
|
+
|
|
67
|
+
except json.JSONDecodeError as e:
|
|
68
|
+
# JSON parse error
|
|
69
|
+
error_response: dict[str, Any] = {
|
|
70
|
+
"continue": True,
|
|
71
|
+
"hookSpecificOutput": {"error": f"JSON parse error: {e}"},
|
|
72
|
+
}
|
|
73
|
+
print(json.dumps(error_response))
|
|
74
|
+
print(f"SessionEnd JSON parse error: {e}", file=sys.stderr)
|
|
75
|
+
sys.exit(1)
|
|
76
|
+
|
|
77
|
+
except Exception as e:
|
|
78
|
+
# Unexpected error
|
|
79
|
+
error_response: dict[str, Any] = {
|
|
80
|
+
"continue": True,
|
|
81
|
+
"hookSpecificOutput": {"error": f"SessionEnd error: {e}"},
|
|
82
|
+
}
|
|
83
|
+
print(json.dumps(error_response))
|
|
84
|
+
print(f"SessionEnd unexpected error: {e}", file=sys.stderr)
|
|
85
|
+
sys.exit(1)
|
|
86
|
+
|
|
87
|
+
finally:
|
|
88
|
+
# Always cancel alarm
|
|
89
|
+
timeout.cancel()
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
if __name__ == "__main__":
|
|
93
|
+
main()
|
|
@@ -0,0 +1,580 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# @CODE:HOOK-SESSION-START-001 | SPEC: SESSION-START-HOOK-001 | TEST: tests/hooks/test_session_start_auto_cleanup.py
|
|
3
|
+
|
|
4
|
+
"""SessionStart Hook: 자동 정리 및 보고서 생성
|
|
5
|
+
|
|
6
|
+
세션 시작 시 오래된 임시 파일, 보고서 등을 정리하고
|
|
7
|
+
일일 분석 보고서를 생성합니다.
|
|
8
|
+
|
|
9
|
+
기능:
|
|
10
|
+
- 오래된 보고서 파일 자동 정리
|
|
11
|
+
- 임시 파일 정리
|
|
12
|
+
- 일일 분석 보고서 생성
|
|
13
|
+
- 세션 로그 분석
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
import json
|
|
17
|
+
import logging
|
|
18
|
+
import shutil
|
|
19
|
+
from datetime import datetime, timedelta
|
|
20
|
+
from pathlib import Path
|
|
21
|
+
from typing import Dict, List, Optional
|
|
22
|
+
|
|
23
|
+
# 모듈 경로 추가
|
|
24
|
+
sys.path.insert(0, str(Path(__file__).parent.parent.parent.parent / "src"))
|
|
25
|
+
|
|
26
|
+
from moai_adk.utils.common import format_duration, get_summary_stats
|
|
27
|
+
|
|
28
|
+
from ..utils.hook_config import get_graceful_degradation, load_hook_timeout
|
|
29
|
+
|
|
30
|
+
logger = logging.getLogger(__name__)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def load_config() -> Dict:
|
|
34
|
+
"""설정 파일 로드"""
|
|
35
|
+
try:
|
|
36
|
+
config_file = Path(".moai/config.json")
|
|
37
|
+
if config_file.exists():
|
|
38
|
+
with open(config_file, 'r', encoding='utf-8') as f:
|
|
39
|
+
return json.load(f)
|
|
40
|
+
except Exception:
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
return {}
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def should_cleanup_today(last_cleanup: Optional[str], cleanup_days: int = 7) -> bool:
|
|
47
|
+
"""오늘 정리가 필요한지 확인
|
|
48
|
+
|
|
49
|
+
Args:
|
|
50
|
+
last_cleanup: 마지막 정리 날짜 (YYYY-MM-DD)
|
|
51
|
+
cleanup_days: 정리 주기 (일)
|
|
52
|
+
|
|
53
|
+
Returns:
|
|
54
|
+
정리 필요 여부
|
|
55
|
+
"""
|
|
56
|
+
if not last_cleanup:
|
|
57
|
+
return True
|
|
58
|
+
|
|
59
|
+
try:
|
|
60
|
+
last_date = datetime.strptime(last_cleanup, "%Y-%m-%d")
|
|
61
|
+
next_cleanup = last_date + timedelta(days=cleanup_days)
|
|
62
|
+
return datetime.now() >= next_cleanup
|
|
63
|
+
except Exception:
|
|
64
|
+
return True
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def cleanup_old_files(config: Dict) -> Dict[str, int]:
|
|
68
|
+
"""오래된 파일 정리
|
|
69
|
+
|
|
70
|
+
Args:
|
|
71
|
+
config: 설정 딕셔너리
|
|
72
|
+
|
|
73
|
+
Returns:
|
|
74
|
+
정리된 파일 수 통계
|
|
75
|
+
"""
|
|
76
|
+
stats = {
|
|
77
|
+
"reports_cleaned": 0,
|
|
78
|
+
"cache_cleaned": 0,
|
|
79
|
+
"temp_cleaned": 0,
|
|
80
|
+
"total_cleaned": 0
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
try:
|
|
84
|
+
cleanup_config = config.get("auto_cleanup", {})
|
|
85
|
+
if not cleanup_config.get("enabled", True):
|
|
86
|
+
return stats
|
|
87
|
+
|
|
88
|
+
cleanup_days = cleanup_config.get("cleanup_days", 7)
|
|
89
|
+
max_reports = cleanup_config.get("max_reports", 10)
|
|
90
|
+
cleanup_targets = cleanup_config.get("cleanup_targets", [])
|
|
91
|
+
|
|
92
|
+
cutoff_date = datetime.now() - timedelta(days=cleanup_days)
|
|
93
|
+
|
|
94
|
+
# 보고서 파일 정리
|
|
95
|
+
reports_dir = Path(".moai/reports")
|
|
96
|
+
if reports_dir.exists():
|
|
97
|
+
stats["reports_cleaned"] = cleanup_directory(
|
|
98
|
+
reports_dir,
|
|
99
|
+
cutoff_date,
|
|
100
|
+
max_reports,
|
|
101
|
+
patterns=["*.json", "*.md"]
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
# 캐시 파일 정리
|
|
105
|
+
cache_dir = Path(".moai/cache")
|
|
106
|
+
if cache_dir.exists():
|
|
107
|
+
stats["cache_cleaned"] = cleanup_directory(
|
|
108
|
+
cache_dir,
|
|
109
|
+
cutoff_date,
|
|
110
|
+
None, # 캐시는 개수 제한 없음
|
|
111
|
+
patterns=["*"]
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
# 임시 파일 정리
|
|
115
|
+
temp_dir = Path(".moai/temp")
|
|
116
|
+
if temp_dir.exists():
|
|
117
|
+
stats["temp_cleaned"] = cleanup_directory(
|
|
118
|
+
temp_dir,
|
|
119
|
+
cutoff_date,
|
|
120
|
+
None,
|
|
121
|
+
patterns=["*"]
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
stats["total_cleaned"] = (
|
|
125
|
+
stats["reports_cleaned"] +
|
|
126
|
+
stats["cache_cleaned"] +
|
|
127
|
+
stats["temp_cleaned"]
|
|
128
|
+
)
|
|
129
|
+
|
|
130
|
+
except Exception as e:
|
|
131
|
+
logger.error(f"File cleanup failed: {e}")
|
|
132
|
+
|
|
133
|
+
return stats
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
def cleanup_directory(
|
|
137
|
+
directory: Path,
|
|
138
|
+
cutoff_date: datetime,
|
|
139
|
+
max_files: Optional[int],
|
|
140
|
+
patterns: List[str]
|
|
141
|
+
) -> int:
|
|
142
|
+
"""디렉토리 파일 정리
|
|
143
|
+
|
|
144
|
+
Args:
|
|
145
|
+
directory: 대상 디렉토리
|
|
146
|
+
cutoff_date: 자를 기준 날짜
|
|
147
|
+
max_files: 최대 유지 파일 수
|
|
148
|
+
patterns: 삭제할 파일 패턴 목록
|
|
149
|
+
|
|
150
|
+
Returns:
|
|
151
|
+
삭제된 파일 수
|
|
152
|
+
"""
|
|
153
|
+
if not directory.exists():
|
|
154
|
+
return 0
|
|
155
|
+
|
|
156
|
+
cleaned_count = 0
|
|
157
|
+
|
|
158
|
+
try:
|
|
159
|
+
# 패턴에 해당하는 파일 목록 수집
|
|
160
|
+
files_to_check = []
|
|
161
|
+
for pattern in patterns:
|
|
162
|
+
files_to_check.extend(directory.glob(pattern))
|
|
163
|
+
|
|
164
|
+
# 날짜순 정렬 (오래된 것부터)
|
|
165
|
+
files_to_check.sort(key=lambda f: f.stat().st_mtime)
|
|
166
|
+
|
|
167
|
+
# 파일 삭제
|
|
168
|
+
for file_path in files_to_check:
|
|
169
|
+
try:
|
|
170
|
+
# 파일 수정 시간 확인
|
|
171
|
+
file_mtime = datetime.fromtimestamp(file_path.stat().st_mtime)
|
|
172
|
+
|
|
173
|
+
# 기준 날짜 이전이면 삭제
|
|
174
|
+
if file_mtime < cutoff_date:
|
|
175
|
+
if file_path.is_file():
|
|
176
|
+
file_path.unlink()
|
|
177
|
+
cleaned_count += 1
|
|
178
|
+
elif file_path.is_dir():
|
|
179
|
+
shutil.rmtree(file_path)
|
|
180
|
+
cleaned_count += 1
|
|
181
|
+
|
|
182
|
+
# 최대 파일 수 제한
|
|
183
|
+
elif max_files is not None:
|
|
184
|
+
remaining_files = len([f for f in files_to_check
|
|
185
|
+
if f.exists() and
|
|
186
|
+
datetime.fromtimestamp(f.stat().st_mtime) >= cutoff_date])
|
|
187
|
+
if remaining_files > max_files:
|
|
188
|
+
if file_path.is_file():
|
|
189
|
+
file_path.unlink()
|
|
190
|
+
cleaned_count += 1
|
|
191
|
+
elif file_path.is_dir():
|
|
192
|
+
shutil.rmtree(file_path)
|
|
193
|
+
cleaned_count += 1
|
|
194
|
+
|
|
195
|
+
except Exception as e:
|
|
196
|
+
logger.warning(f"Failed to delete {file_path}: {e}")
|
|
197
|
+
continue
|
|
198
|
+
|
|
199
|
+
except Exception as e:
|
|
200
|
+
logger.error(f"Directory cleanup failed for {directory}: {e}")
|
|
201
|
+
|
|
202
|
+
return cleaned_count
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
def generate_daily_analysis(config: Dict) -> Optional[str]:
|
|
206
|
+
"""일일 분석 보고서 생성
|
|
207
|
+
|
|
208
|
+
Args:
|
|
209
|
+
config: 설정 딕셔너리
|
|
210
|
+
|
|
211
|
+
Returns:
|
|
212
|
+
생성된 보고서 파일 경로 또는 None
|
|
213
|
+
"""
|
|
214
|
+
try:
|
|
215
|
+
analysis_config = config.get("daily_analysis", {})
|
|
216
|
+
if not analysis_config.get("enabled", True):
|
|
217
|
+
return None
|
|
218
|
+
|
|
219
|
+
# 세션 로그 분석
|
|
220
|
+
report_path = analyze_session_logs(analysis_config)
|
|
221
|
+
|
|
222
|
+
# 설정에 마지막 분석 날짜 업데이트
|
|
223
|
+
if report_path:
|
|
224
|
+
config_file = Path(".moai/config.json")
|
|
225
|
+
if config_file.exists():
|
|
226
|
+
with open(config_file, 'r', encoding='utf-8') as f:
|
|
227
|
+
config_data = json.load(f)
|
|
228
|
+
|
|
229
|
+
config_data["daily_analysis"]["last_analysis"] = datetime.now().strftime("%Y-%m-%d")
|
|
230
|
+
|
|
231
|
+
with open(config_file, 'w', encoding='utf-8') as f:
|
|
232
|
+
json.dump(config_data, f, indent=2, ensure_ascii=False)
|
|
233
|
+
|
|
234
|
+
return report_path
|
|
235
|
+
|
|
236
|
+
except Exception as e:
|
|
237
|
+
logger.error(f"Daily analysis failed: {e}")
|
|
238
|
+
return None
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
def analyze_session_logs(analysis_config: Dict) -> Optional[str]:
|
|
242
|
+
"""세션 로그 분석
|
|
243
|
+
|
|
244
|
+
Args:
|
|
245
|
+
analysis_config: 분석 설정
|
|
246
|
+
|
|
247
|
+
Returns:
|
|
248
|
+
보고서 파일 경로 또는 None
|
|
249
|
+
"""
|
|
250
|
+
try:
|
|
251
|
+
# Claude Code 세션 로그 경로
|
|
252
|
+
session_logs_dir = Path.home() / ".claude" / "projects"
|
|
253
|
+
project_name = Path.cwd().name
|
|
254
|
+
|
|
255
|
+
# 현재 프로젝트의 세션 로그 찾기
|
|
256
|
+
project_sessions = []
|
|
257
|
+
for project_dir in session_logs_dir.iterdir():
|
|
258
|
+
if project_dir.name.endswith(project_name):
|
|
259
|
+
session_files = list(project_dir.glob("session-*.json"))
|
|
260
|
+
project_sessions.extend(session_files)
|
|
261
|
+
|
|
262
|
+
if not project_sessions:
|
|
263
|
+
return None
|
|
264
|
+
|
|
265
|
+
# 최근 세션 로그 분석
|
|
266
|
+
recent_sessions = sorted(project_sessions, key=lambda f: f.stat().st_mtime, reverse=True)[:10]
|
|
267
|
+
|
|
268
|
+
# 분석 데이터 수집
|
|
269
|
+
analysis_data = {
|
|
270
|
+
"total_sessions": len(recent_sessions),
|
|
271
|
+
"date_range": "",
|
|
272
|
+
"tools_used": {},
|
|
273
|
+
"errors_found": [],
|
|
274
|
+
"duration_stats": {},
|
|
275
|
+
"recommendations": []
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
if recent_sessions:
|
|
279
|
+
first_session = datetime.fromtimestamp(recent_sessions[-1].stat().st_mtime)
|
|
280
|
+
last_session = datetime.fromtimestamp(recent_sessions[0].stat().st_mtime)
|
|
281
|
+
analysis_data["date_range"] = f"{first_session.strftime('%Y-%m-%d')} ~ {last_session.strftime('%Y-%m-%d')}"
|
|
282
|
+
|
|
283
|
+
# 각 세션 분석
|
|
284
|
+
all_durations = []
|
|
285
|
+
for session_file in recent_sessions:
|
|
286
|
+
try:
|
|
287
|
+
with open(session_file, 'r', encoding='utf-8') as f:
|
|
288
|
+
session_data = json.load(f)
|
|
289
|
+
|
|
290
|
+
# 도구 사용 분석
|
|
291
|
+
if "tool_use" in session_data:
|
|
292
|
+
for tool_use in session_data["tool_use"]:
|
|
293
|
+
tool_name = tool_use.get("name", "unknown")
|
|
294
|
+
analysis_data["tools_used"][tool_name] = analysis_data["tools_used"].get(tool_name, 0) + 1
|
|
295
|
+
|
|
296
|
+
# 오류 분석
|
|
297
|
+
if "errors" in session_data:
|
|
298
|
+
for error in session_data["errors"]:
|
|
299
|
+
analysis_data["errors_found"].append({
|
|
300
|
+
"timestamp": error.get("timestamp", ""),
|
|
301
|
+
"error": error.get("message", "")[:100] # 첫 100자만
|
|
302
|
+
})
|
|
303
|
+
|
|
304
|
+
# 세션 길이 분석
|
|
305
|
+
if "start_time" in session_data and "end_time" in session_data:
|
|
306
|
+
start = session_data["start_time"]
|
|
307
|
+
end = session_data["end_time"]
|
|
308
|
+
if start and end:
|
|
309
|
+
try:
|
|
310
|
+
duration = float(end) - float(start)
|
|
311
|
+
all_durations.append(duration)
|
|
312
|
+
except (ValueError, TypeError):
|
|
313
|
+
pass
|
|
314
|
+
|
|
315
|
+
except Exception as e:
|
|
316
|
+
logger.warning(f"Failed to analyze session {session_file}: {e}")
|
|
317
|
+
continue
|
|
318
|
+
|
|
319
|
+
# 세션 길이 통계
|
|
320
|
+
if all_durations:
|
|
321
|
+
analysis_data["duration_stats"] = get_summary_stats(all_durations)
|
|
322
|
+
|
|
323
|
+
# 보고서 생성
|
|
324
|
+
report_content = format_analysis_report(analysis_data)
|
|
325
|
+
|
|
326
|
+
# 보고서 저장
|
|
327
|
+
report_location = analysis_config.get("report_location", ".moai/reports/daily-")
|
|
328
|
+
base_path = Path(".moai/reports")
|
|
329
|
+
base_path.mkdir(exist_ok=True)
|
|
330
|
+
|
|
331
|
+
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
|
|
332
|
+
report_file = base_path / f"daily-analysis-{timestamp}.md"
|
|
333
|
+
|
|
334
|
+
with open(report_file, 'w', encoding='utf-8') as f:
|
|
335
|
+
f.write(report_content)
|
|
336
|
+
|
|
337
|
+
return str(report_file)
|
|
338
|
+
|
|
339
|
+
except Exception as e:
|
|
340
|
+
logger.error(f"Session log analysis failed: {e}")
|
|
341
|
+
return None
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
def format_analysis_report(analysis_data: Dict) -> str:
|
|
345
|
+
"""분석 결과를 보고서 형식으로 변환
|
|
346
|
+
|
|
347
|
+
Args:
|
|
348
|
+
analysis_data: 분석 데이터
|
|
349
|
+
|
|
350
|
+
Returns:
|
|
351
|
+
형식화된 보고서 내용
|
|
352
|
+
"""
|
|
353
|
+
report_lines = [
|
|
354
|
+
"# 일일 세션 분석 보고서",
|
|
355
|
+
"",
|
|
356
|
+
f"생성 시간: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}",
|
|
357
|
+
f"분석 기간: {analysis_data.get('date_range', 'N/A')}",
|
|
358
|
+
f"총 세션 수: {analysis_data.get('total_sessions', 0)}",
|
|
359
|
+
"",
|
|
360
|
+
"## 📊 도구 사용 현황",
|
|
361
|
+
""
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
# 도구 사용 순위
|
|
365
|
+
tools_used = analysis_data.get("tools_used", {})
|
|
366
|
+
if tools_used:
|
|
367
|
+
sorted_tools = sorted(tools_used.items(), key=lambda x: x[1], reverse=True)
|
|
368
|
+
for tool_name, count in sorted_tools[:10]: # TOP 10
|
|
369
|
+
report_lines.append(f"- **{tool_name}**: {count}회")
|
|
370
|
+
else:
|
|
371
|
+
report_lines.append("- 사용된 도구가 없습니다")
|
|
372
|
+
|
|
373
|
+
report_lines.extend([
|
|
374
|
+
"",
|
|
375
|
+
"## ⚠️ 오류 현황",
|
|
376
|
+
""
|
|
377
|
+
])
|
|
378
|
+
|
|
379
|
+
# 오류 현황
|
|
380
|
+
errors = analysis_data.get("errors_found", [])
|
|
381
|
+
if errors:
|
|
382
|
+
for i, error in enumerate(errors[:5], 1): # 최근 5개
|
|
383
|
+
report_lines.append(f"{i}. {error.get('error', 'N/A')} ({error.get('timestamp', 'N/A')})")
|
|
384
|
+
else:
|
|
385
|
+
report_lines.append("- 발견된 오류가 없습니다")
|
|
386
|
+
|
|
387
|
+
# 세션 길이 통계
|
|
388
|
+
duration_stats = analysis_data.get("duration_stats", {})
|
|
389
|
+
if duration_stats.get("mean", 0) > 0:
|
|
390
|
+
report_lines.extend([
|
|
391
|
+
"",
|
|
392
|
+
"## ⏱️ 세션 길이 통계",
|
|
393
|
+
"",
|
|
394
|
+
f"- 평균: {format_duration(duration_stats['mean'])}",
|
|
395
|
+
f"- 최소: {format_duration(duration_stats['min'])}",
|
|
396
|
+
f"- 최대: {format_duration(duration_stats['max'])}",
|
|
397
|
+
f"- 표준편차: {format_duration(duration_stats['std'])}"
|
|
398
|
+
])
|
|
399
|
+
|
|
400
|
+
# 개선 제안
|
|
401
|
+
report_lines.extend([
|
|
402
|
+
"",
|
|
403
|
+
"## 💡 개선 제안",
|
|
404
|
+
""
|
|
405
|
+
])
|
|
406
|
+
|
|
407
|
+
# 도구 사용 패턴 기반 제안
|
|
408
|
+
if tools_used:
|
|
409
|
+
most_used_tool = max(tools_used.items(), key=lambda x: x[1])[0]
|
|
410
|
+
if "Bash" in most_used_tool and tools_used[most_used_tool] > 10:
|
|
411
|
+
report_lines.append("- 🔧 Bash 명령어 사용이 잦습니다. 스크립트 자동화를 고려해보세요")
|
|
412
|
+
|
|
413
|
+
if len(errors) > 3:
|
|
414
|
+
report_lines.append("- ⚠️ 오류 발생이 잦습니다. 안정성 검토가 필요합니다")
|
|
415
|
+
|
|
416
|
+
if duration_stats.get("mean", 0) > 1800: # 30분 이상
|
|
417
|
+
report_lines.append("- ⏰ 세션 시간이 깁니다. 작업 분할을 고려해보세요")
|
|
418
|
+
|
|
419
|
+
if not report_lines[-1].startswith("-"):
|
|
420
|
+
report_lines.append("- 현재 세션 패턴이 양호합니다")
|
|
421
|
+
|
|
422
|
+
report_lines.extend([
|
|
423
|
+
"",
|
|
424
|
+
"---",
|
|
425
|
+
"*보고서는 Alfred의 SessionStart Hook으로 자동 생성되었습니다*",
|
|
426
|
+
"*분석 설정은 `.moai/config.json`의 `daily_analysis` 섹션에서 관리할 수 있습니다*"
|
|
427
|
+
])
|
|
428
|
+
|
|
429
|
+
return "\n".join(report_lines)
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
def update_cleanup_stats(cleanup_stats: Dict[str, int]):
|
|
433
|
+
"""정리 통계 업데이트
|
|
434
|
+
|
|
435
|
+
Args:
|
|
436
|
+
cleanup_stats: 정리 통계
|
|
437
|
+
"""
|
|
438
|
+
try:
|
|
439
|
+
stats_file = Path(".moai/cache/cleanup_stats.json")
|
|
440
|
+
stats_file.parent.mkdir(exist_ok=True)
|
|
441
|
+
|
|
442
|
+
# 기존 통계 로드
|
|
443
|
+
existing_stats = {}
|
|
444
|
+
if stats_file.exists():
|
|
445
|
+
with open(stats_file, 'r', encoding='utf-8') as f:
|
|
446
|
+
existing_stats = json.load(f)
|
|
447
|
+
|
|
448
|
+
# 새 통계 추가
|
|
449
|
+
today = datetime.now().strftime("%Y-%m-%d")
|
|
450
|
+
existing_stats[today] = {
|
|
451
|
+
"cleaned_files": cleanup_stats["total_cleaned"],
|
|
452
|
+
"reports_cleaned": cleanup_stats["reports_cleaned"],
|
|
453
|
+
"cache_cleaned": cleanup_stats["cache_cleaned"],
|
|
454
|
+
"temp_cleaned": cleanup_stats["temp_cleaned"],
|
|
455
|
+
"timestamp": datetime.now().isoformat()
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
# 최근 30일 통계만 유지
|
|
459
|
+
cutoff_date = datetime.now() - timedelta(days=30)
|
|
460
|
+
filtered_stats = {}
|
|
461
|
+
for date, stats in existing_stats.items():
|
|
462
|
+
try:
|
|
463
|
+
stat_date = datetime.strptime(date, "%Y-%m-%d")
|
|
464
|
+
if stat_date >= cutoff_date:
|
|
465
|
+
filtered_stats[date] = stats
|
|
466
|
+
except ValueError:
|
|
467
|
+
continue
|
|
468
|
+
|
|
469
|
+
# 통계 저장
|
|
470
|
+
with open(stats_file, 'w', encoding='utf-8') as f:
|
|
471
|
+
json.dump(filtered_stats, f, indent=2, ensure_ascii=False)
|
|
472
|
+
|
|
473
|
+
except Exception as e:
|
|
474
|
+
logger.error(f"Failed to update cleanup stats: {e}")
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
def main():
|
|
478
|
+
"""메인 함수"""
|
|
479
|
+
try:
|
|
480
|
+
# Hook timeout 설정 로드
|
|
481
|
+
timeout_seconds = load_hook_timeout() / 1000
|
|
482
|
+
graceful_degradation = get_graceful_degradation()
|
|
483
|
+
|
|
484
|
+
# 타임아웃 체크
|
|
485
|
+
import signal
|
|
486
|
+
import time
|
|
487
|
+
|
|
488
|
+
def timeout_handler(signum, frame):
|
|
489
|
+
raise TimeoutError("Hook execution timeout")
|
|
490
|
+
|
|
491
|
+
signal.signal(signal.SIGALRM, timeout_handler)
|
|
492
|
+
signal.alarm(int(timeout_seconds))
|
|
493
|
+
|
|
494
|
+
try:
|
|
495
|
+
start_time = time.time()
|
|
496
|
+
|
|
497
|
+
# 설정 로드
|
|
498
|
+
config = load_config()
|
|
499
|
+
|
|
500
|
+
# 마지막 정리 날짜 확인
|
|
501
|
+
last_cleanup = config.get("auto_cleanup", {}).get("last_cleanup")
|
|
502
|
+
cleanup_days = config.get("auto_cleanup", {}).get("cleanup_days", 7)
|
|
503
|
+
|
|
504
|
+
cleanup_stats = {"total_cleaned": 0, "reports_cleaned": 0, "cache_cleaned": 0, "temp_cleaned": 0}
|
|
505
|
+
report_path = None
|
|
506
|
+
|
|
507
|
+
# 정리 필요 시 실행
|
|
508
|
+
if should_cleanup_today(last_cleanup, cleanup_days):
|
|
509
|
+
cleanup_stats = cleanup_old_files(config)
|
|
510
|
+
|
|
511
|
+
# 마지막 정리 날짜 업데이트
|
|
512
|
+
config_file = Path(".moai/config.json")
|
|
513
|
+
if config_file.exists():
|
|
514
|
+
with open(config_file, 'r', encoding='utf-8') as f:
|
|
515
|
+
config_data = json.load(f)
|
|
516
|
+
|
|
517
|
+
config_data["auto_cleanup"]["last_cleanup"] = datetime.now().strftime("%Y-%m-%d")
|
|
518
|
+
|
|
519
|
+
with open(config_file, 'w', encoding='utf-8') as f:
|
|
520
|
+
json.dump(config_data, f, indent=2, ensure_ascii=False)
|
|
521
|
+
|
|
522
|
+
# 정리 통계 업데이트
|
|
523
|
+
update_cleanup_stats(cleanup_stats)
|
|
524
|
+
|
|
525
|
+
# 일일 분석 보고서 생성
|
|
526
|
+
last_analysis = config.get("daily_analysis", {}).get("last_analysis")
|
|
527
|
+
if should_cleanup_today(last_analysis, 1): # 매일 실행
|
|
528
|
+
report_path = generate_daily_analysis(config)
|
|
529
|
+
|
|
530
|
+
# 실행 시간 기록
|
|
531
|
+
execution_time = time.time() - start_time
|
|
532
|
+
|
|
533
|
+
# 결과 출력
|
|
534
|
+
result = {
|
|
535
|
+
"hook": "session_start__auto_cleanup",
|
|
536
|
+
"success": True,
|
|
537
|
+
"execution_time_seconds": round(execution_time, 2),
|
|
538
|
+
"cleanup_stats": cleanup_stats,
|
|
539
|
+
"daily_analysis_report": report_path,
|
|
540
|
+
"timestamp": datetime.now().isoformat()
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
print(json.dumps(result, ensure_ascii=False, indent=2))
|
|
544
|
+
|
|
545
|
+
finally:
|
|
546
|
+
signal.alarm(0) # 타임아웃 해제
|
|
547
|
+
|
|
548
|
+
except TimeoutError as e:
|
|
549
|
+
# 타임아웃 처리
|
|
550
|
+
result = {
|
|
551
|
+
"hook": "session_start__auto_cleanup",
|
|
552
|
+
"success": False,
|
|
553
|
+
"error": f"Hook execution timeout: {str(e)}",
|
|
554
|
+
"graceful_degradation": graceful_degradation,
|
|
555
|
+
"timestamp": datetime.now().isoformat()
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
if graceful_degradation:
|
|
559
|
+
result["message"] = "Hook timeout but continuing due to graceful degradation"
|
|
560
|
+
|
|
561
|
+
print(json.dumps(result, ensure_ascii=False, indent=2))
|
|
562
|
+
|
|
563
|
+
except Exception as e:
|
|
564
|
+
# 예외 처리
|
|
565
|
+
result = {
|
|
566
|
+
"hook": "session_start__auto_cleanup",
|
|
567
|
+
"success": False,
|
|
568
|
+
"error": f"Hook execution failed: {str(e)}",
|
|
569
|
+
"graceful_degradation": graceful_degradation,
|
|
570
|
+
"timestamp": datetime.now().isoformat()
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
if graceful_degradation:
|
|
574
|
+
result["message"] = "Hook failed but continuing due to graceful degradation"
|
|
575
|
+
|
|
576
|
+
print(json.dumps(result, ensure_ascii=False, indent=2))
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
if __name__ == "__main__":
|
|
580
|
+
main()
|