Evolver Review
Review, approve, or reject changes currently pending solidification in this repository.
Execution Guide
When requested, execute the following steps:
Show the user what is pending — run
git status --shortandgit diff(orgit diff HEAD) so the user can see the actual proposed edits.Check for CLI or resolve npx command:
EVOLVER="evolver" command -v evolver >/dev/null 2>&1 || EVOLVER="npx -y @evomap/evolver"Resolve user intent:
- If the user explicitly asks to approve or accept the changes: run
$EVOLVER review --approveto solidify. - If the user explicitly asks to reject, discard, or roll back the changes: run
$EVOLVER review --rejectto roll back. - If no explicit intent was provided, summarize the pending diff and ask the user whether to approve or reject the proposed changes before running any modifying command.
- If the user explicitly asks to approve or accept the changes: run
Report the final state (solidified / rolled back) and the resulting git status.