xtrm-tools 0.5.24 → 0.5.26
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/.claude-plugin/marketplace.json +19 -0
- package/.claude-plugin/plugin.json +9 -0
- package/README.md +9 -3
- package/cli/dist/index.cjs +182 -219
- package/cli/dist/index.cjs.map +1 -1
- package/cli/package.json +1 -1
- package/config/hooks.json +8 -0
- package/hooks/beads-claim-sync.mjs +2 -4
- package/hooks/beads-commit-gate.mjs +2 -2
- package/hooks/beads-edit-gate.mjs +3 -3
- package/hooks/beads-memory-gate.mjs +2 -2
- package/hooks/beads-stop-gate.mjs +2 -2
- package/hooks/xtrm-logger.mjs +84 -91
- package/hooks/xtrm-session-logger.mjs +27 -0
- package/hooks/xtrm-tool-logger.mjs +53 -0
- package/package.json +5 -1
- package/plugins/xtrm-tools/.claude-plugin/plugin.json +9 -0
- package/plugins/xtrm-tools/.mcp.json +18 -0
- package/plugins/xtrm-tools/hooks/README.md +61 -0
- package/plugins/xtrm-tools/hooks/beads-claim-sync.mjs +223 -0
- package/plugins/xtrm-tools/hooks/beads-commit-gate.mjs +70 -0
- package/plugins/xtrm-tools/hooks/beads-compact-restore.mjs +69 -0
- package/plugins/xtrm-tools/hooks/beads-compact-save.mjs +51 -0
- package/plugins/xtrm-tools/hooks/beads-edit-gate.mjs +85 -0
- package/plugins/xtrm-tools/hooks/beads-gate-core.mjs +236 -0
- package/plugins/xtrm-tools/hooks/beads-gate-messages.mjs +68 -0
- package/plugins/xtrm-tools/hooks/beads-gate-utils.mjs +194 -0
- package/plugins/xtrm-tools/hooks/beads-memory-gate.mjs +81 -0
- package/plugins/xtrm-tools/hooks/beads-stop-gate.mjs +53 -0
- package/plugins/xtrm-tools/hooks/gitnexus/gitnexus-hook.cjs +222 -0
- package/plugins/xtrm-tools/hooks/hooks.json +115 -0
- package/plugins/xtrm-tools/hooks/quality-check-env.mjs +79 -0
- package/plugins/xtrm-tools/hooks/quality-check.cjs +1286 -0
- package/plugins/xtrm-tools/hooks/quality-check.py +345 -0
- package/plugins/xtrm-tools/hooks/statusline.mjs +145 -0
- package/plugins/xtrm-tools/hooks/using-xtrm-reminder.mjs +35 -0
- package/plugins/xtrm-tools/hooks/worktree-boundary.mjs +33 -0
- package/plugins/xtrm-tools/hooks/xtrm-logger.mjs +123 -0
- package/plugins/xtrm-tools/hooks/xtrm-session-logger.mjs +27 -0
- package/plugins/xtrm-tools/hooks/xtrm-tool-logger.mjs +53 -0
- package/plugins/xtrm-tools/skills/README.txt +31 -0
- package/plugins/xtrm-tools/skills/clean-code/SKILL.md +201 -0
- package/plugins/xtrm-tools/skills/creating-service-skills/SKILL.md +433 -0
- package/plugins/xtrm-tools/skills/creating-service-skills/references/script_quality_standards.md +425 -0
- package/plugins/xtrm-tools/skills/creating-service-skills/references/service_skill_system_guide.md +278 -0
- package/plugins/xtrm-tools/skills/creating-service-skills/scripts/bootstrap.py +326 -0
- package/plugins/xtrm-tools/skills/creating-service-skills/scripts/deep_dive.py +304 -0
- package/plugins/xtrm-tools/skills/creating-service-skills/scripts/scaffolder.py +482 -0
- package/plugins/xtrm-tools/skills/delegating/SKILL.md +196 -0
- package/plugins/xtrm-tools/skills/delegating/config.yaml +210 -0
- package/plugins/xtrm-tools/skills/delegating/references/orchestration-protocols.md +41 -0
- package/plugins/xtrm-tools/skills/docker-expert/SKILL.md +409 -0
- package/plugins/xtrm-tools/skills/documenting/CHANGELOG.md +23 -0
- package/plugins/xtrm-tools/skills/documenting/README.md +148 -0
- package/plugins/xtrm-tools/skills/documenting/SKILL.md +113 -0
- package/plugins/xtrm-tools/skills/documenting/examples/example_pattern.md +70 -0
- package/plugins/xtrm-tools/skills/documenting/examples/example_reference.md +70 -0
- package/plugins/xtrm-tools/skills/documenting/examples/example_ssot_analytics.md +64 -0
- package/plugins/xtrm-tools/skills/documenting/examples/example_workflow.md +141 -0
- package/plugins/xtrm-tools/skills/documenting/references/changelog-format.md +97 -0
- package/plugins/xtrm-tools/skills/documenting/references/metadata-schema.md +136 -0
- package/plugins/xtrm-tools/skills/documenting/references/taxonomy.md +81 -0
- package/plugins/xtrm-tools/skills/documenting/references/versioning-rules.md +78 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/bump_version.sh +60 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/changelog/__init__.py +0 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/changelog/add_entry.py +216 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/changelog/bump_release.py +117 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/changelog/init_changelog.py +54 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/changelog/validate_changelog.py +128 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/drift_detector.py +266 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/generate_template.py +311 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/list_by_category.sh +84 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/orchestrator.py +255 -0
- package/plugins/xtrm-tools/skills/documenting/scripts/validate_metadata.py +242 -0
- package/plugins/xtrm-tools/skills/documenting/templates/CHANGELOG.md.template +13 -0
- package/plugins/xtrm-tools/skills/documenting/tests/integration_test.sh +70 -0
- package/plugins/xtrm-tools/skills/documenting/tests/test_changelog.py +201 -0
- package/plugins/xtrm-tools/skills/documenting/tests/test_drift_detector.py +80 -0
- package/plugins/xtrm-tools/skills/documenting/tests/test_orchestrator.py +52 -0
- package/plugins/xtrm-tools/skills/documenting/tests/test_validate_metadata.py +64 -0
- package/plugins/xtrm-tools/skills/find-skills/SKILL.md +133 -0
- package/plugins/xtrm-tools/skills/gitnexus-debugging/SKILL.md +85 -0
- package/plugins/xtrm-tools/skills/gitnexus-exploring/SKILL.md +75 -0
- package/plugins/xtrm-tools/skills/gitnexus-impact-analysis/SKILL.md +94 -0
- package/plugins/xtrm-tools/skills/gitnexus-refactoring/SKILL.md +113 -0
- package/plugins/xtrm-tools/skills/hook-development/SKILL.md +797 -0
- package/plugins/xtrm-tools/skills/hook-development/examples/load-context.sh +55 -0
- package/plugins/xtrm-tools/skills/hook-development/examples/quality-check.js +1168 -0
- package/plugins/xtrm-tools/skills/hook-development/examples/validate-bash.sh +43 -0
- package/plugins/xtrm-tools/skills/hook-development/examples/validate-write.sh +38 -0
- package/plugins/xtrm-tools/skills/hook-development/references/advanced.md +527 -0
- package/plugins/xtrm-tools/skills/hook-development/references/migration.md +369 -0
- package/plugins/xtrm-tools/skills/hook-development/references/patterns.md +412 -0
- package/plugins/xtrm-tools/skills/hook-development/scripts/README.md +164 -0
- package/plugins/xtrm-tools/skills/hook-development/scripts/hook-linter.sh +153 -0
- package/plugins/xtrm-tools/skills/hook-development/scripts/test-hook.sh +252 -0
- package/plugins/xtrm-tools/skills/hook-development/scripts/validate-hook-schema.sh +159 -0
- package/plugins/xtrm-tools/skills/obsidian-cli/SKILL.md +106 -0
- package/plugins/xtrm-tools/skills/orchestrating-agents/SKILL.md +135 -0
- package/plugins/xtrm-tools/skills/orchestrating-agents/config.yaml +45 -0
- package/plugins/xtrm-tools/skills/orchestrating-agents/references/agent-context-integration.md +37 -0
- package/plugins/xtrm-tools/skills/orchestrating-agents/references/examples.md +45 -0
- package/plugins/xtrm-tools/skills/orchestrating-agents/references/handover-protocol.md +31 -0
- package/plugins/xtrm-tools/skills/orchestrating-agents/references/workflows.md +42 -0
- package/plugins/xtrm-tools/skills/orchestrating-agents/scripts/detect_neighbors.py +23 -0
- package/plugins/xtrm-tools/skills/prompt-improving/README.md +162 -0
- package/plugins/xtrm-tools/skills/prompt-improving/SKILL.md +74 -0
- package/plugins/xtrm-tools/skills/prompt-improving/references/analysis_commands.md +24 -0
- package/plugins/xtrm-tools/skills/prompt-improving/references/chain_of_thought.md +24 -0
- package/plugins/xtrm-tools/skills/prompt-improving/references/mcp_definitions.md +20 -0
- package/plugins/xtrm-tools/skills/prompt-improving/references/multishot.md +23 -0
- package/plugins/xtrm-tools/skills/prompt-improving/references/xml_core.md +60 -0
- package/plugins/xtrm-tools/skills/python-testing/SKILL.md +815 -0
- package/plugins/xtrm-tools/skills/scoping-service-skills/SKILL.md +231 -0
- package/plugins/xtrm-tools/skills/scoping-service-skills/scripts/scope.py +74 -0
- package/plugins/xtrm-tools/skills/senior-backend/SKILL.md +209 -0
- package/plugins/xtrm-tools/skills/senior-backend/references/api_design_patterns.md +103 -0
- package/plugins/xtrm-tools/skills/senior-backend/references/backend_security_practices.md +103 -0
- package/plugins/xtrm-tools/skills/senior-backend/references/database_optimization_guide.md +103 -0
- package/plugins/xtrm-tools/skills/senior-backend/scripts/api_load_tester.py +114 -0
- package/plugins/xtrm-tools/skills/senior-backend/scripts/api_scaffolder.py +114 -0
- package/plugins/xtrm-tools/skills/senior-backend/scripts/database_migration_tool.py +114 -0
- package/plugins/xtrm-tools/skills/senior-data-scientist/SKILL.md +226 -0
- package/plugins/xtrm-tools/skills/senior-data-scientist/references/experiment_design_frameworks.md +80 -0
- package/plugins/xtrm-tools/skills/senior-data-scientist/references/feature_engineering_patterns.md +80 -0
- package/plugins/xtrm-tools/skills/senior-data-scientist/references/statistical_methods_advanced.md +80 -0
- package/plugins/xtrm-tools/skills/senior-data-scientist/scripts/experiment_designer.py +100 -0
- package/plugins/xtrm-tools/skills/senior-data-scientist/scripts/feature_engineering_pipeline.py +100 -0
- package/plugins/xtrm-tools/skills/senior-data-scientist/scripts/model_evaluation_suite.py +100 -0
- package/plugins/xtrm-tools/skills/senior-devops/SKILL.md +209 -0
- package/plugins/xtrm-tools/skills/senior-devops/references/cicd_pipeline_guide.md +103 -0
- package/plugins/xtrm-tools/skills/senior-devops/references/deployment_strategies.md +103 -0
- package/plugins/xtrm-tools/skills/senior-devops/references/infrastructure_as_code.md +103 -0
- package/plugins/xtrm-tools/skills/senior-devops/scripts/deployment_manager.py +114 -0
- package/plugins/xtrm-tools/skills/senior-devops/scripts/pipeline_generator.py +114 -0
- package/plugins/xtrm-tools/skills/senior-devops/scripts/terraform_scaffolder.py +114 -0
- package/plugins/xtrm-tools/skills/senior-security/SKILL.md +209 -0
- package/plugins/xtrm-tools/skills/senior-security/references/cryptography_implementation.md +103 -0
- package/plugins/xtrm-tools/skills/senior-security/references/penetration_testing_guide.md +103 -0
- package/plugins/xtrm-tools/skills/senior-security/references/security_architecture_patterns.md +103 -0
- package/plugins/xtrm-tools/skills/senior-security/scripts/pentest_automator.py +114 -0
- package/plugins/xtrm-tools/skills/senior-security/scripts/security_auditor.py +114 -0
- package/plugins/xtrm-tools/skills/senior-security/scripts/threat_modeler.py +114 -0
- package/plugins/xtrm-tools/skills/skill-creator/LICENSE.txt +202 -0
- package/plugins/xtrm-tools/skills/skill-creator/SKILL.md +479 -0
- package/plugins/xtrm-tools/skills/skill-creator/agents/analyzer.md +274 -0
- package/plugins/xtrm-tools/skills/skill-creator/agents/comparator.md +202 -0
- package/plugins/xtrm-tools/skills/skill-creator/agents/grader.md +223 -0
- package/plugins/xtrm-tools/skills/skill-creator/assets/eval_review.html +146 -0
- package/plugins/xtrm-tools/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/plugins/xtrm-tools/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/plugins/xtrm-tools/skills/skill-creator/references/schemas.md +430 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/__init__.py +0 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/generate_report.py +326 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/improve_description.py +248 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/package_skill.py +136 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/run_eval.py +310 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/run_loop.py +332 -0
- package/plugins/xtrm-tools/skills/skill-creator/scripts/utils.py +47 -0
- package/plugins/xtrm-tools/skills/sync-docs/SKILL.md +155 -0
- package/plugins/xtrm-tools/skills/sync-docs/evals/evals.json +89 -0
- package/plugins/xtrm-tools/skills/sync-docs/references/doc-structure.md +99 -0
- package/plugins/xtrm-tools/skills/sync-docs/references/schema.md +103 -0
- package/plugins/xtrm-tools/skills/sync-docs/scripts/changelog/add_entry.py +216 -0
- package/plugins/xtrm-tools/skills/sync-docs/scripts/context_gatherer.py +240 -0
- package/plugins/xtrm-tools/skills/sync-docs/scripts/doc_structure_analyzer.py +495 -0
- package/plugins/xtrm-tools/skills/sync-docs/scripts/drift_detector.py +563 -0
- package/plugins/xtrm-tools/skills/sync-docs/scripts/validate_doc.py +365 -0
- package/plugins/xtrm-tools/skills/sync-docs/scripts/validate_metadata.py +185 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/benchmark.json +293 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/benchmark.md +13 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/with_skill/outputs/result.md +210 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/with_skill/run-1/grading.json +28 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/with_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/outputs/result.md +101 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/run-1/grading.json +28 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-doc-audit/without_skill/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-fix-mode/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-fix-mode/with_skill/outputs/result.md +198 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-fix-mode/with_skill/run-1/grading.json +28 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-fix-mode/with_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-fix-mode/without_skill/outputs/result.md +94 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-fix-mode/without_skill/run-1/grading.json +28 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-fix-mode/without_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/with_skill/outputs/result.md +237 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/with_skill/run-1/grading.json +28 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/with_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/without_skill/outputs/result.md +134 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/without_skill/run-1/grading.json +28 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-1/eval-sprint-closeout/without_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/benchmark.json +297 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/benchmark.md +13 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-doc-audit/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-doc-audit/with_skill/outputs/result.md +137 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-doc-audit/with_skill/run-1/grading.json +92 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-doc-audit/with_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-doc-audit/without_skill/outputs/result.md +134 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-doc-audit/without_skill/run-1/grading.json +86 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-doc-audit/without_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-fix-mode/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-fix-mode/with_skill/outputs/result.md +193 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-fix-mode/with_skill/run-1/grading.json +72 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-fix-mode/with_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-fix-mode/without_skill/outputs/result.md +211 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-fix-mode/without_skill/run-1/grading.json +91 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-fix-mode/without_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/with_skill/outputs/result.md +182 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/with_skill/run-1/grading.json +95 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/with_skill/run-1/timing.json +1 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/without_skill/outputs/result.md +222 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/without_skill/run-1/grading.json +88 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-2/eval-sprint-closeout/without_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/benchmark.json +298 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/benchmark.md +13 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-doc-audit/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-doc-audit/with_skill/outputs/result.md +125 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-doc-audit/with_skill/run-1/grading.json +97 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-doc-audit/with_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-doc-audit/without_skill/outputs/result.md +144 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-doc-audit/without_skill/run-1/grading.json +78 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-doc-audit/without_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-fix-mode/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-fix-mode/with_skill/outputs/result.md +104 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-fix-mode/with_skill/run-1/grading.json +91 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-fix-mode/with_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-fix-mode/without_skill/outputs/result.md +79 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-fix-mode/without_skill/run-1/grading.json +82 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-fix-mode/without_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/eval_metadata.json +27 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase1_context.json +302 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase2_drift.txt +33 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase3_analysis.json +114 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase4_fix.txt +118 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/phase5_validate.txt +38 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/outputs/result.md +158 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/run-1/grading.json +95 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/with_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/without_skill/outputs/result.md +71 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/without_skill/run-1/grading.json +90 -0
- package/plugins/xtrm-tools/skills/sync-docs-workspace/iteration-3/eval-sprint-closeout/without_skill/run-1/timing.json +5 -0
- package/plugins/xtrm-tools/skills/test-planning/SKILL.md +208 -0
- package/plugins/xtrm-tools/skills/test-planning/evals/evals.json +23 -0
- package/plugins/xtrm-tools/skills/updating-service-skills/SKILL.md +136 -0
- package/plugins/xtrm-tools/skills/updating-service-skills/scripts/drift_detector.py +222 -0
- package/plugins/xtrm-tools/skills/using-TDD/SKILL.md +410 -0
- package/plugins/xtrm-tools/skills/using-quality-gates/SKILL.md +254 -0
- package/plugins/xtrm-tools/skills/using-serena-lsp/README.md +8 -0
- package/plugins/xtrm-tools/skills/using-serena-lsp/REFERENCE.md +194 -0
- package/plugins/xtrm-tools/skills/using-serena-lsp/SKILL.md +82 -0
- package/plugins/xtrm-tools/skills/using-service-skills/SKILL.md +108 -0
- package/plugins/xtrm-tools/skills/using-service-skills/scripts/cataloger.py +74 -0
- package/plugins/xtrm-tools/skills/using-service-skills/scripts/skill_activator.py +152 -0
- package/plugins/xtrm-tools/skills/using-service-skills/scripts/test_skill_activator.py +58 -0
- package/plugins/xtrm-tools/skills/using-xtrm/SKILL.md +124 -0
- package/plugins/xtrm-tools/skills/xt-end/SKILL.md +128 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Cataloger — SessionStart hook for using-service-skills.
|
|
4
|
+
|
|
5
|
+
Reads .claude/skills/service-registry.json and prints a lightweight XML
|
|
6
|
+
service catalog block (~150 tokens) to stdout. The SessionStart hook
|
|
7
|
+
injects this as additional context so Claude knows which expert personas
|
|
8
|
+
are available without loading full skill bodies (Progressive Disclosure).
|
|
9
|
+
|
|
10
|
+
Configured in .claude/settings.json:
|
|
11
|
+
"SessionStart": [{"hooks": [{"type": "command",
|
|
12
|
+
"command": "python3 \\"$CLAUDE_PROJECT_DIR/.claude/skills/using-service-skills/scripts/cataloger.py\\""}]}]
|
|
13
|
+
|
|
14
|
+
Output format:
|
|
15
|
+
<project_service_catalog>
|
|
16
|
+
Available expert personas:
|
|
17
|
+
- db-expert: SQL & schema expert (Path: .claude/skills/db-expert/SKILL.md)
|
|
18
|
+
</project_service_catalog>
|
|
19
|
+
<instruction>To activate an expert, read its SKILL.md from the provided path.</instruction>
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
import sys
|
|
23
|
+
from pathlib import Path
|
|
24
|
+
|
|
25
|
+
# Bootstrap lives in creating-service-skills — shared utility
|
|
26
|
+
BOOTSTRAP_DIR = Path(__file__).parent.parent.parent / "creating-service-skills" / "scripts"
|
|
27
|
+
sys.path.insert(0, str(BOOTSTRAP_DIR))
|
|
28
|
+
|
|
29
|
+
from bootstrap import RootResolutionError, list_services # noqa: E402
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def generate_catalog() -> str:
|
|
33
|
+
"""
|
|
34
|
+
Generate the service catalog XML block.
|
|
35
|
+
|
|
36
|
+
Returns empty string if no services are registered or project root
|
|
37
|
+
cannot be determined (fails gracefully — never breaks session start).
|
|
38
|
+
"""
|
|
39
|
+
try:
|
|
40
|
+
services = list_services()
|
|
41
|
+
except (RootResolutionError, Exception):
|
|
42
|
+
return ""
|
|
43
|
+
|
|
44
|
+
if not services:
|
|
45
|
+
return ""
|
|
46
|
+
|
|
47
|
+
lines = [
|
|
48
|
+
"<project_service_catalog>",
|
|
49
|
+
"Available expert personas:",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
for service_id, data in sorted(services.items()):
|
|
53
|
+
description = data.get("description", data.get("name", service_id))
|
|
54
|
+
skill_path = data.get("skill_path", f".claude/skills/{service_id}/SKILL.md")
|
|
55
|
+
lines.append(f"- {service_id}: {description} (Path: {skill_path})")
|
|
56
|
+
|
|
57
|
+
lines.append("</project_service_catalog>")
|
|
58
|
+
lines.append(
|
|
59
|
+
"<instruction>To activate an expert, read its SKILL.md from the provided path.</instruction>"
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
return "\n".join(lines)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def main() -> None:
|
|
66
|
+
"""Print catalog to stdout — injected as SessionStart additional context."""
|
|
67
|
+
catalog = generate_catalog()
|
|
68
|
+
if catalog:
|
|
69
|
+
print(catalog)
|
|
70
|
+
# Silent if no services registered — don't break session start
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
if __name__ == "__main__":
|
|
74
|
+
main()
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
PreToolUse hook: skill activator.
|
|
4
|
+
|
|
5
|
+
Fires before Read, Write, Edit, Glob, Grep, or Bash operations.
|
|
6
|
+
Checks whether the operation touches a registered service territory.
|
|
7
|
+
If it does, injects additionalContext telling Claude to load the skill
|
|
8
|
+
before proceeding — ensuring expert knowledge is always applied.
|
|
9
|
+
|
|
10
|
+
Configured in .claude/settings.json PreToolUse hook.
|
|
11
|
+
Must be fast: pure file I/O + string matching, no subprocess.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
import fnmatch
|
|
15
|
+
import json
|
|
16
|
+
import sys
|
|
17
|
+
from pathlib import Path
|
|
18
|
+
|
|
19
|
+
BOOTSTRAP_DIR = Path(__file__).parent.parent.parent / "creating-service-skills" / "scripts"
|
|
20
|
+
sys.path.insert(0, str(BOOTSTRAP_DIR))
|
|
21
|
+
|
|
22
|
+
from bootstrap import RootResolutionError, get_project_root, load_registry # noqa: E402 # type: ignore[import-not-found]
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def match_territory(file_path: str, territory: list[str], project_root: Path) -> bool:
|
|
26
|
+
"""Check if a file path matches any territory glob pattern."""
|
|
27
|
+
# Normalize to relative path
|
|
28
|
+
fp = Path(file_path)
|
|
29
|
+
if fp.is_absolute():
|
|
30
|
+
try:
|
|
31
|
+
fp = fp.relative_to(project_root)
|
|
32
|
+
except ValueError:
|
|
33
|
+
return False
|
|
34
|
+
rel = str(fp)
|
|
35
|
+
|
|
36
|
+
for pattern in territory:
|
|
37
|
+
# fnmatch handles * and ?, but not ** — handle ** manually
|
|
38
|
+
if "**" in pattern:
|
|
39
|
+
# Split on **/ and check prefix + suffix
|
|
40
|
+
parts = pattern.split("**/")
|
|
41
|
+
if len(parts) == 2:
|
|
42
|
+
prefix, suffix = parts
|
|
43
|
+
rel_check = rel[len(prefix) :] if rel.startswith(prefix) else rel
|
|
44
|
+
if fnmatch.fnmatch(rel_check, suffix) or fnmatch.fnmatch(
|
|
45
|
+
rel, f"{prefix}*/{suffix}"
|
|
46
|
+
):
|
|
47
|
+
return True
|
|
48
|
+
# Also check if file is anywhere under the prefix dir
|
|
49
|
+
if prefix and rel.startswith(prefix.rstrip("/")):
|
|
50
|
+
return True
|
|
51
|
+
else:
|
|
52
|
+
if fnmatch.fnmatch(rel, pattern):
|
|
53
|
+
return True
|
|
54
|
+
# Direct prefix match for broad patterns
|
|
55
|
+
base = pattern.split("/*")[0].split("/**")[0]
|
|
56
|
+
if base and (rel.startswith(base + "/") or rel == base):
|
|
57
|
+
return True
|
|
58
|
+
|
|
59
|
+
return False
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def find_service_for_file(
|
|
63
|
+
file_path: str, services: dict, project_root: Path
|
|
64
|
+
) -> tuple[str, dict] | None:
|
|
65
|
+
"""Return (service_id, service_data) if file is in any territory, else None."""
|
|
66
|
+
for service_id, data in services.items():
|
|
67
|
+
if match_territory(file_path, data.get("territory", []), project_root):
|
|
68
|
+
return service_id, data
|
|
69
|
+
return None
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def find_service_for_command(command: str, services: dict) -> tuple[str, dict] | None:
|
|
73
|
+
"""Return (service_id, service_data) if command mentions a service name."""
|
|
74
|
+
cmd_lower = command.lower()
|
|
75
|
+
for service_id, data in services.items():
|
|
76
|
+
# Match service_id directly or as a container name in docker commands
|
|
77
|
+
if service_id in cmd_lower:
|
|
78
|
+
return service_id, data
|
|
79
|
+
# Match the container name pattern (service name with dashes/underscores)
|
|
80
|
+
if data.get("name") and data.get("name", "").lower().replace(" ", "-") in cmd_lower:
|
|
81
|
+
return service_id, data
|
|
82
|
+
return None
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
def build_context(service_id: str, data: dict) -> str:
|
|
86
|
+
skill_path = data.get("skill_path", f".claude/skills/{service_id}/SKILL.md")
|
|
87
|
+
desc = data.get("description", "")
|
|
88
|
+
desc_line = f"\n What it covers: {desc}" if desc else ""
|
|
89
|
+
|
|
90
|
+
return (
|
|
91
|
+
f"[Service Skill] You are about to work with the '{service_id}' service territory."
|
|
92
|
+
f"{desc_line}\n"
|
|
93
|
+
f" Load the expert skill before proceeding: Read {skill_path}\n"
|
|
94
|
+
f" The skill contains: operational knowledge, failure modes, diagnostic scripts, "
|
|
95
|
+
f"and the correct methods for managing this service.\n"
|
|
96
|
+
f" Do not use ad-hoc approaches (raw SQL, improvised docker commands) "
|
|
97
|
+
f"when the skill defines the correct method."
|
|
98
|
+
)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
def main() -> None:
|
|
102
|
+
try:
|
|
103
|
+
data = json.load(sys.stdin)
|
|
104
|
+
except (json.JSONDecodeError, EOFError):
|
|
105
|
+
sys.exit(0)
|
|
106
|
+
|
|
107
|
+
tool_name = data.get("tool_name", "")
|
|
108
|
+
tool_input = data.get("tool_input", {})
|
|
109
|
+
|
|
110
|
+
try:
|
|
111
|
+
project_root = Path(get_project_root())
|
|
112
|
+
services = load_registry().get("services", {})
|
|
113
|
+
except (RootResolutionError, Exception):
|
|
114
|
+
sys.exit(0)
|
|
115
|
+
|
|
116
|
+
if not services:
|
|
117
|
+
sys.exit(0)
|
|
118
|
+
|
|
119
|
+
match = None
|
|
120
|
+
|
|
121
|
+
# File-based tools: check file_path against territory
|
|
122
|
+
if tool_name in ("Read", "Write", "Edit", "Glob", "Grep", "NotebookRead", "NotebookEdit"):
|
|
123
|
+
file_path = (
|
|
124
|
+
tool_input.get("file_path")
|
|
125
|
+
or tool_input.get("path")
|
|
126
|
+
or tool_input.get("notebook_path")
|
|
127
|
+
or ""
|
|
128
|
+
)
|
|
129
|
+
if file_path:
|
|
130
|
+
match = find_service_for_file(file_path, services, project_root)
|
|
131
|
+
|
|
132
|
+
# Bash: check command string for service names
|
|
133
|
+
elif tool_name == "Bash":
|
|
134
|
+
command = tool_input.get("command", "")
|
|
135
|
+
if command:
|
|
136
|
+
match = find_service_for_command(command, services)
|
|
137
|
+
|
|
138
|
+
if match:
|
|
139
|
+
service_id, service_data = match
|
|
140
|
+
output = {
|
|
141
|
+
"hookSpecificOutput": {
|
|
142
|
+
"hookEventName": "PreToolUse",
|
|
143
|
+
"additionalContext": build_context(service_id, service_data),
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
print(json.dumps(output))
|
|
147
|
+
|
|
148
|
+
sys.exit(0)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
if __name__ == "__main__":
|
|
152
|
+
main()
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"""Tests for skill_activator.py — load_registry integration."""
|
|
2
|
+
import io
|
|
3
|
+
import json
|
|
4
|
+
import sys
|
|
5
|
+
import unittest
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
from unittest.mock import patch
|
|
8
|
+
|
|
9
|
+
scripts_dir = Path(__file__).parent
|
|
10
|
+
sys.path.insert(0, str(scripts_dir))
|
|
11
|
+
sys.path.insert(0, str(scripts_dir.parent.parent / "creating-service-skills" / "scripts"))
|
|
12
|
+
|
|
13
|
+
import skill_activator
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
REGISTRY_WITH_VERSION = {
|
|
17
|
+
"version": "1.0",
|
|
18
|
+
"services": {
|
|
19
|
+
"my-service": {
|
|
20
|
+
"territory": ["src/my-service/**"],
|
|
21
|
+
"name": "My Service",
|
|
22
|
+
"skill_path": ".claude/skills/my-service/SKILL.md",
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
HOOK_INPUT = json.dumps({
|
|
28
|
+
"tool_name": "Write",
|
|
29
|
+
"tool_input": {"file_path": "src/my-service/foo.py"},
|
|
30
|
+
"hook_event_name": "PreToolUse",
|
|
31
|
+
"session_id": "test",
|
|
32
|
+
"cwd": "/fake/project",
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class TestMainWithVersionedRegistry(unittest.TestCase):
|
|
37
|
+
def test_main_does_not_crash_when_registry_has_version_key(self):
|
|
38
|
+
"""main() must not crash with AttributeError when load_registry returns
|
|
39
|
+
{"version": ..., "services": {...}} — the full registry dict.
|
|
40
|
+
It should output valid JSON context for the matched service.
|
|
41
|
+
"""
|
|
42
|
+
with patch("skill_activator.load_registry", return_value=REGISTRY_WITH_VERSION), \
|
|
43
|
+
patch("skill_activator.get_project_root", return_value="/fake/project"), \
|
|
44
|
+
patch("sys.stdin", io.StringIO(HOOK_INPUT)), \
|
|
45
|
+
patch("sys.stdout", new_callable=io.StringIO) as mock_stdout:
|
|
46
|
+
try:
|
|
47
|
+
skill_activator.main()
|
|
48
|
+
except SystemExit:
|
|
49
|
+
pass
|
|
50
|
+
output = mock_stdout.getvalue()
|
|
51
|
+
|
|
52
|
+
self.assertTrue(output, "Expected JSON output but got nothing")
|
|
53
|
+
result = json.loads(output)
|
|
54
|
+
self.assertIn("hookSpecificOutput", result)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
if __name__ == "__main__":
|
|
58
|
+
unittest.main()
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: using-xtrm
|
|
3
|
+
description: >
|
|
4
|
+
Behavioral operating manual for an xtrm-equipped Claude Code session.
|
|
5
|
+
Covers when to use which tool, how to handle questions and triggers,
|
|
6
|
+
workflow examples, and skill routing. Reference material (hook list,
|
|
7
|
+
gate rules, full bd commands, git workflow) lives in CLAUDE.md.
|
|
8
|
+
Injected automatically at session start via additionalSystemPrompt.
|
|
9
|
+
priority: high
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# XTRM — When to Use What
|
|
13
|
+
|
|
14
|
+
> Gates, commands, and git workflow are in CLAUDE.md.
|
|
15
|
+
> This is the behavioral layer: triggers, patterns, examples.
|
|
16
|
+
|
|
17
|
+
## Session Start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
bd prime # load workflow context + active claims
|
|
21
|
+
bd memories <today's topic> # retrieve relevant past context
|
|
22
|
+
bd ready # find available work
|
|
23
|
+
bd update <id> --claim # claim before any edit
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Trigger Patterns
|
|
29
|
+
|
|
30
|
+
| Situation | Action |
|
|
31
|
+
|-----------|--------|
|
|
32
|
+
| User prompt contains `?` | `bd memories <keywords>` before answering — check stored context first |
|
|
33
|
+
| "What was I working on?" | `bd list --status=in_progress` |
|
|
34
|
+
| Unfamiliar area of code | `gitnexus_query({query: "concept"})` before opening any file |
|
|
35
|
+
| About to edit a symbol | `gitnexus_impact({target: "name", direction: "upstream"})` |
|
|
36
|
+
| Before `git commit` | `gitnexus_detect_changes({scope: "staged"})` to verify scope |
|
|
37
|
+
| Reading code | `get_symbols_overview` → `find_symbol` — never read whole files |
|
|
38
|
+
| Task is tests | use /test-planning
|
|
39
|
+
| Task is docs updates | use /sync-docs
|
|
40
|
+
| Session end (issue closed) | Memory gate fires — evaluate `bd remember` for each closed issue |
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Handling `?` Prompts
|
|
45
|
+
|
|
46
|
+
When the user's message contains a question, check stored context before answering:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
bd memories <keywords from question> # search project memory
|
|
50
|
+
bd recall <key> # retrieve specific memory if key is known
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Example — user asks *"why does the quality gate run twice?"*:
|
|
54
|
+
```bash
|
|
55
|
+
bd memories "quality gate"
|
|
56
|
+
# → "quality-check.cjs and quality-check.py are separate hooks —
|
|
57
|
+
# JS/TS and Python each get their own PostToolUse pass"
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
If it's a code question, also run:
|
|
61
|
+
```bash
|
|
62
|
+
gitnexus_query({query: "<topic>"}) # find relevant execution flows
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Workflow Examples
|
|
68
|
+
|
|
69
|
+
**Fixing a bug:**
|
|
70
|
+
```bash
|
|
71
|
+
bd ready # find the issue
|
|
72
|
+
bd update bd-xyz --claim # claim it
|
|
73
|
+
gitnexus_impact({target: "parseComposeServices", direction: "upstream"})
|
|
74
|
+
# → 2 callers, LOW risk — safe to edit
|
|
75
|
+
get_symbols_overview("hooks/init.ts") # map file
|
|
76
|
+
find_symbol("parseComposeServices", include_body=True) # read just this
|
|
77
|
+
replace_symbol_body("parseComposeServices", newBody) # Serena edit
|
|
78
|
+
bd close bd-xyz --reason="Fix YAML parse edge case" # close + auto-commit
|
|
79
|
+
xt end # push, PR, merge, cleanup
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Exploring unfamiliar code:**
|
|
83
|
+
```bash
|
|
84
|
+
gitnexus_query({query: "session claim enforcement"})
|
|
85
|
+
# → beads-gate-core.mjs, resolveClaimAndWorkState, decideCommitGate
|
|
86
|
+
gitnexus_context({name: "resolveClaimAndWorkState"}) # callers + callees
|
|
87
|
+
get_symbols_overview("hooks/beads-gate-core.mjs") # map the file
|
|
88
|
+
find_symbol("resolveClaimAndWorkState", include_body=True) # read only this
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
**Persisting an insight:**
|
|
92
|
+
```bash
|
|
93
|
+
bd remember "quality-check runs twice: separate .cjs (JS) and .py (Python) hooks"
|
|
94
|
+
# retrievable next session:
|
|
95
|
+
bd memories "quality check"
|
|
96
|
+
bd recall "quality-check-runs-twice-..."
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## Prompt Shaping (silent, before every non-trivial task)
|
|
102
|
+
|
|
103
|
+
| Task type | Apply |
|
|
104
|
+
|-----------|-------|
|
|
105
|
+
| `analyze / investigate / why` | `<thinking>` block + structured `<outputs>` |
|
|
106
|
+
| `implement / build / fix` | 1-2 `<example>` blocks + `<constraints>` |
|
|
107
|
+
| `refactor / simplify` | `<constraints>` (preserve behavior, tests pass) + `<current_state>` |
|
|
108
|
+
|
|
109
|
+
Vague prompt (under 8 words, no specifics)? Ask one clarifying question before proceeding.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## Skill Routing
|
|
114
|
+
|
|
115
|
+
| Need | Use |
|
|
116
|
+
|------|-----|
|
|
117
|
+
| Code read / edit | Serena — `get_symbols_overview` → `find_symbol` → `replace_symbol_body` |
|
|
118
|
+
| Blast radius before edit | `gitnexus-impact-analysis` |
|
|
119
|
+
| Navigate unfamiliar code | `gitnexus-exploring` |
|
|
120
|
+
| Trace a bug | `gitnexus-debugging` |
|
|
121
|
+
| Safe rename / refactor | `gitnexus-refactoring` |
|
|
122
|
+
| Docs maintenance | `sync-docs` |
|
|
123
|
+
| Docker service project | `using-service-skills` |
|
|
124
|
+
| Build / improve a skill | `skill-creator` |
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: xt-end
|
|
3
|
+
description: |
|
|
4
|
+
Autonomous session close flow for xt worktree sessions. Use this skill whenever
|
|
5
|
+
the user says "done", "finished", "wrap up", "close session", "ship it", "I'm done",
|
|
6
|
+
"ready to merge", or similar. Also activate when all beads issues in the session
|
|
7
|
+
are closed, or when the user explicitly runs /xt-end. This skill guides the agent
|
|
8
|
+
through pre-flight checks, commit cleanup, PR creation via 'xt end', conflict
|
|
9
|
+
resolution, and worktree cleanup — handling every edge case so the agent doesn't
|
|
10
|
+
need to figure it out from scratch.
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# xt-end — Session Close Flow
|
|
14
|
+
|
|
15
|
+
You are closing an `xt` worktree session. The canonical CLI is `xt end`, but it has preconditions you need to satisfy first. Work through these stages in order.
|
|
16
|
+
|
|
17
|
+
## Stage 1 — Pre-flight: close all open work
|
|
18
|
+
|
|
19
|
+
Run:
|
|
20
|
+
```bash
|
|
21
|
+
bd list --status=in_progress
|
|
22
|
+
bd list --status=open
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
If any issues are still open or in_progress, **do not proceed**. Guide the user to finish them first:
|
|
26
|
+
- For in-progress work: complete it, then `bd close <id> --reason "what was done"`
|
|
27
|
+
- For open issues that won't be done in this session: ask the user — close as deferred, or leave for next session?
|
|
28
|
+
|
|
29
|
+
Only continue when `bd list --status=in_progress` returns empty (or the user explicitly says to skip unfinished issues).
|
|
30
|
+
|
|
31
|
+
## Stage 2 — Uncommitted changes
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
git status
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
If the working tree is dirty:
|
|
38
|
+
- If the changes belong to a beads issue you just closed: `git add -A && git commit -m "<close_reason> (<id>)"` (or a descriptive summary)
|
|
39
|
+
- If the changes are unrelated WIP: consider stashing with `git stash` and noting what was stashed
|
|
40
|
+
- Never run `xt end` with a dirty working tree — it will abort with an error
|
|
41
|
+
|
|
42
|
+
## Stage 3 — Dry run (preview the PR)
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
xt end --dry-run
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
This shows the PR title, body, files changed, and issues that will be linked. Review with the user:
|
|
49
|
+
- Does the PR title accurately reflect the work?
|
|
50
|
+
- Are all the right issues captured?
|
|
51
|
+
- Is the scope correct?
|
|
52
|
+
|
|
53
|
+
If something looks wrong, adjust (e.g., add a missing commit message or close a forgotten issue) and re-run the dry run.
|
|
54
|
+
|
|
55
|
+
## Stage 4 — Run xt end
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
xt end
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### If it succeeds
|
|
62
|
+
You'll see:
|
|
63
|
+
- ✓ Rebased onto origin/main
|
|
64
|
+
- ✓ Pushed branch
|
|
65
|
+
- ✓ PR created: <url>
|
|
66
|
+
- ✓ Linked PR to N issue(s)
|
|
67
|
+
|
|
68
|
+
Capture the PR URL for Stage 6.
|
|
69
|
+
|
|
70
|
+
### If rebase conflicts occur
|
|
71
|
+
|
|
72
|
+
`xt end` will abort cleanly with a list of conflicted files. Guide the agent through:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
git status # see conflicted files
|
|
76
|
+
# Edit each conflicted file to resolve <<<< ==== >>>> markers
|
|
77
|
+
git add <resolved-files>
|
|
78
|
+
git rebase --continue
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Then re-run `xt end`. If the conflicts are complex, explain what each file conflict is about before resolving.
|
|
82
|
+
|
|
83
|
+
### If the push fails
|
|
84
|
+
|
|
85
|
+
Usually a stale remote ref. Try:
|
|
86
|
+
```bash
|
|
87
|
+
git fetch origin main
|
|
88
|
+
xt end
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## Stage 5 — Worktree cleanup
|
|
92
|
+
|
|
93
|
+
After a clean PR creation, ask the user:
|
|
94
|
+
|
|
95
|
+
> "PR is open at <url>. Should I remove this worktree? (Recommended: yes, since the branch is pushed and the PR is open. Keep only if you plan to do follow-up work here.)"
|
|
96
|
+
|
|
97
|
+
Default recommendation: **remove** (the branch is safe on remote, the worktree is just disk space).
|
|
98
|
+
|
|
99
|
+
If removing:
|
|
100
|
+
```bash
|
|
101
|
+
xt end --keep # was already run; use git worktree remove directly
|
|
102
|
+
git worktree remove <path> --force
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Or if `xt end` was run interactively, it already prompted for this — just confirm.
|
|
106
|
+
|
|
107
|
+
## Stage 6 — Report
|
|
108
|
+
|
|
109
|
+
Tell the user:
|
|
110
|
+
- PR URL
|
|
111
|
+
- Which issues were linked
|
|
112
|
+
- Reminder: "Monitor CI — merge when green. No auto-merge."
|
|
113
|
+
|
|
114
|
+
If the worktree was removed: confirm that too.
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## Edge cases
|
|
119
|
+
|
|
120
|
+
**Already on main branch**: `xt end` will error — you're not in an xt session. Don't run it from main.
|
|
121
|
+
|
|
122
|
+
**No commits yet on branch**: The PR will have no changes. This usually means something went wrong earlier. Verify with `git log origin/main..HEAD`.
|
|
123
|
+
|
|
124
|
+
**`gh` CLI not authenticated**: `gh pr create` will fail. Fix: `gh auth login`, then re-run `xt end`.
|
|
125
|
+
|
|
126
|
+
**Multiple conflicts**: Resolve all files before `git rebase --continue`. If `git status` shows unmerged paths, keep resolving.
|
|
127
|
+
|
|
128
|
+
**beads not available**: `xt end` gracefully skips beads linkage if `bd` isn't running. The PR still gets created. Let the user know.
|