Synopsis
aigon feature-code-revise [ID]Shortcuts
/afrv(slash command) ·aigon afrv(CLI)
Description
feature-code-revise is the implementing agent’s response to a completed code review. It is the second half of the review cycle: after feature-code-review produces fix commits in the feature worktree, the original implementer runs feature-code-revise to decide which changes to accept, revert, or modify.
If no ID is supplied, the command infers it from the current worktree branch name.
Workflow position
feature-code-review (reviewer) → code_review_complete → code_revision_in_progress
→ feature-code-revise (implementer) → code_revision_completeBoth states are first-class engine states. AutoConductor polls currentSpecState === 'code_revision_complete' to confirm the revision cycle is done before closing the feature.
What it does
- Reads the review diff and the reviewer’s findings log
- For each reviewer fix commit: accept (cherry-pick), revert, or modify per spec acceptance criteria
- Commits the revision result with
fix(revise): ...messages - Signals
code_revision_completeto the engine viaaigon agent-status revision-complete
Examples
# From the implementing agent's worktree
aigon feature-code-revise
# Explicitly pass the feature ID (useful if branch name is ambiguous)
aigon feature-code-revise 55Related
feature-code-review— reviewer-side pass that precedes this commandfeature-close— merges and completes the feature after the revision cycleagent-status— underlying signal mechanism
Last updated on