Use before modifying, refactoring, or deleting files in a codebase that has Repowise indexed (indicated by a .repowise/ directory). Activates when Claude is about to edit code, especially shared utilities, core modules, or files the user didn't explicitly mention. Helps assess impact and avoid breaking things.
67
80%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./plugins/claude-code/skills/pre-modification/SKILL.mdBefore modifying files in a Repowise-indexed codebase, assess the impact.
Call get_risk(targets=["path/to/file.py"]). Per file it returns
hotspot_score, trend, risk_type, impact_surface (top 3),
dependents_count, co_change_partners, primary_owner, bus_factor,
test_gap, and security_signals. Read it for:
defect_profile) — present only on files with counted
fixes: fix_count over the trailing 6 months, last_fix_days_ago, a
bug_magnet flag for sustained recent fix pressure, and top_symbols (the
per-symbol counts are approximate — read them as "mostly here"). A file that
keeps getting fixed is the strongest single signal that the next edit breaks
something; lead with it.hotspot_score, trend) — high-churn × complex? Extra care needed.dependents_count, impact_surface) — how wide is the blast radius?Batch all targets into one call: get_risk(targets=["file1.py", "file2.py", "module/"]).
If get_risk shows:
defect_profile with bug_magnet set — say so plainly: this file has been fixed repeatedly and recentlyCall get_context(targets=["file.py"]) first to understand the full context: what uses this file, what decisions govern it, and why it's structured this way. This prevents accidentally violating architectural decisions.
For a heavy refactor, also call get_health(targets=["file.py"]) — the
marker findings (complexity, deep nesting, low cohesion, duplication) tell
you what to improve while you're in there, and give you a before/after score.
If get_risk returns a tool error, the MCP server may not be running. Proceed with the modification but note that risk assessment was unavailable.
363a476
Also appears in
since Aug 13, 2026
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.