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,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,245 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: using-xtrm
|
|
3
|
+
description: >
|
|
4
|
+
Operating manual for an xtrm-equipped Claude Code session. Activates automatically at
|
|
5
|
+
session start to orient the agent on how to work within the xtrm stack: when to apply
|
|
6
|
+
prompt improvement, how the beads issue-tracking gate works, which hooks enforce workflows,
|
|
7
|
+
and how to compose the full toolset (gitnexus, Serena, quality gates, delegation).
|
|
8
|
+
Use this skill whenever a new session begins in an xtrm-tools-installed environment, or
|
|
9
|
+
when the user asks how to work with the xtrm stack, what tools are available, or how any
|
|
10
|
+
xtrm workflow operates.
|
|
11
|
+
priority: high
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# Using xtrm — Session Operating Manual
|
|
15
|
+
|
|
16
|
+
You are in an **xtrm-equipped Claude Code environment**. This skill orients you on *how to work*
|
|
17
|
+
within this stack. Read it at session start and refer back when uncertain about a workflow.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Stack at a Glance
|
|
22
|
+
|
|
23
|
+
| Layer | What it provides |
|
|
24
|
+
|---|---|
|
|
25
|
+
| **Skills** | Domain expertise loaded on demand |
|
|
26
|
+
| **Hooks** | Automated lifecycle enforcement (gates, suggestions, reminders) |
|
|
27
|
+
| **Project Data (`xtrm init`)** | Per-repo bootstrap data (`.beads/`, `service-registry.json`, GitNexus index) |
|
|
28
|
+
| **MCP Servers** | Semantic tools: Serena (code), gitnexus (graph), context7 (docs), deepwiki |
|
|
29
|
+
| **CLI** | `xtrm install / status / finish / reset / help` — sync and closure tooling |
|
|
30
|
+
| **beads (bd)** | Git-backed issue tracker with session gate enforcement |
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Core Principle: Prompt First, Then Work
|
|
35
|
+
|
|
36
|
+
Before executing any non-trivial task, improve the prompt mentally using XML structure.
|
|
37
|
+
Apply this silently — the user sees your improved execution, not the meta-work.
|
|
38
|
+
|
|
39
|
+
### Prompt Classification
|
|
40
|
+
|
|
41
|
+
Scan the user's message for task type:
|
|
42
|
+
|
|
43
|
+
| Type | Keywords | Enhancement |
|
|
44
|
+
|---|---|---|
|
|
45
|
+
| **ANALYSIS** | analyze, investigate, research, explain, why | Add `<thinking>` block, structure `<outputs>` |
|
|
46
|
+
| **DEV** | implement, create, build, add, fix, feature | Add 1-2 `<example>` blocks, define `<constraints>` |
|
|
47
|
+
| **REFACTOR** | refactor, improve, optimize, clean, simplify | Add `<constraints>` (preserve behavior, tests pass) + `<current_state>` |
|
|
48
|
+
|
|
49
|
+
### XML Prompt Structure
|
|
50
|
+
|
|
51
|
+
```xml
|
|
52
|
+
<task_name>
|
|
53
|
+
<description>What needs to be done and why</description>
|
|
54
|
+
<parameters>Relevant context: files, symbols, constraints</parameters>
|
|
55
|
+
<instructions>
|
|
56
|
+
Step-by-step approach
|
|
57
|
+
</instructions>
|
|
58
|
+
<!-- ANALYSIS tasks: -->
|
|
59
|
+
<thinking>Work through hypotheses before concluding</thinking>
|
|
60
|
+
<outputs>Expected result format</outputs>
|
|
61
|
+
<!-- DEV tasks: -->
|
|
62
|
+
<example>Concrete pattern to follow</example>
|
|
63
|
+
<!-- REFACTOR tasks: -->
|
|
64
|
+
<constraints>Must not break X, tests must pass, preserve API surface</constraints>
|
|
65
|
+
</task_name>
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
When a prompt is vague (under 8 words, no specifics), ask one clarifying question before
|
|
69
|
+
proceeding. Don't ask about things you can reasonably infer.
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Beads + Session Flow — Session Protocol
|
|
74
|
+
|
|
75
|
+
This environment enforces a **beads session gate** plus **session-flow lifecycle gate**.
|
|
76
|
+
You cannot edit files without a claim, and you cannot safely end a closure-in-progress session.
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
# 1. Claim before editing
|
|
80
|
+
bd list --status=open
|
|
81
|
+
bd update <id> --claim
|
|
82
|
+
# hook auto-sets session claim + auto-creates worktree + writes .xtrm-session-state.json
|
|
83
|
+
|
|
84
|
+
# 2. Work in the claimed branch/worktree
|
|
85
|
+
|
|
86
|
+
# 3. Close issue when implementation is done
|
|
87
|
+
bd close <id>
|
|
88
|
+
|
|
89
|
+
# 4. Session close protocol (single command)
|
|
90
|
+
xtrm finish
|
|
91
|
+
# blocking: commit/push/pr-create/auto-merge poll/worktree cleanup
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
**Key rules:**
|
|
95
|
+
- One active claim per session
|
|
96
|
+
- Always work on a **feature branch**, never directly on `main`/`master`
|
|
97
|
+
- `main-guard.mjs` blocks edits on protected branches
|
|
98
|
+
- `beads-stop-gate.mjs` blocks stop for closure phases: `waiting-merge`, `conflicting`, `pending-cleanup`
|
|
99
|
+
- If blocked on stop: resolve state then re-run `xtrm finish`
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## Code Editing — Serena LSP Workflow
|
|
104
|
+
|
|
105
|
+
Always use semantic tools. Never read entire large files or use generic Edit unless forced.
|
|
106
|
+
|
|
107
|
+
```
|
|
108
|
+
get_symbols_overview(file) → map the file structure first
|
|
109
|
+
find_symbol(name, include_body=true) → read only what you need
|
|
110
|
+
find_referencing_symbols(name) → check callers before changing signatures
|
|
111
|
+
replace_symbol_body(name, body) → atomic symbol-level edit
|
|
112
|
+
insert_after_symbol / insert_before_symbol → add new code precisely
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
**Activate project first** (required once per session):
|
|
116
|
+
```
|
|
117
|
+
mcp__serena__activate_project("<project-name>")
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
**Fallback**: Use `Edit` only for non-code files or when a symbol can't be located.
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
## Code Intelligence — gitnexus Workflow
|
|
125
|
+
|
|
126
|
+
Before editing any function, class, or method — always run impact analysis.
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# 1. Before editing
|
|
130
|
+
npx gitnexus impact <symbolName> --direction upstream
|
|
131
|
+
|
|
132
|
+
# 2. Understand a symbol fully
|
|
133
|
+
gitnexus_context({name: "symbolName"})
|
|
134
|
+
|
|
135
|
+
# 3. Find code by concept (instead of grepping)
|
|
136
|
+
gitnexus_query({query: "concept"})
|
|
137
|
+
|
|
138
|
+
# 4. Before committing — verify scope
|
|
139
|
+
gitnexus_detect_changes({scope: "staged"})
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
**Risk levels**: d=1 = WILL BREAK (must fix), d=2 = likely affected (should test), d=3 = transitive (test if critical).
|
|
143
|
+
|
|
144
|
+
If index is stale: `npx gitnexus analyze` before using MCP tools.
|
|
145
|
+
|
|
146
|
+
> **Note**: gitnexus MCP server and CLI share an exclusive DB lock — they cannot run concurrently.
|
|
147
|
+
> Use CLI (`npx gitnexus ...`) when MCP is active, or stop MCP first.
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## Quality Gates — Automatic on Every Edit
|
|
152
|
+
|
|
153
|
+
After each file edit, quality-gates hooks run automatically:
|
|
154
|
+
- **TypeScript**: ESLint + tsc type check
|
|
155
|
+
- **Python**: Ruff lint + mypy type check
|
|
156
|
+
|
|
157
|
+
You do not invoke these manually — they fire via PostToolUse hooks. If a gate fails, fix the
|
|
158
|
+
lint/type error before continuing. Do not suppress errors with `// eslint-disable` or `# type: ignore`
|
|
159
|
+
unless there is a genuine reason.
|
|
160
|
+
|
|
161
|
+
> **Global-first behavior**: quality-gates hooks are global; no per-project install is needed.
|
|
162
|
+
> Run `xtrm init` once per repository to bootstrap project data, then ensure the repo has
|
|
163
|
+
> `eslint.config.*` (TS) or `pyproject.toml` / `ruff.toml` (Python) configured so checks can run.
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## Skill Routing — When to Use What
|
|
168
|
+
|
|
169
|
+
| Situation | Use |
|
|
170
|
+
|---|---|
|
|
171
|
+
| Short/vague user prompt | Apply XML structure silently (this skill) or `/prompt-improving` |
|
|
172
|
+
| Simple task (tests, docs, typo fix) | `/delegating` → cost-optimized agent |
|
|
173
|
+
| Complex task needing second opinion | `/orchestrate adversarial "task"` |
|
|
174
|
+
| Reading/editing code | `using-serena-lsp` (Serena MCP) |
|
|
175
|
+
| Understanding code architecture | `gitnexus-exploring` |
|
|
176
|
+
| Tracing a bug | `gitnexus-debugging` |
|
|
177
|
+
| Changing a function | `gitnexus-impact-analysis` first, then Serena edit |
|
|
178
|
+
| Safe rename/refactor | `gitnexus-refactoring` |
|
|
179
|
+
| Docker service project | `using-service-skills` → activate expert persona |
|
|
180
|
+
| Writing new feature | Write tests alongside, quality gates auto-run after |
|
|
181
|
+
| Maintaining docs | `/documenting` (Serena SSOT drift detection) |
|
|
182
|
+
| Building/improving a skill | `skill-creator` |
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## Available Skills (Full Catalog)
|
|
187
|
+
|
|
188
|
+
**Workflow:**
|
|
189
|
+
`prompt-improving`, `delegating`, `orchestrating-agents`, `using-serena-lsp`, `documenting`,
|
|
190
|
+
`using-xtrm` (this skill), `skill-creator`, `find-skills`
|
|
191
|
+
|
|
192
|
+
**Code Intelligence:**
|
|
193
|
+
`gitnexus-exploring`, `gitnexus-debugging`, `gitnexus-impact-analysis`, `gitnexus-refactoring`
|
|
194
|
+
|
|
195
|
+
**Domain Experts:**
|
|
196
|
+
`senior-backend`, `senior-devops`, `senior-security`, `senior-data-scientist`,
|
|
197
|
+
`docker-expert`, `python-testing`, `clean-code`
|
|
198
|
+
|
|
199
|
+
**Integrations:**
|
|
200
|
+
`obsidian-cli`, `hook-development`, `claude-api`
|
|
201
|
+
|
|
202
|
+
**Global-first note:**
|
|
203
|
+
`quality-gates` and `service-skills` workflows are globally available after `xtrm install all`.
|
|
204
|
+
Use `xtrm init` to provision per-project data (beads + service-registry + GitNexus index).
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## Hook Enforcement Summary
|
|
209
|
+
|
|
210
|
+
These hooks run automatically — you cannot disable them mid-session:
|
|
211
|
+
|
|
212
|
+
| Hook | Trigger | Effect |
|
|
213
|
+
|---|---|---|
|
|
214
|
+
| `main-guard.mjs` | PreToolUse (Edit/Write/Serena/Bash) | Blocks edits and unsafe Bash on protected branches |
|
|
215
|
+
| `beads-edit-gate.mjs` | PreToolUse (Edit/Write/Serena) | Blocks edits without active claim |
|
|
216
|
+
| `beads-commit-gate.mjs` | PreToolUse (Bash: git commit) | Blocks commit with unclosed claim |
|
|
217
|
+
| `beads-claim-sync.mjs` | PostToolUse (Bash claim command) | Syncs claim + creates worktree + writes session state |
|
|
218
|
+
| `beads-stop-gate.mjs` | Stop | Blocks stop for unresolved session-flow phases |
|
|
219
|
+
| `beads-memory-gate.mjs` | Stop | Prompts for persistent insights after closure |
|
|
220
|
+
| `beads-compact-save/restore.mjs` | PreCompact / SessionStart | Preserves claim + session state across compact |
|
|
221
|
+
| `serena-workflow-reminder.py` | SessionStart | Reminds semantic editing workflow |
|
|
222
|
+
| `quality-check.(cjs|py)` | PostToolUse (Edit/Write) | Runs lint + type checks automatically |
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
## MCP Servers
|
|
227
|
+
|
|
228
|
+
| Server | Use for | Setup |
|
|
229
|
+
|---|---|---|
|
|
230
|
+
| `serena` | Semantic code reading/editing | Auto-detected; activate project per session |
|
|
231
|
+
| `gitnexus` | Knowledge graph, impact analysis | `npm install -g gitnexus` + `npx gitnexus analyze` per project |
|
|
232
|
+
| `context7` | Library documentation lookup | No setup needed (free stdio transport) |
|
|
233
|
+
| `deepwiki` | Technical docs for GitHub repos | No setup needed |
|
|
234
|
+
| `github-grep` | Code search across GitHub | No setup needed |
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
## Checklist Before Finishing Any Task
|
|
239
|
+
|
|
240
|
+
1. `gitnexus_detect_changes(...)` — confirms only expected files/flows changed
|
|
241
|
+
2. All d=1 dependents updated (if any signal from impact analysis)
|
|
242
|
+
3. Tests pass (targeted + relevant integration)
|
|
243
|
+
4. Beads issue closed: `bd close <id>`
|
|
244
|
+
5. Run `xtrm finish` for blocking closure lifecycle
|
|
245
|
+
6. Verify session state reached `cleanup-done` (or intentional re-entry state)
|
|
@@ -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.
|