From codixing
Code review with full context using Codixing. Analyzes the current diff, identifies impacted files, finds affected callers, and checks test coverage. Use when reviewing changes, before committing, or when the user asks for a code review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codixing:codixing-reviewThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Perform a thorough code review of the current changes using the Codixing CLI.
Perform a thorough code review of the current changes using the Codixing CLI.
If the user provided a commit range, use it directly. Otherwise, get the working tree diff:
git diff
git diff --cached
If the diff is empty, check for staged changes or recent commits:
git log --oneline -5
For each changed file, find what calls into it:
codixing callers path/to/changed_file
This uses the dependency graph + call graph to rank files most likely to need changes or be affected by the diff.
Present the impact analysis as a ranked list with explanations.
For changed symbols, find all usage sites:
codixing usages changed_symbol
This assembles:
For each changed file, search for existing tests:
codixing search "test_function"
Flag any changed code that lacks test coverage.
For the most important changed symbols (functions, methods), find all call sites:
codixing usages symbol_name
Check if any callers might be affected by the change.
Before writing the review verdict, check for any accuracy or performance claims in the diff (commit messages, comments, docs):
python3 benchmarks/queue_v2_benchmark.py)This catches misleading commit messages and PR descriptions before they reach main.
Structure the review as:
Changes Summary: What was changed and why (inferred from diff)
Impact Analysis: Files and modules affected by these changes
Risk Assessment:
Test Coverage: Which tests cover the changes, which gaps exist
Suggestions: Specific, actionable improvements
Verdict: Overall assessment — safe to merge, needs tests, needs refactoring, etc.
npx claudepluginhub ferax564/codixing --plugin codixingAssesses blast radius of code changes and reviews diffs by analyzing what touches what, what could break, which tests to run, and prior decisions. Use before refactors, renames, signature changes, or pull requests.
Reviews only code changes since last commit using graph-based impact analysis and blast radius detection. Provides token-efficient context for focused reviews of bugs, style, tests, and affected files/functions.
Reviews git changes with evidence-backed findings and risk-aware verdicts. Supports commit, range, file-scoped analysis, impact assessment, breaking-change detection.