request-refactor-plan

request-refactor-plan is a skill for Claude Code, Codex from mhrsdev/AI-Agent-Skills-Library. It costs 53 tokens per session (555 once invoked), scanned A, a copy of request-refactor-plan, MIT.

A guided process for planning a refactor, meaning a change to improve code structure without changing its intended behaviour. It breaks the work into small commits and records the plan as a GitHub issue.

In plain words
What is it for?
Use it to investigate a refactoring request, compare approaches, check test coverage, interview the requester, and create a detailed GitHub issue.
Why use it?
It turns a broad or risky cleanup into reviewed, incremental steps with agreed scope and testing expectations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to investigate a refactoring request, compare approaches, check test coverage, interview the requester, and create a detailed GitHub issue.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mhrsdev/ai-agent-skills-library/request-refactor-plan
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mhrsdev/AI-Agent-Skills-Library --skill request-refactor-plan
Clone the repo
git clone --depth 1 https://github.com/mhrsdev/AI-Agent-Skills-Library

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for request-refactor-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/mhrsdev/ai-agent-skills-library/request-refactor-plan.svg)](https://agentmods.dev/skills/mhrsdev/ai-agent-skills-library/request-refactor-plan)
Your own site
<a href="https://agentmods.dev/skills/mhrsdev/ai-agent-skills-library/request-refactor-plan"><img src="https://agentmods.dev/badge/skills/mhrsdev/ai-agent-skills-library/request-refactor-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 555 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.00555
Opus 5 $0.00026 $0.00278
Sonnet 5 $0.00011 $0.00111
Haiku 4.5 $0.00005 $0.00056

Measured 7d ago against content hash d59de4ba6cc1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

request-refactor-plan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to request-refactor-plan — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

organized-skills/code-quality-testing/mattpocock-skills/skills/deprecated/request-refactor-plan/SKILL.md · 69 lines

How it starts

The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.

This skill will be invoked when the user wants to create a refactor request. You should go through the steps below. You may skip steps if you don't consider them necessary.

  1. Ask the user for a long, detailed description of the problem they want to solve and any potential ideas for solutions.

  2. Explore the repo to verify their assertions and understand the current state of the codebase.

  3. Ask whether they have considered other options, and present other options to them.

  4. Interview the user about the implementation. Be extremely detailed and thorough.

  5. Hammer out the exact scope of the implementation. Work out what you plan to change and what you plan not to change.

  6. Look in the codebase to check for test coverage of this area of the codebase. If there is insufficient test coverage, ask the user what their plans for testing are.

  7. Break the implementation into a plan of tiny commits. Remember Martin Fowler's advice to "make each refactoring step as small as possible, so that you can always see the program working."

  8. Create a GitHub issue with the refactor plan. Use the following template for the issue description:

Problem Statement

The problem that the developer is facing, from the developer's perspective.

Solution

The solution to the problem, from the developer's perspective.

Commits

A LONG, detailed implementation plan. Write the plan in plain English, breaking down the implementation into the tiniest commits possible. Each commit should leave the codebase in a working state.

Decision Document

A list of implementation decisions that were made. This can include:

  • The modules that will be built/modified
  • The interfaces of those modules that will be modified
  • Technical clarifications from the developer
  • Architectural decisions
  • Schema changes
  • API contracts
  • Specific interactions

Do NOT include specific file paths or code snippets. They may end up being outdated very quickly.

Testing Decisions

Read the full file on GitHub · 69 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 69 lines · 53 tokens per session scan A d59de4ba6cc1

Subscribe to this mod's changes

request-refactor-plan is a skill published in the GitHub repository mhrsdev/AI-Agent-Skills-Library (6 stars, last pushed 2mo ago), licensed MIT. It adds 53 tokens to every session and 555 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to request-refactor-plan, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

skill-security-hooks

Install and maintain defensive security hooks and CI gates for authorized SaaS projects. Use when asked to add pre-commit hooks, pre-push hooks, CI security scans, GitHub Actions hardening, secret scanning, dependency scanning, SAST, DAST gates, or security automation around existing repositories.

IAPro-Community/Orquestrador-Maestro · 64 tokens

skill-release-engineering

Prepara releases seguros com changelog, migrações, smoke tests, rollback, feature flags, CI e checklist operacional.

IAPro-Community/Orquestrador-Maestro · 30 tokens

finalize-phase

Completes feature/epic workflows after deployment with comprehensive walkthrough generation for epics (v5.0+), roadmap updates, artifact archival, documentation, and branch cleanup. Use after /ship-prod, /deploy-prod, or /build-local completes, or when user asks to finalize. (project).

marcusgoll/Spec-Flow · 65 tokens

git-workflow-enforcer

Enforce git commits after every phase and task to enable rollback and prevent lost work. Auto-trigger when completing phases, tasks, or when detecting uncommitted changes. Auto-commit with Conventional Commits format. Verify branch safety, check for merge conflicts, enforce clean working tree. Block completion if…

marcusgoll/Spec-Flow · 69 tokens

production-deployment-phase

Executes production deployment workflow by promoting validated staging builds to production with semantic versioning, health checks, and release tagging. Use when running /ship-prod command, deploying to production after staging validation, or promoting staging builds to production environment.

marcusgoll/Spec-Flow · 52 tokens

x-announcement

Post release announcements to X (Twitter) with automated GitHub link reply. Auto-trigger after /release command completion or manual invocation. Generates engaging posts from CHANGELOG, posts via API, and replies with GitHub release link in threaded format.

marcusgoll/Spec-Flow · 48 tokens