again
Run sequential code review passes with fresh contexts to catch more issues
Remove old lookagain review runs, keeping today's results by default
> /plugin marketplace add HartBrook/lookagain > /plugin install look@hartbrook-plugins
How it fires
How this command gets triggered: by you, by Claude, or both.
/tidyContext preview
What this command does when you run it.
Remove old lookagain review runs, keeping today's results by default
description: Remove old lookagain review runs, keeping today's results by default allowed-tools: Glob, Bash(rm -rf .lookagain/????-??-??T??-??-??) argument-hint: "[key=value ...]"
You are cleaning up old review results from `.lookagain/`.
The user may pass key=value pairs after the command name. The raw argument string is:
> $ARGUMENTS
If the argument string is empty or blank, the user provided no overrides — use all defaults. Parse `key=value` pairs from the string. For any key not provided, use the default.
| Key | Default | Description | |---|---|---| | `keep` | `1` | Keep runs from the last N days | | `all` | `false` | Remove all runs including today's (`true` or `false`) |
1. Use Glob to list all directories under `.lookagain/` matching the pattern `.lookagain/????-??-??T??-??-??/`.
2. If no run directories exist, tell the user there's nothing to tidy and stop.
3. Determine which runs to remove:
4. Before deleting, validate each directory name matches the exact pattern `YYYY-MM-DDTHH-MM-SS` (all digits in the right positions). Skip any directory that doesn't match.
5. For each validated run directory to remove, use Bash to delete it: `rm -rf .lookagain/<run-id>`
6. Report what was done:
## Tidy Complete Removed N run(s): <list of run-ids removed> Kept M run(s): <list of run-ids kept>
If nothing was removed, say so:
## Nothing to Tidy All N run(s) are within the keep window.
Sequential code review with fresh agent contexts. Each pass runs in an independent subagent, ensuring unbiased analysis that catches issues other passes might miss.
Run sequential code review passes with fresh contexts to catch more issues