From imbue-code-guardian
Disables all reviewer gates (autofix, CI, conversation review, architecture verification) in .reviewer/settings.local.json using Bash and jq. Use to bypass checks for faster iteration.
npx claudepluginhub imbue-ai/code-guardian --plugin imbue-code-guardianThis skill is limited to using the following tools:
Run this command:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Run this command:
jq -n --argjson existing "$(cat .reviewer/settings.local.json 2>/dev/null || echo '{}')" '$existing * {"autofix": {"is_enabled": false}, "ci": {"is_enabled": false}, "verify_conversation": {"is_enabled": false}, "verify_architecture": {"is_enabled": false}}' > .reviewer/settings.local.json.tmp && mv .reviewer/settings.local.json.tmp .reviewer/settings.local.json
Then confirm that all review gates have been disabled.