Background
Rust already has bundled simplify prompt assets, but it does not yet match the public /simplify entrypoint and multi-agent behavior of the Bun reference.
Reference
- Entry:
src/skills/bundled/simplify.ts
- Related modules: bundled skill registration and
AgentTool
- Behavior: inspect the diff, spawn multiple review agents across reuse/quality/efficiency concerns, then drive fixes.
Rust Gap
- The
simplify prompt already exists in src/skills/bundled.rs.
- Slash dispatch does not expose it as
/simplify, and fork/agent execution is still incomplete.
- Suggested approach: separate the public entrypoint work from the deeper multi-agent execution work.
Acceptance
- Expose
/simplify as a user-facing command.
- Reuse the multi-agent workflow when fork/agent support is available, with a fallback mode if not.
- Keep the output action-oriented rather than suggestion-only.
- Add tests for the slash->skill bridge.
Background
Rust already has bundled
simplifyprompt assets, but it does not yet match the public/simplifyentrypoint and multi-agent behavior of the Bun reference.Reference
src/skills/bundled/simplify.tsAgentToolRust Gap
simplifyprompt already exists insrc/skills/bundled.rs./simplify, and fork/agent execution is still incomplete.Acceptance
/simplifyas a user-facing command.