From imbue
Audits code changes for additive bias, Iron Law compliance, and minimal intervention, producing a justification report with risk assessment. Supports --scope and file paths.
How this command is triggered — by the user, by Claude, or both
Slash command
/imbue:justifyThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Justify Changes Post-implementation audit that forces honest accounting of every change. Detects AI additive bias, test-logic tampering, and unnecessary complexity. ## Usage ## What It Does 1. Loads the justify methodology: `Skill(imbue:justify)` 2. Gathers the change delta (git diff from base branch) 3. Computes an additive bias score 4. Checks Iron Law compliance (test logic tampering) 5. Runs minimal intervention analysis per file 6. Generates a justification report with risk assessment ## When to Use - After completing implementation, before committing - Before creating a P...
Post-implementation audit that forces honest accounting of every change. Detects AI additive bias, test-logic tampering, and unnecessary complexity.
# Justify all changes on the current branch
/justify
# Justify only staged changes
/justify --scope staged
# Justify specific files
/justify src/auth.py tests/test_auth.py
Skill(imbue:justify)| Argument | Description |
|---|---|
--scope staged | Only audit staged changes |
--scope branch | Audit all branch changes (default) |
--scope file | Audit specific files listed after |
path... | Specific file paths to audit |
npx claudepluginhub athola/claude-night-market --plugin imbue/extreme-code-quality-reviewAudits current branch changes with an extreme maintainability rubric (code judo, 1k-line rule, spaghetti detection). Outputs prioritized findings based on diff and full file contents.
/ng-code-reviewReviews a code change for slipping quality standards and structural issues, producing a ranked list of findings and a verdict. Favors deletion over rearrangement.
/elegant-code-reviewReviews the working diff against the elegant-code decision ladder: assigns each added hunk to a justification rung, flags skipped rungs, proposes deletions, and checks for missing edge cases or performance traps.
/guardChecks current code changes against the latest approved implementation contract and reports scope drift, pending files, missing acceptance tests, and the smallest safe next step.
/reviewReviews the current branch objectively, checking for code smell, unintended changes via git diff, and missing documentation. Surfaces issues with severity levels.
/reviewReviews current code changes (unstaged/staged git diffs or specified files) with confidence-based scoring on criteria like shell POSIX compatibility and conventional commits, reporting only high-confidence issues with fixes.