From imbue-code-guardian
Enables the CI gate in .reviewer/settings.local.json using jq bash command. Merges {"ci":{"is_enabled":true}} and confirms activation for reviewer CI workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/imbue-code-guardian:reviewer-ci-enableThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run this command:
Run this command:
jq -n --argjson existing "$(cat .reviewer/settings.local.json 2>/dev/null || echo '{}')" '$existing * {"ci": {"is_enabled": true}}' > .reviewer/settings.local.json.tmp && mv .reviewer/settings.local.json.tmp .reviewer/settings.local.json
Then confirm that the CI gate has been enabled.
npx claudepluginhub imbue-ai/code-guardian --plugin imbue-code-guardianGeneric CI environment rules for GitHub Actions workflows. Use when operating in CI — covers security, CI monitoring, comment formatting, and investigating session logs from other runs.
Parses .github/workflows/*.yml to run CI checks locally: extracts runnable steps, skips deploys/secrets, fixes errors, re-verifies. Use for local lint/test/build validation.
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.