simplify-code

Reviews recent code changes with three parallel subagents and applies cleanup fixes.

Updated Sep 9, 2026
One-click install
npx skills add https://github.com/luckybbjason1/trading --skill simplify-code-luckybbjason1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: simplify-code
Source: https://github.com/luckybbjason1/trading/tree/main/.hermes/skills/software-development/simplify-code
Command: npx skills add https://github.com/luckybbjason1/trading --skill simplify-code-luckybbjason1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Reviewing your own recent changes for duplication, quality issues, and inefficiencies is slow and easy to do superficially. This Skill runs three focused reviewers in parallel over your git diff, aggregates their findings, and applies the fixes worth keeping. ## Core Features & Use Cases - Parallel Three-Agent Review: Launches reuse, quality, and efficiency reviewers concurrently via delegate_task batch mode, each searching the codebase for evidence. - Scoped Diff Sources: Reviews uncommitted changes, staged changes, the last commit, a branch, or specific files based on what you ask for. - Aggregation and Safe Application: Dedupes findings, discards false positives, resolves conflicts, applies fixes, and verifies with targeted tests. - Use Case: After finishing a feature, say "simplify my changes" to get duplication, quality, and efficiency issues found and fixed, with a summary of what changed and what was skipped. ## Quick Start Ask the agent to simplify my recent changes and report what it fixed.

Frequently Asked Questions about simplify-code

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review my recent code changes for duplication and quality issues?

Run the simplify-code skill by saying "simplify my changes". It captures your git diff, launches three parallel reviewers for reuse, quality, and efficiency, then aggregates findings and applies the worthwhile fixes.

How to run a code review on only staged changes or the last commit?

Specify the scope in your request, such as "simplify staged" or "simplify the last commit". The skill maps these to git diff --staged or git diff HEAD~1 and reviews only that diff.

Can I get a code review report without applying any changes?

Yes, request a dry run with phrases like "simplify but don't change anything" or "just report". The three reviewers still run and present findings, but nothing is applied until you approve.

What happens when reviewers give conflicting suggestions?

Conflicts are resolved with a default priority of correctness, then your stated focus, then readability and reuse, then micro-performance. Mutually exclusive suggestions default to the one touching less code, with the alternative noted.

When should I not use parallel multi-agent code review?

Avoid running it automatically after every edit since it costs three subagents of tokens. For very large diffs over roughly 2000 lines, scope down per directory or per commit first to avoid heavy token usage and truncation.