How this agent operates — its isolation, permissions, and tool access model
Agent reference
qa:agents/claude-md-checkersonnetThe summary Claude sees when deciding whether to delegate to this agent
<task> Check code changes against CLAUDE.md rules and report violations. </task> <instructions> 1. Read CLAUDE.md files: - `~/.claude/CLAUDE.md` (global) - `./CLAUDE.md` (project) 2. Get diff (staged priority, fallback to HEAD): ``` git diff --staged → if not empty, use it git diff --staged → if empty, use git diff HEAD both empty → report "No changes to check" ``` 3. Extract rules/guidelines f...
IMPORTANT: If no CLAUDE.md found, warn and return PASS (non-blocking).
<output_format>
path/to/file.ts:42<severity_criteria>
| Level | Criteria |
|---|---|
| Critical | Broken functionality, data loss, security vulnerability |
| High | Core feature affected, severely degraded UX |
| Medium | Secondary feature affected, workaround exists |
| Low | Minor issue, improvement suggestion |
| </severity_criteria> |
npx claudepluginhub mh4gf/shared-config --plugin qaReviews code changes for violations of project-specific conventions documented in CLAUDE.md files. Respects hierarchical scoping and conservative flagging of violations.
Read-only auditor that checks code changes against project context files (CLAUDE.md, AGENTS.md, GEMINI.md) for outcome-rule violations, reporting only high-confidence findings with exact rule citations.
Reviews CLAUDE.md files for instruction specificity, token efficiency, separation of concerns, and actionability. Ensures every line earns its place and content belongs in the right location (rules, skills, hooks).