What problem does it solve?
New code branches often accumulate overly long comments and docstrings that restate the obvious, making codebases harder to read and maintain. This Skill edits those comments down to concise, meaningful documentation instead of merely reporting the problem.
Core Features & Use Cases
- Comment Condensation: Rewrites comments and docstrings added by the current branch, keeping them short (typically 1-3 lines for comments, up to 5 for docstrings) while preserving motivation and caveats.
- Tautology and Narration Removal: Deletes comments that restate what the code plainly says, narrate history, or hedge, and fixes comments the branch made inaccurate.
- Parallel Review via Sub-agents: Diffs against origin/main and dispatches one sub-agent per changed crate or file group so large diffs are reviewed exhaustively.
- Use Case: After finishing a feature branch in a Rust workspace, run this Skill to tighten every comment the branch touched, then verify with
make format-rs && make lint-rs before merging.
Quick Start
Ask the AI to review and tighten the verbose comments and docstrings added by the current branch compared to origin/main.