forge-quench

forge-quench is a skill for Claude Code, Codex from srnichols/plan-forge. It costs 51 tokens per session (1,832 once invoked), scanned A, original, MIT.

A guided method for simplifying complex .NET and C# code while preserving its exact behavior. It measures methods using factors such as length, nesting, branches, and parameter count, then checks the result.

In plain words
What is it for?
Use it after a feature is complete and tests pass to identify the most complex methods, propose simplifications, and report the evidence for the changes.
Why use it?
It helps make working code easier to understand and maintain without changing what the code does.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/srnichols/plan-forge/forge-quench
Any agent
npx skills add srnichols/plan-forge --skill forge-quench
Clone the repo
git clone --depth 1 https://github.com/srnichols/plan-forge

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 forge-quench

README.md
[![agentmods](https://agentmods.dev/badge/skills/srnichols/plan-forge/forge-quench.svg)](https://agentmods.dev/skills/srnichols/plan-forge/forge-quench)
Your own site
<a href="https://agentmods.dev/skills/srnichols/plan-forge/forge-quench"><img src="https://agentmods.dev/badge/skills/srnichols/plan-forge/forge-quench.svg" alt="Measured on agentmods" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,832 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00051 $0.01832
Opus 5 $0.00026 $0.00916
Sonnet 5 $0.00010 $0.00366
Haiku 4.5 $0.00005 $0.00183

Measured yesterday against content hash d209d014d49d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

forge-quench 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 yesterday.

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.

presets/dotnet/.github/skills/forge-quench/SKILL.md · 172 lines

How it starts

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

Forge Quench — Code Simplification Skill

Named after the metallurgical quenching process — rapidly cooling hot metal simplifies its crystal structure and hardens it.

Trigger

"Simplify this code" / "Reduce complexity" / "Clean up before review" / "Quench this module" / "Code is too complex"

Steps

1. Measure Complexity

Identify the most complex methods in the target files. Use .NET-appropriate static analysis:

# Install dotnet-counters for runtime diagnostics (optional)
dotnet tool install -g dotnet-counters

# Count methods exceeding 50 lines
grep -rn "public\|private\|protected\|internal" <target> --include="*.cs" | head -30

# Check cyclomatic complexity via JetBrains dotnet-inspect if available
# dotnet-inspect <target> --severity=WARNING

# Manual analysis: identify deep nesting, long switch statements, excessive branching
grep -rn "if\|else\|switch\|case\|catch" <target> --include="*.cs" | wc -l

List the top 3–5 most complex methods by:

  • Line count (methods >50 lines)
  • Nesting depth (>3 levels of indentation)
  • Branch count (>5 if/else/switch branches)
  • Parameter count (>4 parameters)

If no methods exceed thresholds: Report "No simplification candidates found" and STOP with a PASS.

2. Understand First (Chesterton's Fence)

Before simplifying ANY code, document WHY the complexity exists.

For each candidate function:

  1. Read the git blame to find when and why it was written
  2. Check if comments explain the reasoning
  3. Look for edge cases the complexity handles (null checks, retry logic, fallback paths)
  4. Document your understanding in a brief note
| Function | Lines | Why Complex | Still Valid? | Action |
|----------|-------|-------------|-------------|--------|
| processOrder() | 87 | Handles 3 payment providers + retry | Yes — 3 providers still active | Simplify: extract per-provider strategies |
| validateInput() | 62 | Legacy regex for 5 country formats | Partially — 2 formats deprecated | Simplify: remove deprecated formats |
| buildReport() | 45 | Single function, low nesting | N/A — not complex enough | Skip |

Read the full file on GitHub · 172 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. yesterday First seen · 172 lines · 51 tokens per session scan A d209d014d49d

Subscribe to this mod's changes

forge-quench is a skill published in the GitHub repository srnichols/plan-forge (5 stars, last pushed yesterday), licensed MIT. It adds 51 tokens to every session and 1,832 once invoked, about $0.0003 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-09-03.