From imbue-code-guardian
Disables conversation review gate in .reviewer/settings.local.json by setting verify_conversation.is_enabled to false via jq bash command, then confirms update. For bypassing reviewer verification.
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 * {"verify_conversation": {"is_enabled": false}}' > .reviewer/settings.local.json.tmp && mv .reviewer/settings.local.json.tmp .reviewer/settings.local.json
Then confirm that the conversation review gate has been disabled.