wise-simplify-autolisted
Install: claude install-skill e1024kb/wise-claude
# /wise-simplify-auto — simplify recently-modified code and commit
## Why this skill exists
The simplify pass (the `code-simplifier` agent) is the plugin's
lightweight per-commit cleanup; it is wired into the commit routine
(`/wise-commit` runs it before staging) and into the implement phase
(per task). This skill exposes it as a **standalone, decision-free
building block**: run the pass, then commit the result — no prompts. The
heavier multi-agent code-review branch gate is the other tier
(`/wise-code-review-auto`).
(Close cousin of `/wise-commit`, which also simplifies-then-commits via
its `SIMPLIFY=yes` default; this skill makes the simplify step the
explicit headline and is the autonomous building block workflows reuse.)
## Invocation
```
/wise-simplify-auto
/wise:wise-simplify-auto # canonical namespaced form
```
No positionals, no flags. If the argument string contains anything other
than optional whitespace, stop with:
```
Unknown argument(s): <the extra tokens>
Usage: /wise-simplify-auto
```
## Procedure
### 1. Simplify recently-modified code
Run the simplify pass per
`${CLAUDE_PLUGIN_ROOT}/references/simplify-pass.md` — dispatch the
`code-simplifier` agent (a `Task` subagent) over the working tree's
recently-modified code. Surface its summary verbatim. On a simplify
failure, follow that reference's failure policy and stop with
`SIMPLIFY: failed reason="<one-line>"`.
### 2. Commit the result
Follow `${CLAUDE_PLUGIN_ROOT}/skills/wise-commit/com