safe-change

safe-change is a skill for Claude Code from rpraharaj/forward-deployed-engineer. It costs 146 tokens per session (2,438 once invoked), scanned A, original, MIT.

A careful way to implement a specified change in an unfamiliar or high-risk codebase. It focuses on small edits that fit the existing code and are easier to review or undo.

In plain words
What is it for?
Use it for legacy code, lightly tested systems, or changes involving money, personal data, authentication, or audit records.
Why use it?
It reduces accidental breakage when you do not yet know which parts of a system are fragile.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the fde-core plugin — 30 skills shipped together

Good fit Use it for legacy code, lightly tested systems, or changes involving money, personal data, authentication, or audit records.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rpraharaj/forward-deployed-engineer/safe-change
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 rpraharaj/forward-deployed-engineer --skill safe-change
Clone the repo
git clone --depth 1 https://github.com/rpraharaj/forward-deployed-engineer

Made for: Claude Code.

Or install fde-core, the plugin that ships this one along with the rest of its 30 skills.

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 safe-change

README.md
[![agentmods](https://agentmods.dev/badge/skills/rpraharaj/forward-deployed-engineer/safe-change.svg)](https://agentmods.dev/skills/rpraharaj/forward-deployed-engineer/safe-change)
Your own site
<a href="https://agentmods.dev/skills/rpraharaj/forward-deployed-engineer/safe-change"><img src="https://agentmods.dev/badge/skills/rpraharaj/forward-deployed-engineer/safe-change.svg" alt="Measured on agentmods" height="20"></a>
Per session 146 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,438 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 original No closer match found 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.00146 $0.02438
Opus 5 $0.00073 $0.01219
Sonnet 5 $0.00029 $0.00488
Haiku 4.5 $0.00015 $0.00244

Measured 8d ago against content hash 4b1fe762dbcc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

safe-change 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 8d 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.

fde-core/skills/safe-change/SKILL.md · 202 lines

How it starts

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

Safe change

Implementation discipline for code you don't own.

Why this exists

An FDE writes code under two constraints an in-house engineer doesn't have: no intuition for what's fragile, and no credibility yet to spend on a mistake. Both push the same direction — smaller, more legible, more reversible changes than you'd otherwise make.

There's a second, less obvious constraint. Your diff is being read by people deciding whether you're safe to let near their system. A change that works but sprawls across unrelated files, reformats things, and introduces a library nobody asked for gets merged reluctantly and remembered. A tight, idiomatic diff that reads like the person who wrote the surrounding code buys latitude for the next one.

When this applies

  • Any change in a system you didn't build
  • Legacy code, code with thin coverage, or anything touching money, personal data, auth, or audit
  • A change reviewed by a team that doesn't know you
  • Anywhere being wrong is expensive to undo

When it doesn't

  • Your own scratch code or a throwaway spike
  • A genuine emergency mitigation — do the minimum, then come back and do this properly
  • Large-scale extraction or restructuring — that's refactor-seams

Prerequisites

  • .fde/04-feasibility.md — you should know where the change lands before opening a file
  • .fde/06-blast-radius-*.md — for anything beyond a local change
  • If the change site has no test coverage, run characterization-tests first. Changing untested legacy code and verifying by inspection is the single highest-risk thing in this portfolio.

Procedure

1. Establish a green baseline

Before touching anything, know the state you're starting from:

git status && git rev-parse --short HEAD
<build command>       # from .fde/01-environment.md
<test command>

Record what passes and what already fails. Pre-existing failures are common in enterprise repositories, and discovering them after your change means an hour spent proving you didn't cause them.

Read the full file on GitHub · 202 lines

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. 8d ago First seen · 202 lines · 146 tokens per session scan A 4b1fe762dbcc

Subscribe to this mod's changes

safe-change is a skill published in the GitHub repository rpraharaj/forward-deployed-engineer (6 stars, last pushed 21d ago), licensed MIT. It adds 146 tokens to every session and 2,438 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

printing-press-output-review

Internal sub-skill: agentic review of a printed CLI's sampled command output for plausibility issues that rule-based checks can't encode (substring-match relevance, format bugs, silent source drops, ranking failures). Invoked via the Skill tool by the main printing-press skill at Phase 4.85 and printing-press-polish…

mvanhorn/cli-printing-press · 102 tokens

systemic-issue-triage

Trigger: new issue, bug report, triage, backlog, issue flood, community report, root cause, dead-end, blocked user. Attack issues by root class, never one-by-one; fixes must shrink the system, not grow it.

Gentleman-Programming/gentle-ai · 57 tokens

issue-root-resolution

Trigger: root audit, atacar la raíz, issue roots, backlog roots, mechanism map, deletion-driven fix, resolver issues de raíz, close outdated issues. Audit and resolve issue clusters by verified root cause.

Gentleman-Programming/gentle-ai · 45 tokens

rdd-defect-workflow

Trigger: RDD, receipt-driven development, review authority, receipt/lineage, correction/recovery, delivery gate/kill switch, bounded review defects. Guide work.

Gentleman-Programming/gentle-ai · 41 tokens

review-loop

Run the adversarial verification loop — implement, then hand the change to a fresh checker that did not write it, fix what it finds, and re-dispatch until APPROVE. Use before claiming any behavioural change is done, and on requests like "review loop", "adversarial review", "independent review", "get this verified"…

sangrokjung/claude-forge · 100 tokens

semgrep-rule-creator

Creates custom Semgrep rules for detecting security vulnerabilities, bug patterns, and code patterns. Use when writing Semgrep rules or building custom static analysis detections.

waybarrios/opencode-power-pack · 37 tokens