ReviewLoop
A production-minded Rust CLI/daemon for
paperreview.aisubmission and review retrieval.
Most paper review automation breaks in boring ways: duplicate submissions, lost tokens, noisy polling, and zero traceability.
ReviewLoop gives you a durable loop with guardrails:
- Queue reviews from Git tags or PDF hash changes
- Persist every transition in SQLite
- Pull tokens from Gmail OAuth or IMAP
- Write reproducible artifacts (
review.json,review.md,meta.json) - Recover from failures with explicit retries and fallback submission
Why This Project Exists
Reviewing pipelines are usually a pile of scripts plus cron plus hope. ReviewLoop is built for the opposite:
- predictable state transitions
- low default provider pressure
- human approval gates where it matters
- clear local evidence of what happened and why
If you want reliable, low-drama automation for paperreview.ai, this is the tool.
1-Minute Quick Start
# 1) one-time machine setup
# 2) for any repo, one-time project setup
# 2.5) one-time: configure submitter email
# Edit ~/.config/reviewloop/config.toml and add:
#
# [providers.stanford]
# email = "you@example.edu"
#
# (reviewloop config init creates the file if it doesn't exist yet; re-running it
# is a no-op when the file already exists, so edit the file directly.)
# 3) submit + watch a paper come back, all at once
reviewloop run registers the paper if it isn't already in the project config, submits
it immediately with force, then drives a live polling loop until the review lands.
Exit codes: 0 = review complete, 2 = terminal failure, 130 = Ctrl+C.
A submitter email is required. Set
providers.stanford.emailin~/.config/reviewloop/config.toml(step 2.5 above) or runreviewloop email login --provider googleto use OAuth. Email/OAuth is also needed if you submitted via the paperreview.ai website and want reviewloop to ingest tokens from your inbox. See Optional: email token ingestion below.
Optional flags:
Long-running Setup (Multiple Papers, Automation)
For daemon-based automation with multiple papers and Git-tag triggers:
# register a paper (uses the project-level venue from reviewloop.toml)
# register a second paper targeting a different venue (per-paper override)
# install and start the background daemon (macOS)
The daemon runs every 30 seconds, handles retries, token ingestion, and retention pruning
automatically. Use reviewloop status and reviewloop check to monitor it.
Deployment model (v0.2.0)
reviewloop is single-daemon-per-machine in v0.2.0:
- One launchd LaunchAgent label is used:
ai.reviewloop.daemon. Runningreviewloop daemon installfrom a second project repo overwrites the first plist; only the most recently installed daemon will run. - The shared SQLite database (
~/.local/state/reviewloop/reviewloop.db) stores job state for all projects you've ever used reviewloop in. The menu bar app (reviewloop-bar) reads this DB and shows a fleet view — jobs across every registered project. - The active daemon services jobs only for its installed project. Other projects' jobs are visible in the bar but won't be processed until you reinstall the daemon for them.
- The bar's "Pause / Resume daemon" buttons control the single installed daemon. There is no per-project pause control.
Multi-daemon support (one daemon per project, with distinct launchd
labels) is on the v0.3.0 roadmap. For v0.2.0, if you switch between project
repos, run reviewloop daemon install again from the new repo to point the
daemon at it.
Installation
Homebrew (recommended on macOS)
# after public release
Upgrade:
# or force Homebrew path
Cargo
# after public release
Upgrade:
# or force Cargo path
Build From Source
Menu bar companion (optional, macOS)
reviewloop-bar is a menu-bar app that surfaces the current state of
your active jobs without keeping a terminal open. It is read-only
against the same SQLite database the daemon writes to and triggers
actions by spawning reviewloop subcommands.
Build and install separately:
Run:
&
v2 capabilities:
- Per-job submenus — each active job (QUEUED / SUBMITTED /
PROCESSING) gets its own submenu showing
paper_id · STATUS · attempt=N · in Xswith three actions: Retry now, Open artifacts, Open log. - Submit new… — opens a native PDF file picker and spawns
reviewloop run <path>in the background. - Pause / Resume daemon — shells out to
reviewloop daemon pause/reviewloop daemon resume(macOS only; menu item is disabled on other platforms). - Open Artifacts Folder and Open Daemon Log — cross-platform
(
open/xdg-open/explorer). - Menu is rebuilt every 5 s so the job list stays current without restarting the bar.
The bar is opt-in (gated behind the bar Cargo feature) so headless
servers and CI continue to build the standard reviewloop binary
without the GUI dependencies.
Note: The menu bar companion has no automated integration tests (it is GUI-bound). Manual smoke-testing on macOS is the verification path. Multi-project switching and "Retry Failed" enumeration are deferred to a future phase (they require new
Dbhelpers).
Command Surface
Global usage:
Core commands:
|
self-update only replaces the executable. It does not delete:
- global config (
~/.config/reviewloop/config.toml) - global data directory (database, artifacts, logs)
- project-local configs
Exit Codes
reviewloop run: 0 = Completed, 2 = terminal failure, 130 = Ctrl+Creviewloop import-token: 0 = token attached + poll success, 2 = poll resolved to failure- All other commands: 0 = success, 1 = error
Runtime Model
Daemon tick interval: every 30 seconds.
Each tick performs:
- Trigger scan (
git tags, PDF hash changes) - Optional Gmail OAuth + IMAP token ingestion
- Timeout marking
- Submission processing (
QUEUED -> SUBMITTED/PROCESSING) - Poll processing (
PROCESSING -> COMPLETED/FAILED/...)
Manual immediate poll:
reviewloop check --job-id <id>forces one check now for that processing job (ignoresnext_poll_at)reviewloop check --paper-id <paper-id>checks the latest processing job for that paperreviewloop check --all-processingchecks all current processing jobs
Output artifacts per completed job:
<state_dir>/artifacts/<job-id>/review.json<state_dir>/artifacts/<job-id>/review.md<state_dir>/artifacts/<job-id>/meta.json
What Makes It Reliable
- State machine, not ad-hoc scripts: jobs move through explicit statuses (
PENDING_APPROVAL,QUEUED,PROCESSING,COMPLETED, etc.) - Duplicate guard: prevents repeated submissions for the same
project_id + paper_id + backend + pdf_hash + version_key - Load-aware polling: default schedule starts at 10 minutes with jitter/cooldown behavior
- Recovery built in: every transition is evented, retries are explicit
- Fallback path: optional Node + Playwright submit path when provider API flow fails
Triggering Modes
Git tag trigger
Supported patterns:
review-<backend>/<paper-id>/<anything>review-<backend>/<anything>(uses the first configured paper of that backend)- optional per-paper custom pattern via
paper add --tag-trigger "<pattern>"(supports*)
Example:
review-stanford/main/v1
PDF change trigger
- Computes SHA256 for configured PDFs
- New hash enqueues job
- Default status is
PENDING_APPROVAL(manualapproverequired)
Email Token Ingestion (Experimental, opt-in)
ReviewLoop can attach review tokens from email to open jobs. Both
ingestion paths default to disabled because the regex / header
matching is heuristic and noisy when the inbox does not contain the
expected paperreview.ai mail. The Stanford backend already returns
the token directly from confirm-upload, so this path is mostly
useful as a backup for the Playwright fallback flow or for jobs
created out-of-band.
To turn either path on, set enabled = true explicitly in your config.
IMAP mode (built in)
Default token pattern includes Stanford:
[]
= true # opt-in; default is false
[]
= "https?://paperreview\\.ai/review\\?token=([A-Za-z0-9_-]+)"
Recommended defaults:
imap.header_first = trueto scan headers firstimap.max_lookback_hours = 72imap.max_messages_per_poll = 50
Gmail OAuth mode
Configure:
[]
= true # opt-in; default is false
= "your-google-oauth-client-id"
= "your-google-oauth-client-secret"
= "~/.review_loop/oauth/google_token.json" # optional
= 300
= true
= 72
= 50
= true
[]
= "(?is)(from:\\s*.*mail\\.paperreview\\.ai|subject:\\s*.*paper review is ready)"
[]
= "https?://paperreview\\.ai/review\\?token=([A-Za-z0-9_-]+)"
You can also provide credentials via environment variables:
REVIEWLOOP_GMAIL_CLIENT_IDREVIEWLOOP_GMAIL_CLIENT_SECRET
Credentials are resolved at runtime only (env var → config.toml field). They are
not baked into the binary at compile time, so every deployment must supply them via
one of the two mechanisms above. The old CI compile-time injection pattern
(option_env!) has been removed to prevent secrets from being embedded in binaries.
Then login:
email login will try to open your default browser automatically and wait in CLI for OAuth completion.
The daemon refreshes Gmail OAuth tokens when they are within five minutes of expiry.
ReviewLoop runs Gmail API polling first when available, then IMAP fallback.
Configuration Highlights
Proxy pool
Outbound HTTP requests (PDF upload, review fetch, Gmail API) can be routed
through a list of user-configured HTTP / SOCKS proxies. ReviewLoop uses
reqwest-middleware for the
middleware framework; the rotation logic itself is a small in-house
middleware (∼90 lines) that does:
- Round-robin across the configured proxy URLs using an atomic counter, so concurrent requests spread across the pool.
- Sequential failover on transient connection errors: when a proxy refuses the connection, times out, or fails the TLS handshake, the request is retried against the next proxy in the rotation. HTTP responses (any 4xx / 5xx that completes a round-trip) are returned as the upstream service answered — the proxy is healthy, the upstream said no.
Note on library choice:
reqwest-proxy-pool0.4 was evaluated and found unsuitable: it supports only SOCKS5/SOCKS5H (no HTTP proxy) and only fetches its proxy list from remote URLs (no API for a user-supplied static list). The custom middleware avoids both limitations. Migration to upstream when it gains HTTP + static-list support is tracked separately.
Configure in global config:
[]
= [
"http://user:pass@proxy1.example.com:8080",
"socks5://user:pass@proxy2.example.com:1080",
]
Or per-project (overrides global, does not merge):
[]
= ["http://special-proxy.example.com:8080"]
Empty list (default) disables proxy routing — direct connections used. Credentials embedded in proxy URLs are never written to logs; only the count is reported.
Tip — using Clash / Mihomo: if you already run Clash locally, just point ReviewLoop at its HTTP listener:
[]
= ["http://127.0.0.1:7890"]
Clash itself handles subscription URLs, real proxy rotation, health-check, and protocol translation (VMess / Trojan / SS / etc.). ReviewLoop treats it as a single stable upstream HTTP proxy.
Limitations:
- Bodies that cannot be cloned (streamed uploads from a file handle) fall back to a single-attempt path with no failover. The current PDF upload reads the file into memory before constructing the request body, so failover applies. Future streaming-upload paths would not.
- The OAuth2 token-exchange flow (
reviewloop email login --provider google) uses only the first proxy in the list, because theoauth2crate requires a barereqwest::Client. This affects only the initial one-time login; subsequent token refreshes go through the full pool. - No active health-check probe / cooldown for known-bad proxies. Failover is per-request (next request again starts at round-robin position N+1 — a dead proxy is skipped at the moment of use, not blacklisted). Acceptable for small static lists; for large pools consider a managed service or Clash upstream.
ReviewLoop uses two config files with separate responsibilities:
- global config:
$XDG_CONFIG_HOME/reviewloop/config.tomlor~/.config/reviewloop/config.toml - project config:
<repo-root>/reviewloop.toml
There is no global-overrides-project merge chain. Instead:
- global config owns machine/user concerns such as
core.*,logging.*,polling.*,retention.*,imap.*,gmail_oauth.*, and Stanford provider connection defaults - project config owns repo concerns such as
project_id,papers,paper_watch,paper_tag_triggers,trigger.*, and Stanford venue --config /path/to/reviewloop.tomlexplicitly points to a project config filereviewloop initinitializes the global config/data pathsreviewloop init project --project-id <id>initializes the current repo's project configreviewloop daemon installcan run in global-only mode when no project config is present; if a project config is found, it binds the daemon to that project config
Project commands require a non-empty project_id in the project config. Jobs, events, dedupe, and status views are isolated inside the shared global DB by project_id.
Paper registration:
- start with an empty
papers[] - add papers through
reviewloop paper add ... - remove papers through
reviewloop paper remove --paper-id ...- add
--purge-historyto also delete DB jobs/events/reviews and local artifacts for that paper
- add
- control PDF watcher per paper with
reviewloop paper watch ...
Safe defaults:
core.max_concurrency = 2core.max_submissions_per_tick = 1core.state_dir = "~/.review_loop"(orREVIEWLOOP_STATE_DIRwhen set)core.db_path = "~/.review_loop/reviewloop.db"(or<REVIEWLOOP_STATE_DIR>/reviewloop.db)core.review_timeout_hours = 48- for
stanford, timeout is linearly scaled by PDF page count up to 20 pages
- for
polling.schedule_minutes = [1, 2, 5, 10, 20, 40](first poll within ~1 minute, then back off)polling.jitter_percent = 10retention.enabled = trueretention.prune_every_ticks = 20(10 minutes with 30s tick)retention.email_tokens_days = 30retention.seen_tags_days = 90retention.events_days = 30retention.terminal_jobs_days = 0(disabled by default)trigger.pdf.auto_submit_on_change = falsetrigger.pdf.max_scan_papers = 10trigger.git.tag_pattern = "review-<backend>/<paper-id>/*"trigger.git.auto_create_tags_on_pdf_change = falsetrigger.git.auto_delete_processed_tags = false
providers.stanford defaults:
base_url = "https://paperreview.ai"fallback_mode = "node_playwright"fallback_script = "tools/paperreview_fallback.mjs"emailoptional (falls back to active email account)venue = "ICLR"(project config)
Logging:
logging.output = "stdout" | "stderr" | "file"- file mode default path:
<state_dir>/reviewloop.log
CI/CD and Release Flow
This repository ships with GitHub Actions for both quality gates and release automation.
CI (.github/workflows/ci.yml)
On pull requests and pushes to main/master:
cargo fmt --all -- --checkcargo clippy --all-targets -- -D warningscargo test --all-targets --locked
Runs on both Ubuntu and macOS.
The same gate is shared locally via ./scripts/quality-gates.sh.
To enable it in the standard pre-commit framework:
pre-commit install- commits will then run the repository-local
reviewloop quality gateshook before creating the commit
Release (.github/workflows/release.yml)
On tag push like v0.1.0:
- Verify tag version matches
Cargo.toml - Run quality gates again
- Publish crate to crates.io
- Update Homebrew tap formula in
Acture/homebrew-ac - Create GitHub Release with generated notes
Required secrets:
CARGO_REGISTRY_TOKENHOMEBREW_TAP_GITHUB_TOKEN
Runtime secrets (must be provided via env or config.toml at runtime — not baked in at compile time):
REVIEWLOOP_GMAIL_CLIENT_IDREVIEWLOOP_GMAIL_CLIENT_SECRET
Optional repo variables:
HOMEBREW_TAP_REPO(default:Acture/homebrew-ac)HOMEBREW_FORMULA_PATH(default:Formula/reviewloop.rb)
Fallback Requirements
When API submit fails and fallback is enabled:
- Node.js must be available
- Playwright runtime dependencies must be installed
- script path defaults to
tools/paperreview_fallback.mjs
Responsible Use
ReviewLoop is intentionally conservative.
Please keep it that way:
- use it only for authorized submissions/retrieval
- keep concurrency and submit rate low unless provider approves otherwise
- do not aggressively shorten poll cadence
- respect provider Terms of Service and fair-use boundaries
Current Scope
- Supported backend:
stanford(paperreview.ai) - Database: SQLite (global state path by default, supports
:memory:) - Interface: CLI + daemon
macOS Widget (preview)
The daemon writes a small JSON status snapshot (widget-state.json) every tick.
A separate macOS WidgetKit extension reads that snapshot and renders a glance UI
(active job count, recent failures) in macOS desktop / Notification Center widgets.
Platform: macOS only. Distribution: opt-in via build — no signed binary is
distributed. You build the .app yourself with your Personal Team.
Build & install
- Install xcodegen:
brew install xcodegen cd apple/ReviewLoopWidget && xcodegen generate- Open
ReviewLoopWidget.xcodeprojin Xcode 16+ - Select your Personal Team for both
HostAppandWidgettargets in Signing & Capabilities - In both
.entitlementsfiles (HostApp/HostApp.entitlements,Widget/Widget.entitlements), changegroup.ai.reviewloop.localtogroup.<your-bundle-prefix>.shared(must match across both files) - Configure the daemon to write into the App Group container so the sandboxed
widget can read it. Edit
~/.config/reviewloop/config.toml:[] = "/Users/<you>/Library/Group Containers/group.<your-bundle-prefix>.shared" - In Xcode: ⌘R to build & launch the host app once. The host app is just a placeholder window; quit it.
- Add the widget from the macOS desktop / Notification Center widget gallery (search for "ReviewLoop").
Limitations
- Refresh ~5 minutes minimum (Apple WidgetKit budget); not a real-time dashboard.
- macOS 15+, Xcode 16+ required.
- You build the
.appyourself with your Personal Team. No signed binary is distributed (~$99/yr Apple Developer fee not paid). - Sandbox: the widget can only read the App Group container; you must configure
core.widget_state_dirto match the App Group ID, or the widget will show "no data" indefinitely. - Currently V1: small + medium widget sizes only; no Lock Screen / accessoryRectangular variants.
See apple/ReviewLoopWidget/README.md for
build details that may evolve.
License
IMAP support
IMAP email ingestion is gated behind a Cargo feature and is not compiled in by
default. Default builds work without it — reviewloop run submits and polls
via the API directly.
To enable IMAP support:
If imap.enabled = true appears in your config but the binary was built without
--features imap, a warning is logged at startup and IMAP polling is silently
skipped.