xtrm-tools 0.5.0
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.
- package/CHANGELOG.md +504 -0
- package/README.md +201 -0
- package/cli/dist/index.cjs +57378 -0
- package/cli/dist/index.cjs.map +1 -0
- package/cli/dist/index.d.cts +2 -0
- package/cli/package.json +47 -0
- package/config/.env.example +40 -0
- package/config/hooks.json +72 -0
- package/config/instructions/agents-top.md +30 -0
- package/config/instructions/claude-top.md +30 -0
- package/config/mcp_servers.json +57 -0
- package/config/mcp_servers_optional.json +53 -0
- package/config/pi/auth.json.template +14 -0
- package/config/pi/extensions/auto-session-name/index.ts +29 -0
- package/config/pi/extensions/auto-session-name/package.json +16 -0
- package/config/pi/extensions/auto-update/index.ts +71 -0
- package/config/pi/extensions/auto-update/package.json +16 -0
- package/config/pi/extensions/beads/index.ts +166 -0
- package/config/pi/extensions/beads/package.json +16 -0
- package/config/pi/extensions/bg-process/index.ts +230 -0
- package/config/pi/extensions/bg-process/package.json +16 -0
- package/config/pi/extensions/compact-header/index.ts +69 -0
- package/config/pi/extensions/compact-header/package.json +16 -0
- package/config/pi/extensions/core/adapter.ts +52 -0
- package/config/pi/extensions/core/guard-rules.ts +102 -0
- package/config/pi/extensions/core/lib.ts +3 -0
- package/config/pi/extensions/core/logger.ts +45 -0
- package/config/pi/extensions/core/runner.ts +71 -0
- package/config/pi/extensions/core/session-state.ts +59 -0
- package/config/pi/extensions/custom-footer/index.ts +160 -0
- package/config/pi/extensions/custom-footer/package.json +16 -0
- package/config/pi/extensions/custom-provider-qwen-cli/index.ts +363 -0
- package/config/pi/extensions/custom-provider-qwen-cli/package.json +1 -0
- package/config/pi/extensions/git-checkpoint/index.ts +53 -0
- package/config/pi/extensions/git-checkpoint/package.json +16 -0
- package/config/pi/extensions/minimal-mode/index.ts +201 -0
- package/config/pi/extensions/minimal-mode/package.json +16 -0
- package/config/pi/extensions/plan-mode/README.md +65 -0
- package/config/pi/extensions/plan-mode/index.ts +417 -0
- package/config/pi/extensions/plan-mode/package.json +12 -0
- package/config/pi/extensions/plan-mode/utils.ts +324 -0
- package/config/pi/extensions/quality-gates/index.ts +67 -0
- package/config/pi/extensions/quality-gates/package.json +16 -0
- package/config/pi/extensions/service-skills/index.ts +108 -0
- package/config/pi/extensions/service-skills/package.json +16 -0
- package/config/pi/extensions/session-flow/index.ts +131 -0
- package/config/pi/extensions/session-flow/package.json +16 -0
- package/config/pi/extensions/todo/index.ts +299 -0
- package/config/pi/extensions/todo/package.json +16 -0
- package/config/pi/extensions/xtrm-loader/index.ts +89 -0
- package/config/pi/extensions/xtrm-loader/package.json +16 -0
- package/config/pi/install-schema.json +44 -0
- package/config/pi/models.json.template +76 -0
- package/config/pi/pi-worktrees-settings.json +6 -0
- package/config/pi/settings.json.template +16 -0
- package/config/settings.json +70 -0
- package/hooks/README.md +75 -0
- package/hooks/agent_context.py +105 -0
- package/hooks/beads-claim-sync.mjs +166 -0
- package/hooks/beads-commit-gate.mjs +55 -0
- package/hooks/beads-compact-restore.mjs +69 -0
- package/hooks/beads-compact-save.mjs +51 -0
- package/hooks/beads-edit-gate.mjs +45 -0
- package/hooks/beads-gate-core.mjs +215 -0
- package/hooks/beads-gate-messages.mjs +87 -0
- package/hooks/beads-gate-utils.mjs +185 -0
- package/hooks/beads-memory-gate.mjs +61 -0
- package/hooks/beads-stop-gate.mjs +32 -0
- package/hooks/branch-state.mjs +39 -0
- package/hooks/gitnexus/gitnexus-hook.cjs +222 -0
- package/hooks/guard-rules.mjs +118 -0
- package/hooks/hooks.json +116 -0
- package/hooks/main-guard-post-push.mjs +71 -0
- package/hooks/main-guard.mjs +119 -0
- package/hooks/quality-check.cjs +1286 -0
- package/hooks/quality-check.py +345 -0
- package/hooks/serena-workflow-reminder.py +74 -0
- package/package.json +77 -0
- package/project-skills/quality-gates/.claude/hooks/hook-config.json +66 -0
- package/project-skills/quality-gates/.claude/hooks/quality-check.cjs +1286 -0
- package/project-skills/quality-gates/.claude/hooks/quality-check.py +334 -0
- package/project-skills/quality-gates/.claude/settings.json +3 -0
- package/project-skills/quality-gates/.claude/skills/using-quality-gates/SKILL.md +254 -0
- package/project-skills/quality-gates/README.md +109 -0
- package/project-skills/quality-gates/evals/evals.json +181 -0
- package/project-skills/quality-gates/workspace/iteration-1/FINAL-EVAL-SUMMARY.md +75 -0
- package/project-skills/quality-gates/workspace/iteration-1/edge-case-auto-fix-verification/with_skill/outputs/response.md +59 -0
- package/project-skills/quality-gates/workspace/iteration-1/edge-case-mixed-language-project/with_skill/outputs/response.md +60 -0
- package/project-skills/quality-gates/workspace/iteration-1/eval-summary.md +105 -0
- package/project-skills/quality-gates/workspace/iteration-1/partial-install-python-only/with_skill/outputs/response.md +93 -0
- package/project-skills/quality-gates/workspace/iteration-1/python-refactor-request/with_skill/outputs/response.md +104 -0
- package/project-skills/quality-gates/workspace/iteration-1/quality-gate-error-fix/with_skill/outputs/response.md +74 -0
- package/project-skills/quality-gates/workspace/iteration-1/should-not-trigger-general-chat/with_skill/outputs/response.md +18 -0
- package/project-skills/quality-gates/workspace/iteration-1/should-not-trigger-math-question/with_skill/outputs/response.md +18 -0
- package/project-skills/quality-gates/workspace/iteration-1/should-not-trigger-unrelated-coding/with_skill/outputs/response.md +56 -0
- package/project-skills/quality-gates/workspace/iteration-1/tdd-guard-blocking-confusion/with_skill/outputs/response.md +67 -0
- package/project-skills/quality-gates/workspace/iteration-1/typescript-feature-with-tests/with_skill/outputs/response.md +97 -0
- package/project-skills/service-skills-set/.claude/git-hooks/doc_reminder.py +67 -0
- package/project-skills/service-skills-set/.claude/git-hooks/skill_staleness.py +194 -0
- package/project-skills/service-skills-set/.claude/service-registry.json +4 -0
- package/project-skills/service-skills-set/.claude/settings.json +37 -0
- package/project-skills/service-skills-set/.claude/skills/creating-service-skills/SKILL.md +433 -0
- package/project-skills/service-skills-set/.claude/skills/creating-service-skills/references/script_quality_standards.md +425 -0
- package/project-skills/service-skills-set/.claude/skills/creating-service-skills/references/service_skill_system_guide.md +278 -0
- package/project-skills/service-skills-set/.claude/skills/creating-service-skills/scripts/bootstrap.py +308 -0
- package/project-skills/service-skills-set/.claude/skills/creating-service-skills/scripts/deep_dive.py +304 -0
- package/project-skills/service-skills-set/.claude/skills/creating-service-skills/scripts/scaffolder.py +482 -0
- package/project-skills/service-skills-set/.claude/skills/scoping-service-skills/SKILL.md +231 -0
- package/project-skills/service-skills-set/.claude/skills/scoping-service-skills/scripts/scope.py +74 -0
- package/project-skills/service-skills-set/.claude/skills/updating-service-skills/SKILL.md +136 -0
- package/project-skills/service-skills-set/.claude/skills/updating-service-skills/scripts/drift_detector.py +222 -0
- package/project-skills/service-skills-set/.claude/skills/using-service-skills/SKILL.md +108 -0
- package/project-skills/service-skills-set/.claude/skills/using-service-skills/scripts/cataloger.py +74 -0
- package/project-skills/service-skills-set/.claude/skills/using-service-skills/scripts/skill_activator.py +152 -0
- package/project-skills/service-skills-set/README.md +93 -0
- package/project-skills/service-skills-set/install-service-skills.py +193 -0
- package/project-skills/service-skills-set/service-skills-readme.md +236 -0
- package/skills/README.txt +31 -0
- package/skills/clean-code/SKILL.md +201 -0
- package/skills/creating-service-skills/SKILL.md +433 -0
- package/skills/creating-service-skills/references/script_quality_standards.md +425 -0
- package/skills/creating-service-skills/references/service_skill_system_guide.md +278 -0
- package/skills/creating-service-skills/scripts/bootstrap.py +326 -0
- package/skills/creating-service-skills/scripts/deep_dive.py +304 -0
- package/skills/creating-service-skills/scripts/scaffolder.py +482 -0
- package/skills/delegating/SKILL.md +196 -0
- package/skills/delegating/config.yaml +210 -0
- package/skills/delegating/references/orchestration-protocols.md +41 -0
- package/skills/docker-expert/SKILL.md +409 -0
- package/skills/documenting/CHANGELOG.md +23 -0
- package/skills/documenting/README.md +148 -0
- package/skills/documenting/SKILL.md +113 -0
- package/skills/documenting/examples/example_pattern.md +70 -0
- package/skills/documenting/examples/example_reference.md +70 -0
- package/skills/documenting/examples/example_ssot_analytics.md +64 -0
- package/skills/documenting/examples/example_workflow.md +141 -0
- package/skills/documenting/references/changelog-format.md +97 -0
- package/skills/documenting/references/metadata-schema.md +136 -0
- package/skills/documenting/references/taxonomy.md +81 -0
- package/skills/documenting/references/versioning-rules.md +78 -0
- package/skills/documenting/scripts/bump_version.sh +60 -0
- package/skills/documenting/scripts/changelog/__init__.py +0 -0
- package/skills/documenting/scripts/changelog/add_entry.py +216 -0
- package/skills/documenting/scripts/changelog/bump_release.py +117 -0
- package/skills/documenting/scripts/changelog/init_changelog.py +54 -0
- package/skills/documenting/scripts/changelog/validate_changelog.py +128 -0
- package/skills/documenting/scripts/drift_detector.py +266 -0
- package/skills/documenting/scripts/generate_template.py +311 -0
- package/skills/documenting/scripts/list_by_category.sh +84 -0
- package/skills/documenting/scripts/orchestrator.py +255 -0
- package/skills/documenting/scripts/validate_metadata.py +242 -0
- package/skills/documenting/templates/CHANGELOG.md.template +13 -0
- package/skills/find-skills/SKILL.md +133 -0
- package/skills/gitnexus-debugging/SKILL.md +85 -0
- package/skills/gitnexus-exploring/SKILL.md +75 -0
- package/skills/gitnexus-impact-analysis/SKILL.md +94 -0
- package/skills/gitnexus-refactoring/SKILL.md +113 -0
- package/skills/hook-development/SKILL.md +797 -0
- package/skills/hook-development/examples/load-context.sh +55 -0
- package/skills/hook-development/examples/quality-check.js +1168 -0
- package/skills/hook-development/examples/validate-bash.sh +43 -0
- package/skills/hook-development/examples/validate-write.sh +38 -0
- package/skills/hook-development/references/advanced.md +527 -0
- package/skills/hook-development/references/migration.md +369 -0
- package/skills/hook-development/references/patterns.md +412 -0
- package/skills/hook-development/scripts/README.md +164 -0
- package/skills/hook-development/scripts/hook-linter.sh +153 -0
- package/skills/hook-development/scripts/test-hook.sh +252 -0
- package/skills/hook-development/scripts/validate-hook-schema.sh +159 -0
- package/skills/obsidian-cli/SKILL.md +106 -0
- package/skills/orchestrating-agents/SKILL.md +135 -0
- package/skills/orchestrating-agents/config.yaml +45 -0
- package/skills/orchestrating-agents/references/agent-context-integration.md +37 -0
- package/skills/orchestrating-agents/references/examples.md +45 -0
- package/skills/orchestrating-agents/references/handover-protocol.md +31 -0
- package/skills/orchestrating-agents/references/workflows.md +42 -0
- package/skills/orchestrating-agents/scripts/detect_neighbors.py +23 -0
- package/skills/prompt-improving/README.md +162 -0
- package/skills/prompt-improving/SKILL.md +74 -0
- package/skills/prompt-improving/references/analysis_commands.md +24 -0
- package/skills/prompt-improving/references/chain_of_thought.md +24 -0
- package/skills/prompt-improving/references/mcp_definitions.md +20 -0
- package/skills/prompt-improving/references/multishot.md +23 -0
- package/skills/prompt-improving/references/xml_core.md +60 -0
- package/skills/python-testing/SKILL.md +815 -0
- package/skills/scoping-service-skills/SKILL.md +231 -0
- package/skills/scoping-service-skills/scripts/scope.py +74 -0
- package/skills/senior-backend/SKILL.md +209 -0
- package/skills/senior-backend/references/api_design_patterns.md +103 -0
- package/skills/senior-backend/references/backend_security_practices.md +103 -0
- package/skills/senior-backend/references/database_optimization_guide.md +103 -0
- package/skills/senior-backend/scripts/api_load_tester.py +114 -0
- package/skills/senior-backend/scripts/api_scaffolder.py +114 -0
- package/skills/senior-backend/scripts/database_migration_tool.py +114 -0
- package/skills/senior-data-scientist/SKILL.md +226 -0
- package/skills/senior-data-scientist/references/experiment_design_frameworks.md +80 -0
- package/skills/senior-data-scientist/references/feature_engineering_patterns.md +80 -0
- package/skills/senior-data-scientist/references/statistical_methods_advanced.md +80 -0
- package/skills/senior-data-scientist/scripts/experiment_designer.py +100 -0
- package/skills/senior-data-scientist/scripts/feature_engineering_pipeline.py +100 -0
- package/skills/senior-data-scientist/scripts/model_evaluation_suite.py +100 -0
- package/skills/senior-devops/SKILL.md +209 -0
- package/skills/senior-devops/references/cicd_pipeline_guide.md +103 -0
- package/skills/senior-devops/references/deployment_strategies.md +103 -0
- package/skills/senior-devops/references/infrastructure_as_code.md +103 -0
- package/skills/senior-devops/scripts/deployment_manager.py +114 -0
- package/skills/senior-devops/scripts/pipeline_generator.py +114 -0
- package/skills/senior-devops/scripts/terraform_scaffolder.py +114 -0
- package/skills/senior-security/SKILL.md +209 -0
- package/skills/senior-security/references/cryptography_implementation.md +103 -0
- package/skills/senior-security/references/penetration_testing_guide.md +103 -0
- package/skills/senior-security/references/security_architecture_patterns.md +103 -0
- package/skills/senior-security/scripts/pentest_automator.py +114 -0
- package/skills/senior-security/scripts/security_auditor.py +114 -0
- package/skills/senior-security/scripts/threat_modeler.py +114 -0
- package/skills/skill-creator/LICENSE.txt +202 -0
- package/skills/skill-creator/SKILL.md +479 -0
- package/skills/skill-creator/agents/analyzer.md +274 -0
- package/skills/skill-creator/agents/comparator.md +202 -0
- package/skills/skill-creator/agents/grader.md +223 -0
- package/skills/skill-creator/assets/eval_review.html +146 -0
- package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/skill-creator/references/schemas.md +430 -0
- package/skills/skill-creator/scripts/__init__.py +0 -0
- package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/skill-creator/scripts/generate_report.py +326 -0
- package/skills/skill-creator/scripts/improve_description.py +248 -0
- package/skills/skill-creator/scripts/package_skill.py +136 -0
- package/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/skill-creator/scripts/run_eval.py +310 -0
- package/skills/skill-creator/scripts/run_loop.py +332 -0
- package/skills/skill-creator/scripts/utils.py +47 -0
- package/skills/sync-docs/SKILL.md +132 -0
- package/skills/sync-docs/evals/evals.json +89 -0
- package/skills/sync-docs/references/doc-structure.md +99 -0
- package/skills/sync-docs/references/schema.md +103 -0
- package/skills/sync-docs/scripts/changelog/add_entry.py +216 -0
- package/skills/sync-docs/scripts/context_gatherer.py +240 -0
- package/skills/sync-docs/scripts/doc_structure_analyzer.py +495 -0
- package/skills/sync-docs/scripts/drift_detector.py +327 -0
- package/skills/sync-docs/scripts/validate_doc.py +365 -0
- package/skills/sync-docs/scripts/validate_metadata.py +185 -0
- package/skills/sync-docs-workspace/iteration-1/benchmark.json +293 -0
- package/skills/sync-docs-workspace/iteration-1/benchmark.md +13 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/with_skill/outputs/result.md +210 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/with_skill/run-1/grading.json +28 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/with_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/outputs/result.md +101 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/run-1/grading.json +28 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-1/eval-fix-mode/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-1/eval-fix-mode/with_skill/outputs/result.md +198 -0
- package/skills/sync-docs-workspace/iteration-1/eval-fix-mode/with_skill/run-1/grading.json +28 -0
- package/skills/sync-docs-workspace/iteration-1/eval-fix-mode/with_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-1/eval-fix-mode/without_skill/outputs/result.md +94 -0
- package/skills/sync-docs-workspace/iteration-1/eval-fix-mode/without_skill/run-1/grading.json +28 -0
- package/skills/sync-docs-workspace/iteration-1/eval-fix-mode/without_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/with_skill/outputs/result.md +237 -0
- package/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/with_skill/run-1/grading.json +28 -0
- package/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/with_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/without_skill/outputs/result.md +134 -0
- package/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/without_skill/run-1/grading.json +28 -0
- package/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/without_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-2/benchmark.json +297 -0
- package/skills/sync-docs-workspace/iteration-2/benchmark.md +13 -0
- package/skills/sync-docs-workspace/iteration-2/eval-doc-audit/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-2/eval-doc-audit/with_skill/outputs/result.md +137 -0
- package/skills/sync-docs-workspace/iteration-2/eval-doc-audit/with_skill/run-1/grading.json +92 -0
- package/skills/sync-docs-workspace/iteration-2/eval-doc-audit/with_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-2/eval-doc-audit/without_skill/outputs/result.md +134 -0
- package/skills/sync-docs-workspace/iteration-2/eval-doc-audit/without_skill/run-1/grading.json +86 -0
- package/skills/sync-docs-workspace/iteration-2/eval-doc-audit/without_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-2/eval-fix-mode/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-2/eval-fix-mode/with_skill/outputs/result.md +193 -0
- package/skills/sync-docs-workspace/iteration-2/eval-fix-mode/with_skill/run-1/grading.json +72 -0
- package/skills/sync-docs-workspace/iteration-2/eval-fix-mode/with_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-2/eval-fix-mode/without_skill/outputs/result.md +211 -0
- package/skills/sync-docs-workspace/iteration-2/eval-fix-mode/without_skill/run-1/grading.json +91 -0
- package/skills/sync-docs-workspace/iteration-2/eval-fix-mode/without_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/with_skill/outputs/result.md +182 -0
- package/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/with_skill/run-1/grading.json +95 -0
- package/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/with_skill/run-1/timing.json +1 -0
- package/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/without_skill/outputs/result.md +222 -0
- package/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/without_skill/run-1/grading.json +88 -0
- package/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/without_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-3/benchmark.json +298 -0
- package/skills/sync-docs-workspace/iteration-3/benchmark.md +13 -0
- package/skills/sync-docs-workspace/iteration-3/eval-doc-audit/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-3/eval-doc-audit/with_skill/outputs/result.md +125 -0
- package/skills/sync-docs-workspace/iteration-3/eval-doc-audit/with_skill/run-1/grading.json +97 -0
- package/skills/sync-docs-workspace/iteration-3/eval-doc-audit/with_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-3/eval-doc-audit/without_skill/outputs/result.md +144 -0
- package/skills/sync-docs-workspace/iteration-3/eval-doc-audit/without_skill/run-1/grading.json +78 -0
- package/skills/sync-docs-workspace/iteration-3/eval-doc-audit/without_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-3/eval-fix-mode/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-3/eval-fix-mode/with_skill/outputs/result.md +104 -0
- package/skills/sync-docs-workspace/iteration-3/eval-fix-mode/with_skill/run-1/grading.json +91 -0
- package/skills/sync-docs-workspace/iteration-3/eval-fix-mode/with_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-3/eval-fix-mode/without_skill/outputs/result.md +79 -0
- package/skills/sync-docs-workspace/iteration-3/eval-fix-mode/without_skill/run-1/grading.json +82 -0
- package/skills/sync-docs-workspace/iteration-3/eval-fix-mode/without_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/eval_metadata.json +27 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase1_context.json +302 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase2_drift.txt +33 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase3_analysis.json +114 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase4_fix.txt +118 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase5_validate.txt +38 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/result.md +158 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/run-1/grading.json +95 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/run-1/timing.json +5 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/without_skill/outputs/result.md +71 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/without_skill/run-1/grading.json +90 -0
- package/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/without_skill/run-1/timing.json +5 -0
- package/skills/test-planning/SKILL.md +208 -0
- package/skills/test-planning/evals/evals.json +23 -0
- package/skills/updating-service-skills/SKILL.md +136 -0
- package/skills/updating-service-skills/scripts/drift_detector.py +222 -0
- package/skills/using-TDD/SKILL.md +410 -0
- package/skills/using-quality-gates/SKILL.md +254 -0
- package/skills/using-serena-lsp/README.md +8 -0
- package/skills/using-serena-lsp/REFERENCE.md +194 -0
- package/skills/using-serena-lsp/SKILL.md +82 -0
- package/skills/using-service-skills/SKILL.md +108 -0
- package/skills/using-service-skills/scripts/cataloger.py +74 -0
- package/skills/using-service-skills/scripts/skill_activator.py +152 -0
- package/skills/using-service-skills/scripts/test_skill_activator.py +58 -0
- package/skills/using-xtrm/SKILL.md +245 -0
- package/skills/xt-end/SKILL.md +128 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Initialize a new CHANGELOG.md file."""
|
|
3
|
+
|
|
4
|
+
import sys
|
|
5
|
+
from datetime import date
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def init_changelog(output_path: Path, initial_version: str = "0.1.0") -> None:
|
|
10
|
+
"""Create new CHANGELOG.md from template."""
|
|
11
|
+
# Assuming the script is in skills/documenting/scripts/changelog/
|
|
12
|
+
# And template is in skills/documenting/templates/
|
|
13
|
+
# script path: .../skills/documenting/scripts/changelog/init_changelog.py
|
|
14
|
+
# parent: .../skills/documenting/scripts/changelog
|
|
15
|
+
# parent.parent: .../skills/documenting/scripts
|
|
16
|
+
# parent.parent.parent: .../skills/documenting
|
|
17
|
+
|
|
18
|
+
template_path = Path(__file__).resolve().parent.parent.parent / "templates" / "CHANGELOG.md.template"
|
|
19
|
+
|
|
20
|
+
if not template_path.exists():
|
|
21
|
+
raise FileNotFoundError(f"Template not found: {template_path}")
|
|
22
|
+
|
|
23
|
+
if output_path.exists():
|
|
24
|
+
raise FileExistsError(f"CHANGELOG already exists: {output_path}")
|
|
25
|
+
|
|
26
|
+
template = template_path.read_text(encoding='utf-8')
|
|
27
|
+
content = template.format(
|
|
28
|
+
release_date=date.today().strftime('%Y-%m-%d'),
|
|
29
|
+
initial_version=initial_version
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
output_path.write_text(content, encoding='utf-8')
|
|
33
|
+
print(f"✅ Created {output_path}")
|
|
34
|
+
print(f"📝 Initial version: {initial_version}")
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def main():
|
|
38
|
+
"""CLI entry point."""
|
|
39
|
+
if len(sys.argv) < 2:
|
|
40
|
+
print("Usage: init_changelog.py <output_path> [initial_version]")
|
|
41
|
+
print("")
|
|
42
|
+
print("Example:")
|
|
43
|
+
print(" init_changelog.py ./CHANGELOG.md")
|
|
44
|
+
print(" init_changelog.py ./CHANGELOG.md 1.0.0")
|
|
45
|
+
sys.exit(1)
|
|
46
|
+
|
|
47
|
+
output_path = Path(sys.argv[1])
|
|
48
|
+
initial_version = sys.argv[2] if len(sys.argv) > 2 else "0.1.0"
|
|
49
|
+
|
|
50
|
+
init_changelog(output_path, initial_version)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
if __name__ == "__main__":
|
|
54
|
+
main()
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Validate CHANGELOG.md follows Keep a Changelog 1.0.0 format.
|
|
4
|
+
|
|
5
|
+
Checks:
|
|
6
|
+
- Required header with Keep a Changelog link
|
|
7
|
+
- [Unreleased] section exists
|
|
8
|
+
- Version sections use semantic versioning
|
|
9
|
+
- Valid categories: Added, Changed, Deprecated, Removed, Fixed, Security
|
|
10
|
+
- Proper date format: YYYY-MM-DD
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
import re
|
|
14
|
+
from pathlib import Path
|
|
15
|
+
from typing import Dict, List, Tuple
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
VALID_CATEGORIES = {"Added", "Changed", "Deprecated", "Removed", "Fixed", "Security"}
|
|
19
|
+
SEMVER_PATTERN = r"^\d+\.\d+\.\d+$"
|
|
20
|
+
DATE_PATTERN = r"^\d{4}-\d{2}-\d{2}$"
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def validate_changelog(content: str) -> Dict[str, any]:
|
|
24
|
+
"""
|
|
25
|
+
Validate CHANGELOG content.
|
|
26
|
+
|
|
27
|
+
Returns:
|
|
28
|
+
{
|
|
29
|
+
"valid": bool,
|
|
30
|
+
"errors": List[str],
|
|
31
|
+
"warnings": List[str]
|
|
32
|
+
}
|
|
33
|
+
"""
|
|
34
|
+
errors = []
|
|
35
|
+
warnings = []
|
|
36
|
+
|
|
37
|
+
# Check header
|
|
38
|
+
if "Keep a Changelog" not in content:
|
|
39
|
+
errors.append("Missing 'Keep a Changelog' link in header")
|
|
40
|
+
|
|
41
|
+
if "Semantic Versioning" not in content:
|
|
42
|
+
warnings.append("Missing 'Semantic Versioning' link in header")
|
|
43
|
+
|
|
44
|
+
# Check for [Unreleased] section
|
|
45
|
+
if not re.search(r"^## \[Unreleased\]", content, re.MULTILINE):
|
|
46
|
+
errors.append("Missing required [Unreleased] section")
|
|
47
|
+
|
|
48
|
+
# Find all version sections
|
|
49
|
+
version_pattern = r"^## \[(.+?)\](?: - (\d{4}-\d{2}-\d{2}))?$"
|
|
50
|
+
versions = re.findall(version_pattern, content, re.MULTILINE)
|
|
51
|
+
|
|
52
|
+
for version, date in versions:
|
|
53
|
+
if version == "Unreleased":
|
|
54
|
+
if date:
|
|
55
|
+
warnings.append("[Unreleased] section should not have a date")
|
|
56
|
+
continue
|
|
57
|
+
|
|
58
|
+
# Validate semver
|
|
59
|
+
if not re.match(SEMVER_PATTERN, version):
|
|
60
|
+
errors.append(f"Invalid semantic version: [{version}] (expected X.Y.Z)")
|
|
61
|
+
|
|
62
|
+
# Validate date
|
|
63
|
+
if not date:
|
|
64
|
+
errors.append(f"Version [{version}] missing release date")
|
|
65
|
+
elif not re.match(DATE_PATTERN, date):
|
|
66
|
+
errors.append(f"Invalid date format for [{version}]: {date} (expected YYYY-MM-DD)")
|
|
67
|
+
|
|
68
|
+
# Find all categories
|
|
69
|
+
category_pattern = r"^### (.+?)$"
|
|
70
|
+
categories = re.findall(category_pattern, content, re.MULTILINE)
|
|
71
|
+
|
|
72
|
+
for category in categories:
|
|
73
|
+
if category not in VALID_CATEGORIES:
|
|
74
|
+
errors.append(f"Invalid category: '{category}' (must be one of {VALID_CATEGORIES})")
|
|
75
|
+
|
|
76
|
+
return {
|
|
77
|
+
"valid": len(errors) == 0,
|
|
78
|
+
"errors": errors,
|
|
79
|
+
"warnings": warnings
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
def validate_file(filepath: Path) -> Dict[str, any]:
|
|
84
|
+
"""Validate a CHANGELOG.md file."""
|
|
85
|
+
if not filepath.exists():
|
|
86
|
+
return {
|
|
87
|
+
"valid": False,
|
|
88
|
+
"errors": [f"File not found: {filepath}"],
|
|
89
|
+
"warnings": []
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
content = filepath.read_text(encoding='utf-8')
|
|
93
|
+
return validate_changelog(content)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
def main():
|
|
97
|
+
"""CLI entry point."""
|
|
98
|
+
import sys
|
|
99
|
+
|
|
100
|
+
if len(sys.argv) != 2:
|
|
101
|
+
print("Usage: validate_changelog.py <CHANGELOG.md>")
|
|
102
|
+
sys.exit(1)
|
|
103
|
+
|
|
104
|
+
filepath = Path(sys.argv[1])
|
|
105
|
+
result = validate_file(filepath)
|
|
106
|
+
|
|
107
|
+
print(f"Validating: {filepath.name}")
|
|
108
|
+
print("=" * 60)
|
|
109
|
+
|
|
110
|
+
if result["warnings"]:
|
|
111
|
+
print("\n⚠️ WARNINGS:")
|
|
112
|
+
for warning in result["warnings"]:
|
|
113
|
+
print(f" - {warning}")
|
|
114
|
+
|
|
115
|
+
if result["errors"]:
|
|
116
|
+
print("\n❌ ERRORS:")
|
|
117
|
+
for error in result["errors"]:
|
|
118
|
+
print(f" - {error}")
|
|
119
|
+
print("=" * 60)
|
|
120
|
+
sys.exit(1)
|
|
121
|
+
|
|
122
|
+
print("\n✅ VALID: All checks passed!")
|
|
123
|
+
print("=" * 60)
|
|
124
|
+
sys.exit(0)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
if __name__ == "__main__":
|
|
128
|
+
main()
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Detect documentation drift between Serena memories and git-modified files.
|
|
4
|
+
|
|
5
|
+
Subcommands:
|
|
6
|
+
scan [--since N] — scan all memories, report stale ones (default N=30 commits)
|
|
7
|
+
check <memory> — check a single memory by name
|
|
8
|
+
hook — Stop hook mode: check session writes, output JSON if stale
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
import sys
|
|
12
|
+
import re
|
|
13
|
+
import json
|
|
14
|
+
import fnmatch
|
|
15
|
+
import subprocess
|
|
16
|
+
from pathlib import Path
|
|
17
|
+
|
|
18
|
+
import yaml
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# ── Path resolution ───────────────────────────────────────────────────────────
|
|
22
|
+
|
|
23
|
+
def find_project_root() -> Path:
|
|
24
|
+
"""Walk up from cwd looking for .serena/memories/."""
|
|
25
|
+
p = Path.cwd()
|
|
26
|
+
for parent in [p, *p.parents]:
|
|
27
|
+
if (parent / ".serena" / "memories").exists():
|
|
28
|
+
return parent
|
|
29
|
+
print(f"Warning: no .serena/memories/ found in ancestors of {p}; using cwd", file=sys.stderr)
|
|
30
|
+
return p
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def get_memories_dir(project_root: Path) -> Path:
|
|
34
|
+
return project_root / ".serena" / "memories"
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# ── Frontmatter parsing ───────────────────────────────────────────────────────
|
|
38
|
+
|
|
39
|
+
def extract_frontmatter(content: str) -> dict:
|
|
40
|
+
match = re.match(r"^---\n(.*?)\n---\n", content, re.DOTALL)
|
|
41
|
+
if not match:
|
|
42
|
+
return {}
|
|
43
|
+
try:
|
|
44
|
+
return yaml.safe_load(match.group(1)) or {}
|
|
45
|
+
except yaml.YAMLError:
|
|
46
|
+
return {}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def extract_tracks(content: str) -> list:
|
|
50
|
+
"""Return tracks: glob list from memory frontmatter."""
|
|
51
|
+
fm = extract_frontmatter(content)
|
|
52
|
+
tracks = fm.get("tracks", [])
|
|
53
|
+
return tracks if isinstance(tracks, list) else []
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
def extract_updated(content: str) -> str:
|
|
57
|
+
fm = extract_frontmatter(content)
|
|
58
|
+
return str(fm.get("updated", ""))
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
# ── File matching ─────────────────────────────────────────────────────────────
|
|
62
|
+
|
|
63
|
+
def _match_glob(path: str, pattern: str) -> bool:
|
|
64
|
+
"""Match a file path against a glob pattern with proper ** support."""
|
|
65
|
+
path_parts = Path(path).as_posix().split("/")
|
|
66
|
+
pattern_parts = Path(pattern).as_posix().split("/")
|
|
67
|
+
|
|
68
|
+
def _match(pp, pat):
|
|
69
|
+
if not pat:
|
|
70
|
+
return not pp
|
|
71
|
+
if pat[0] == "**":
|
|
72
|
+
# ** matches zero or more segments
|
|
73
|
+
for i in range(len(pp) + 1):
|
|
74
|
+
if _match(pp[i:], pat[1:]):
|
|
75
|
+
return True
|
|
76
|
+
return False
|
|
77
|
+
if not pp:
|
|
78
|
+
return False
|
|
79
|
+
return fnmatch.fnmatch(pp[0], pat[0]) and _match(pp[1:], pat[1:])
|
|
80
|
+
|
|
81
|
+
return _match(path_parts, pattern_parts)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def match_files_to_tracks(files: list, tracks: list) -> list:
|
|
85
|
+
"""Return files that match any of the tracks globs (supports **)."""
|
|
86
|
+
matched = []
|
|
87
|
+
for f in files:
|
|
88
|
+
for pattern in tracks:
|
|
89
|
+
if _match_glob(f, pattern):
|
|
90
|
+
matched.append(f)
|
|
91
|
+
break
|
|
92
|
+
return matched
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
# ── Git helpers ───────────────────────────────────────────────────────────────
|
|
96
|
+
|
|
97
|
+
def get_recent_modified_files(project_root: Path, since_n_commits: int = 30) -> list:
|
|
98
|
+
"""Get files modified in the last N commits."""
|
|
99
|
+
try:
|
|
100
|
+
result = subprocess.run(
|
|
101
|
+
["git", "log", f"-{since_n_commits}", "--name-only", "--format="],
|
|
102
|
+
cwd=project_root, capture_output=True, text=True
|
|
103
|
+
)
|
|
104
|
+
return [l.strip() for l in result.stdout.splitlines() if l.strip()]
|
|
105
|
+
except Exception:
|
|
106
|
+
return []
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
def get_session_written_files(project_root: Path) -> list:
|
|
110
|
+
"""Get files with uncommitted or staged changes."""
|
|
111
|
+
try:
|
|
112
|
+
r1 = subprocess.run(
|
|
113
|
+
["git", "diff", "HEAD", "--name-only"],
|
|
114
|
+
cwd=project_root, capture_output=True, text=True
|
|
115
|
+
)
|
|
116
|
+
r2 = subprocess.run(
|
|
117
|
+
["git", "diff", "--cached", "--name-only"],
|
|
118
|
+
cwd=project_root, capture_output=True, text=True
|
|
119
|
+
)
|
|
120
|
+
files = r1.stdout.splitlines() + r2.stdout.splitlines()
|
|
121
|
+
return list({f.strip() for f in files if f.strip()})
|
|
122
|
+
except Exception:
|
|
123
|
+
return []
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
# ── Core logic ────────────────────────────────────────────────────────────────
|
|
127
|
+
|
|
128
|
+
def scan_memories(project_root: Path, since_n_commits: int = 30) -> dict:
|
|
129
|
+
"""Return {memory_stem: {files, updated}} for stale memories."""
|
|
130
|
+
memories_dir = get_memories_dir(project_root)
|
|
131
|
+
if not memories_dir.exists():
|
|
132
|
+
return {}
|
|
133
|
+
|
|
134
|
+
modified_files = get_recent_modified_files(project_root, since_n_commits)
|
|
135
|
+
stale = {}
|
|
136
|
+
|
|
137
|
+
for md_file in sorted(memories_dir.glob("*.md")):
|
|
138
|
+
content = md_file.read_text(encoding="utf-8")
|
|
139
|
+
tracks = extract_tracks(content)
|
|
140
|
+
if not tracks:
|
|
141
|
+
continue
|
|
142
|
+
matched = match_files_to_tracks(modified_files, tracks)
|
|
143
|
+
if matched:
|
|
144
|
+
stale[md_file.stem] = {
|
|
145
|
+
"files": matched[:5],
|
|
146
|
+
"updated": extract_updated(content),
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
return stale
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
def format_scan_report(stale: dict) -> str:
|
|
153
|
+
if not stale:
|
|
154
|
+
return "[Docs Drift] All memories up to date. No action needed."
|
|
155
|
+
|
|
156
|
+
n = len(stale)
|
|
157
|
+
lines = [f"[Drift Report] {n} memor{'y' if n == 1 else 'ies'} stale:\n"]
|
|
158
|
+
for name, info in stale.items():
|
|
159
|
+
lines.append(f" {name}")
|
|
160
|
+
lines.append(f" Last updated: {info['updated']}")
|
|
161
|
+
for f in info["files"][:3]:
|
|
162
|
+
lines.append(f" Modified: {f}")
|
|
163
|
+
lines.append("")
|
|
164
|
+
lines.append("Run /documenting to update.")
|
|
165
|
+
return "\n".join(lines)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
# ── Subcommands ───────────────────────────────────────────────────────────────
|
|
169
|
+
|
|
170
|
+
def cmd_scan(args: list):
|
|
171
|
+
since = 30
|
|
172
|
+
if "--since" in args:
|
|
173
|
+
idx = args.index("--since")
|
|
174
|
+
if idx + 1 < len(args):
|
|
175
|
+
since = int(args[idx + 1])
|
|
176
|
+
|
|
177
|
+
project_root = find_project_root()
|
|
178
|
+
stale = scan_memories(project_root, since)
|
|
179
|
+
print(format_scan_report(stale))
|
|
180
|
+
sys.exit(1 if stale else 0)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
def cmd_check(args: list):
|
|
184
|
+
if not args:
|
|
185
|
+
print("Usage: drift_detector.py check <memory-name>")
|
|
186
|
+
sys.exit(1)
|
|
187
|
+
|
|
188
|
+
memory_name = args[0]
|
|
189
|
+
project_root = find_project_root()
|
|
190
|
+
md_file = get_memories_dir(project_root) / f"{memory_name}.md"
|
|
191
|
+
|
|
192
|
+
if not md_file.exists():
|
|
193
|
+
print(f"Memory not found: {memory_name}")
|
|
194
|
+
sys.exit(1)
|
|
195
|
+
|
|
196
|
+
content = md_file.read_text(encoding="utf-8")
|
|
197
|
+
tracks = extract_tracks(content)
|
|
198
|
+
if not tracks:
|
|
199
|
+
print(f"{memory_name}: no tracks: field — skipping drift check.")
|
|
200
|
+
sys.exit(0)
|
|
201
|
+
|
|
202
|
+
modified = get_recent_modified_files(project_root, 30)
|
|
203
|
+
matched = match_files_to_tracks(modified, tracks)
|
|
204
|
+
if matched:
|
|
205
|
+
print(f"{memory_name}: STALE — matched: {', '.join(matched[:3])}")
|
|
206
|
+
sys.exit(1)
|
|
207
|
+
else:
|
|
208
|
+
print(f"{memory_name}: up to date.")
|
|
209
|
+
sys.exit(0)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
def cmd_hook(_args: list):
|
|
213
|
+
"""Stop hook mode — outputs JSON reminder only if session files touch any tracks."""
|
|
214
|
+
project_root = find_project_root()
|
|
215
|
+
session_files = get_session_written_files(project_root)
|
|
216
|
+
if not session_files:
|
|
217
|
+
sys.exit(0)
|
|
218
|
+
|
|
219
|
+
memories_dir = get_memories_dir(project_root)
|
|
220
|
+
if not memories_dir.exists():
|
|
221
|
+
sys.exit(0)
|
|
222
|
+
|
|
223
|
+
stale_names = []
|
|
224
|
+
for md_file in sorted(memories_dir.glob("*.md")):
|
|
225
|
+
content = md_file.read_text(encoding="utf-8")
|
|
226
|
+
tracks = extract_tracks(content)
|
|
227
|
+
if not tracks:
|
|
228
|
+
continue
|
|
229
|
+
if match_files_to_tracks(session_files, tracks):
|
|
230
|
+
stale_names.append(md_file.stem)
|
|
231
|
+
|
|
232
|
+
if stale_names:
|
|
233
|
+
names = ", ".join(stale_names[:3])
|
|
234
|
+
suffix = f" (+{len(stale_names) - 3} more)" if len(stale_names) > 3 else ""
|
|
235
|
+
msg = (
|
|
236
|
+
f"[Docs Drift] {len(stale_names)} memor{'y' if len(stale_names) == 1 else 'ies'} "
|
|
237
|
+
f"may need updating: {names}{suffix}. Run /documenting to review."
|
|
238
|
+
)
|
|
239
|
+
print(json.dumps({
|
|
240
|
+
"hookSpecificOutput": {
|
|
241
|
+
"hookEventName": "Stop",
|
|
242
|
+
"additionalContext": msg,
|
|
243
|
+
}
|
|
244
|
+
}))
|
|
245
|
+
|
|
246
|
+
sys.exit(0)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
# ── Entry point ───────────────────────────────────────────────────────────────
|
|
250
|
+
|
|
251
|
+
SUBCOMMANDS = {"scan": cmd_scan, "check": cmd_check, "hook": cmd_hook}
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
def main():
|
|
255
|
+
args = sys.argv[1:]
|
|
256
|
+
if not args or args[0] not in SUBCOMMANDS:
|
|
257
|
+
print("Usage: drift_detector.py <scan|check|hook> [options]")
|
|
258
|
+
print(" scan [--since N] scan all memories (default N=30 commits)")
|
|
259
|
+
print(" check <memory> check a single memory")
|
|
260
|
+
print(" hook Stop hook mode (outputs JSON if stale)")
|
|
261
|
+
sys.exit(1)
|
|
262
|
+
SUBCOMMANDS[args[0]](args[1:])
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
if __name__ == "__main__":
|
|
266
|
+
main()
|