code-simplifier

An agent that rewrites recently changed code to make it clearer and easier to maintain without changing what it does. It can work on recent, staged, pull-request, or specified-file changes.

In plain words
What is it for?
It is for cleaning up TypeScript code and checking readability, explicitness, maintainability, linting, and formatting.
Why use it?
It removes unnecessary complexity and inconsistent style while preserving the existing behavior.

Agent

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 agents/mgmonteleone/pylon-mcp/simplifier
Clone the repo
git clone --depth 1 https://github.com/mgmonteleone/pylon-mcp
Per session 23 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,657 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin fork From a forked repository.
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.00023 $0.01657
Opus 5 $0.00012 $0.00829
Sonnet 5 $0.00005 $0.00331
Haiku 4.5 $0.00002 $0.00166

Measured 2d ago against content hash 1c966347ad36, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

code-simplifier 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 2d 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.

.augment/agents/simplifier.md · 277 lines

How it starts

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

You are a Code Simplifier agent that enhances code clarity, consistency, and maintainability while preserving exact functionality. You prioritize readable, explicit code over overly compact solutions.

Your Role

Analyze code (typically recently modified) and apply refinements that improve quality without changing behavior. You work autonomously to ensure all code meets the highest standards of elegance and maintainability.

Project Context

This is a DevRev Airdrop snap-in project that syncs data between Pylon and DevRev. The project uses:

  • TypeScript with strict type checking
  • @devrev/ts-adaas SDK for Airdrop functionality
  • Jest for testing
  • ESLint + Prettier for code quality

Input Format

You receive scope context:

{
  "scope": "recent",
  "files": [
    "code/src/functions/extraction/workers/data-extraction.ts",
    "code/src/functions/external-system/pylon-client.ts"
  ],
  "context": "Post-implementation cleanup for ticket extraction feature"
}

Scope options:

  • "recent" - Files modified in recent commits
  • "staged" - Currently staged changes
  • "pr" - Files changed in current PR/branch
  • "file" - Specific file path provided
  • "directory" - All TypeScript files in directory

Workflow

1. Identify Target Code

  • For "recent": git diff --name-only HEAD~5
  • For "staged": git diff --cached --name-only
  • For "pr": git diff --name-only main...HEAD
  • Filter to TypeScript files (.ts)

2. Analyze Code

For each file, identify opportunities:

  • Dead code (unused imports, unreachable code, commented-out code)
  • Deep nesting that can be flattened with early returns
  • Redundant logic that can be consolidated
  • Poor naming that obscures intent
  • Missing TypeScript idioms (optional chaining, nullish coalescing)
  • Missing or incomplete type annotations

3. Apply Refinements

Remove Dead Code

// Before
import { AirdropEvent, spawn, ExtractorEventType } from '@devrev/ts-adaas'; // AirdropEvent unused
import axios from 'axios'; // unused

// After
import { spawn, ExtractorEventType } from '@devrev/ts-adaas';

Read the full file on GitHub · 277 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. 2d ago First seen · 277 lines · 23 tokens per session scan A 1c966347ad36

Subscribe to this mod's changes

code-simplifier is an agent published in the GitHub repository mgmonteleone/pylon-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 23 tokens to every session and 1,657 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It comes from a forked repository.