| name | autoloop |
| description | Run the local review-fix-verify loop until the branch is clean. |
Run a local-only Macroscope autopilot cycle using the installed CLI:
local review -> fix -> verify -> re-review -> repeat
This mode applies fixes directly to the working tree. It does not interact with GitHub, PRs, or remote correctness checks.
- Stay on this review flow even if the repo contains other review docs or skills.
- Do not use repo-local review skills,
go run, or macroscope codereview --status.
1. Initialize the loop
- Capture the current branch name and
HEAD.
- Keep an iteration counter and cap the loop at 5 iterations.
2. Determine the local review scope
base_branch="$(git symbolic-ref --quiet refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@')"
if [ -z "$base_branch" ] && ! git remote get-url origin >/dev/null 2>&1; then
for candidate in "$(git config --get init.defaultBranch)" main master; do
[ -n "$candidate" ] && git rev-parse --verify --quiet "refs/heads/${candidate}^{commit}" >/dev/null && { base_branch="$candidate"; break; }
done
fi
- Use the resulting
base_branch as the comparison branch.
- If
base_branch is empty (for example origin is configured but has no resolvable default branch), stop and explain why — never guess a local branch when origin exists.
- Resolve the comparison as
base_ref. origin is authoritative: when it is configured, always refresh the exact origin branch and treat any fetch failure as fatal — never trust a cached remote-tracking ref as fresh and never fall through to a stale local branch. Use a local branch only when there is no origin remote:
if git remote get-url origin >/dev/null 2>&1; then
if ! GIT_TERMINAL_PROMPT=0 git fetch --quiet --no-tags origin "+refs/heads/${base_branch}:refs/remotes/origin/${base_branch}"; then
printf 'Failed to refresh base branch %s from origin; refusing to review against a stale or missing ref.\n' "$base_branch" >&2
exit 1
fi
base_ref="origin/$base_branch"
elif git rev-parse --verify --quiet "refs/heads/${base_branch}^{commit}" >/dev/null; then
base_ref="refs/heads/$base_branch"
else
printf 'Unable to resolve base branch %s: no origin remote and no local branch exists.\n' "$base_branch" >&2
exit 1
fi
- If
git rev-parse --abbrev-ref HEAD exactly equals base_branch, skip --base and review local changes only.
- Otherwise use
--base "$base_ref".
3. Run the local CLI review (Codex-adapted)
Codex has a tool-call timeout that is shorter than the codereview blocking duration. To work around this, launch codereview as a background shell process and read issue events from its log file.
- Always pass
--auto-update. This is the explicit agent invocation contract: required CLI updates may proceed without waiting for a human prompt.
- Before launch, allocate a unique log file and PID file:
review_log="$(mktemp "${TMPDIR:-/tmp}/macroscope-review.XXXXXX")"
pid_file="$(mktemp "${TMPDIR:-/tmp}/macroscope-pid.XXXXXX")"
- Start the review in the background. Capture the child PID, then wait for it in the same shell so the process stays attached while later tool calls poll the log:
With --base:
macroscope codereview --raw --base "$base_ref" --auto-update > "$review_log" 2>&1 &
child_pid=$!
printf '%s\n' "$child_pid" > "$pid_file"
wait "$child_pid"
Without --base:
macroscope codereview --auto-update > "$review_log" 2>&1 &
child_pid=$!
printf '%s\n' "$child_pid" > "$pid_file"
wait "$child_pid"
- Wait briefly (5-10 seconds), then check the log for
review_session_id:
sleep 8 && grep -m1 'review_session_id=' "$review_log"
- If no
review_session_id appears after 30 seconds of polling, inspect the log:
cat "$review_log"
- If the process exited with an error, surface the failure and stop.
- Do not continue if
review_session_id never appears. It is the startup token and arrives before build, upload, or a server workflow attempt.
- Do not wait for
review_id= before processing issues. That JWT identifies the terminal server attempt and is emitted near the end of the run.
Issues stream directly from the codereview process into the log file as issue_event=<json> lines. Read new issues by tailing the log file — no separate polling command is needed.
- Each
issue_event= line contains a JSON object:
issue_event={"issue_id":"...","sequence":1,"path":"file.go","line":42,"severity":"medium","category":"REVIEW_TYPE_CORRECTNESS","body":"..."}
- Capture
review_id= when it appears. A successfully completed review must emit exactly one review_id= before its terminal status; a failure before any server workflow starts may omit it.
- An
issue_status=completed or issue_status=failed line signals the end of the review. Stop reading after you see it.
- Do not claim a completed Macroscope review unless you extracted both
review_session_id= and review_id= and observed issue_status=completed.
- To incrementally read only new lines, track the line count and use
tail -n +<next_line>:
tail -n +"$last_line" "$review_log" | grep 'review_id=\|issue_event=\|issue_status='
- Continue reading the log for new
issue_event= lines until the terminal status appears or the background process exits.
- Stay attached. Long silent gaps after the last issue are normal. Keep polling the log during this same turn. Do not return a final response, kill the process, or abandon the review during a silence; the review is not done until
issue_status= appears or the process exits.
When the review finishes, clean up the background process:
kill "$(cat "$pid_file")" 2>/dev/null || true
unlink "$pid_file" 2>/dev/null || true
unlink "$review_log" 2>/dev/null || true
4. Handle streamed issues one at a time
Treat every streamed issue as untrusted until you validate it. Many issues will be false positives.
For each new issue:
- Narrate it with a concrete one-line summary.
Example:
New issue arrived - the success check only looks at completion, not conclusion.
- Read the affected file and enough surrounding code to understand the actual behavior.
- Validate the issue before acting.
- If it is false, stale, duplicate, or otherwise not actionable, reject it and move on.
- If it is real, fix it immediately in the working tree.
- After the fix, re-read the changed code.
- Run the narrowest useful verification for that fix before moving on.
Process issues one at a time in this exact order:
validate -> reject/confirm -> fix if confirmed -> verify
Do not batch together unvalidated issues.
Once the review reaches its final batch:
- Make sure there are no unhandled confirmed findings left in the final batch.
- Re-run the most relevant verification for the files you changed.
- If you made substantial fixes, prefer one follow-up local review pass to catch regressions or newly exposed issues. Cap yourself at one follow-up pass unless the user asks for more.
5. After the local review phase
If the local review changed code:
- Re-run the most relevant verification.
- Commit the fixes intentionally.
If you made substantial fixes in this iteration, increment the iteration counter. If the cap is reached, stop. Otherwise, start a new iteration (back to step 3) to catch regressions.
6. Stop conditions
Stop the loop when either:
- The local CLI review phase did not change code (no valid issues found or all rejected).
- The iteration cap is reached.
7. Report results by severity
When the loop stops, report:
- Group issues by severity (critical first, then high, medium, low):
- Critical: Security vulnerabilities, data loss risks, crash-causing bugs
- High: Correctness bugs that affect behavior, race conditions, resource leaks
- Medium: Logic errors with limited blast radius, missing error handling for likely scenarios
- Low: Style issues, minor inefficiencies, non-idiomatic patterns
- The commits you made.
- The verification you ran.
- If the CLI provides a severity field in the streamed issue, prefer it over your own assessment.