AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Refactor Safely

skill-arasz-ai-badger-refactor-safely · by Arasz

>-

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-arasz-ai-badger-refactor-safely

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-arasz-ai-badger-refactor-safely)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
17d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Refactor Safely? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Refactor safely

Always preview before applying. The discipline: enumerate every affected location before changing one, confirm no critical path runs through the target unexamined, then verify with tests after — never trust that a rename or removal was complete just because it compiled.

The workflow derives from the skill templates the code-review-graph project auto-installs (MIT, © 2026 Tirth Kanani), rewritten here to be tool-agnostic: every step carries a baseline that needs no graph server.

Steps

  1. Enumerate every affected location before changing one.

Accelerated: a code-graph refactor tool in rename-preview mode (e.g. refactor_tool with mode="rename"; discover the real tool name from the server's own listing) returns the full edit list before anything is applied. Baseline: the IDE's rename-refactoring (atomic, reference-aware) where available; otherwise grep -rn every reference and read each hit to rule out false positives (shadowed names, string literals, comments).

  1. Check blast radius and whether a critical path runs through the target.

Accelerated: impact-radius / affected-flows calls (e.g. get_impact_radius-shaped, get_affected_flows-shaped). Baseline: grep callers and walk outward toward entry points, same as the tracing step in debug-issue. Flag any hit in auth, payment, data-write, or public API surface.

  1. **For a removal, confirm zero reachable callers before deleting** — not zero grep hits.

Accelerated: a dead-code detection mode (e.g. refactor_tool with mode="dead_code"). Baseline: grep the whole tree including test files and dynamic-dispatch registration (DI container, route table, reflection lookup, config-driven plugin list) — a zero-hit grep is not proof if the language or framework allows dynamic dispatch.

  1. Apply using the safest available mechanism, always using the edit list from step 1 rather

than re-deriving it. Accelerated: apply the previewed refactor by its id (e.g. apply_refactor_tool with the refactor_id from step 1). Baseline: the IDE's apply-refactor action, or scripted find-replace only after step 1's list is complete and has been read in full.

  1. Bracket the apply with test runs — once before, so a pre-existing failure cannot be

mistaken for one you caused, and once after, before calling the refactor done. Use the configured test command (.ai-badger/config.json's commands.test, or the project's documented equivalent). Accelerated: a post-refactor change-detection call (e.g. detect_changes-shaped) to confirm no impact beyond what step 1 previewed. Baseline: run the test command directly and read the result — a green exit code from a command you didn't actually invoke does not count.

Gotchas

No environment-specific gotchas known.

Red flags — STOP

  • Applying an edit before step 1 produced a complete list
  • "It compiles" treated as proof a rename or removal was complete
  • A zero-hit grep treated as proof of dead code, with no check for dynamic dispatch
  • An apply with no test run on either side of it

A refactor whose apply is not bracketed by test runs is not a safe refactor, regardless of how confident the preview looked. Without the run before, a failure after is unattributable.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.