From claude-commands
Guides fixing broken automation (CI, gates, hooks) by ensuring fixes are deployed and verified post-commit, and restarts gateway after config changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:fix-completion-deployThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When fixing broken automation (skeptic gate, CI workflows, lifecycle workers, hooks):
When fixing broken automation (skeptic gate, CI workflows, lifecycle workers, hooks):
git push, report the exact pushed HEAD SHA and the remote commit URL, preferably https://github.com/<owner>/<repo>/commit/<sha>.Config changes also require deployment — a config file write with no process restart is a silent no-op:
config.yaml, restart the gateway immediately (see ~/.hermes/CLAUDE.md post-mutation section for the exact sequence)curl /health (liveness ≠ config loaded)~/.hermes/config.yaml (staging) and ~/.hermes_prod/config.yaml (prod) must be updated; they don't sync automaticallyWhy: 2026-06-02 — M3 model switch wrote config files correctly but skipped gateway restart. Process ran with M2.7 in memory for 4 days. Skeptic bug precedent: fix was in commits but not deployed for hours.
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsOrchestrates environment-aware git commits, pushes, CI/CD triggers, and deployment verifications with pre-flight checks and production safety gates.
Generates reusable GitHub Actions workflow_call for automated CI failure detection and fixing with Claude Code. Use for multi-repo setups or caller workflows with custom inputs.
Sets up CI/CD pipelines with automated quality gates including lint, type check, tests, build, security audit, and bundle size checks. Use when configuring GitHub Actions or deployment strategies.