simplify

A code-review skill that examines changed files for reuse, quality, efficiency, unnecessary complexity, duplication, dead code, and over-engineering, then fixes issues it finds.

In plain words
What is it for?
Use it with a file path, file pattern, or no argument to review specified files or current uncommitted changes.
Why use it?
It helps clean up recent changes and remove avoidable maintenance problems before they become part of the codebase.

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/sjarmak/agent-workflows/simplify
Any agent
npx skills add sjarmak/agent-workflows --skill simplify
Clone the repo
git clone --depth 1 https://github.com/sjarmak/agent-workflows

Made for: Claude Code, Codex.

Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 580 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.00000 $0.00580
Opus 5 $0.00000 $0.00290
Sonnet 5 $0.00000 $0.00116
Haiku 4.5 $0.00000 $0.00058

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

Security

Grade A, and why

simplify 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.

skills/simplify/SKILL.md · 60 lines

How it starts

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

Review changed code for reuse, quality, and efficiency, then fix any issues found.

Arguments

$ARGUMENTS — format: [file path | glob pattern | blank]

  • If a file path or glob is provided, scope the review to those files.
  • If no argument is provided, review all uncommitted changes via git diff.

Parse Arguments

Extract:

  • scope: a file path, glob pattern, or empty (defaults to uncommitted changes)

Phase 1: Identify Changes

  1. If scope is empty, run git diff --name-only to list changed files. If there are no uncommitted changes, check git diff --name-only HEAD~1 for the last commit.
  2. If scope is a path or pattern, resolve matching files.
  3. For each file, run git diff (or git diff HEAD~1 if already committed) to get the actual changes.
  4. Present the scope to the user: file count, total lines changed, and a one-line summary per file.

Phase 2: Analyze

For each changed file, look for:

  • Unnecessary complexity — can this be simpler without losing clarity?
  • Duplicated code — shared logic that should be extracted
  • Dead code — unused imports, unreachable branches, commented-out code
  • Over-engineering — abstractions that aren't needed yet
  • Missing error handling — at system boundaries only (user input, external APIs)

Phase 3: Apply Fixes

Apply fixes directly — don't just report issues. For each fix:

  1. Make the change
  2. Verify the file still parses / compiles
  3. If tests exist, run them after all changes to confirm nothing broke

Rules

  • Scope discipline: only refine recently modified code unless the user explicitly asks for broader review.
  • Preserve functionality: never change what the code does, only how it does it.
  • Prefer deletion over addition: the best code is code that doesn't exist.
  • Clarity over brevity: explicit code is often better than compact code. Avoid:
    • Overly clever solutions that are hard to understand
    • Combining too many concerns into single functions
    • Removing helpful abstractions that improve code organization
    • Dense one-liners or nested ternaries that sacrifice readability
    • Changes that make the code harder to debug or extend
  • No cosmetic drift: don't reformat code you didn't change for functional reasons.
  • Run tests: always verify after changes.

Read the full file on GitHub · 60 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 · 60 lines · 0 tokens per session scan A 358c54383b0c

Subscribe to this mod's changes

simplify is a skill published in the GitHub repository sjarmak/agent-workflows (9 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 580 tokens. 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

speckit.specify

Skill "speckit.specify" from caipe-io/ai-platform-engineering, covering user input, outline, quick guidelines, section requirements and for ai generation.

caipe-io/ai-platform-engineering · 0 tokens

speckit.clarify

Skill "speckit.clarify" from caipe-io/ai-platform-engineering, covering user input and outline.

caipe-io/ai-platform-engineering · 0 tokens

local-integration-testing

Run end-to-end integration tests with all 15 agents and supervisor in local Docker Compose dev environment. Validates agent discovery, multi-agent routing, checkpoint persistence, and cross-agent follow-up conversations.

caipe-io/ai-platform-engineering · 44 tokens

release-docs

Generate a combined release blog post for ai-platform-engineering. Produces a single docs/releases/YYYY-MM-DD-release-X-Y-Z.md file containing release notes and the upgrade guide (migration guide) inline. Use when cutting a release, when a user asks "what changed in 0.4.x", or when upgrading their values.yaml to a new…

caipe-io/ai-platform-engineering · 76 tokens

update-docs

Audit and update all documentation moving parts for ai-platform-engineering. Checks release blog posts, features page, agent docs, homepage version strings, Docusaurus version config, and sidebar completeness. Fixes what is stale and reports what needs manual attention. Use after cutting a release, adding a new agent…

caipe-io/ai-platform-engineering · 70 tokens

docker-compose-first-install

Validate and repair the OSS first-install Docker Compose path. Use when editing docker-compose.yaml, docker-compose.dev.yaml, .env.example, release image tags, Compose profiles, Keycloak/OpenFGA/RAG defaults, or first-launch UI behavior for local all-in-one installs.

caipe-io/ai-platform-engineering · 60 tokens