feat(skills): add simplify-code skill — parallel 3-agent code review & cleanup#41691
Merged
Conversation
…and cleanup Inspired by Claude Code's /simplify. A bundled skill that captures recent changes via git diff, fans out three focused reviewers (reuse, quality, efficiency) via delegate_task batch mode, then aggregates findings and applies the fixes worth applying. Zero core changes — orchestrates existing tools (terminal/git, search_files, delegate_task). Supports focus, dry-run, and scoped-diff modifiers. Closes #379.
6aafc82 to
d05769a
Compare
changman
pushed a commit
to changman/hermes-agent
that referenced
this pull request
Jun 10, 2026
…and cleanup (NousResearch#41691) Inspired by Claude Code's /simplify. A bundled skill that captures recent changes via git diff, fans out three focused reviewers (reuse, quality, efficiency) via delegate_task batch mode, then aggregates findings and applies the fixes worth applying. Zero core changes — orchestrates existing tools (terminal/git, search_files, delegate_task). Supports focus, dry-run, and scoped-diff modifiers. Closes NousResearch#379.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a bundled
simplifyskill: review your recent code changes with three focused reviewers running in parallel, then aggregate and apply the worthwhile fixes. Inspired by Claude Code's/simplify(Boris Cherny, Feb 2026), adapted to Hermes tooling.Zero core changes — the skill orchestrates existing tools (
terminal/git,search_files,delegate_taskbatch mode).How it works
git diff(working tree → staged → scoped variants for "last commit" / "this branch" / specific files).delegate_taskbatch mode, each given the full diff + repo path:Adaptations from the original
delegate_taskbatch (3 is recommended fan-out, not a system cap)search_filesreuse/quality/efficiency), scoped-diff modifiersOpen questions from #379 resolved with defensible defaults: invoke-only (no auto-run), dry-run supported, conflict resolution order specified, folds in AGENTS.md/HERMES.md project conventions when present.
Changes
skills/software-development/simplify/SKILL.md— the skillwebsite/docs/.../software-development-simplify.md+skills-catalog.md+sidebars.ts— regenerated viawebsite/scripts/generate-skill-docs.pyValidation
iter_skill_index_files+parse_frontmatter+skill_matches_platform) discoverssimplify, frontmatter parses, platform match OK, body has all 3 reviewers + batch instruction.related_skillsall resolve in the repo tree, zero danglingskill_view(calls.tests/website/test_generate_skill_docs.py— 7/7 pass.Closes #379.
Infographic