Install
openclaw skills install openreview-review-analyzerFetch and analyze peer reviews from OpenReview for any academic paper. Use this skill when the user mentions OpenReview, asks about reviews for a paper, wants a review summary or synthesis, provides an openreview.net URL, mentions a paper forum ID, asks about reviewer opinions or scores for a conference submission (ICLR, NeurIPS, ICML, AAAI, etc.), or wants to understand what reviewers think about a specific paper. Also trigger when the user says things like 'what did reviewers say about this paper', 'summarize the reviews', 'get reviews for this submission', or 'analyze reviewer feedback'. Even if the user just pastes an OpenReview link, this skill should trigger.
openclaw skills install openreview-review-analyzerFetch all public peer reviews for any paper on OpenReview and generate a structured synthesis report.
https://openreview.net/forum?id=XXXXX)Parse the OpenReview URL or forum ID from user input. The forum ID is the id parameter in the URL:
https://openreview.net/forum?id=xxxxxxx → forum ID = xxxxxxxRun the Python script to fetch all reviews and metadata:
python3 {baseDir}/scripts/fetch_reviews.py <forum_id>
The script has zero external dependencies — it uses Python's built-in urllib. If requests is installed it will use that instead, but it's not required.
The script outputs a JSON file at /tmp/openreview_<forum_id>.json containing:
If the script fails (e.g., network restrictions, reviews not public, paper withdrawn), use these fallback methods in order:
Fallback 1 — web_fetch the API directly:
web_fetch https://api2.openreview.net/notes?forum=<forum_id>
Parse the JSON response to get the submission, then:
web_fetch https://api2.openreview.net/notes?forum=<forum_id>&trash=true
to get all replies including reviews. Filter replies where invitations contains Official_Review.
Fallback 2 — web_search for review content:
Search for "<forum_id>" review site:openreview.net or "<paper_title>" review <venue> to find discussions, blog posts, or cached review content.
Fallback 3 — inform the user: If no review data is accessible, explain that reviews may not be public yet, or suggest the user check the OpenReview page directly.
Read the JSON output and produce a structured report following {baseDir}/references/report-template.md.
Key analysis points:
Match the user's language. If the user writes in Chinese, output the report in Chinese. If in English, output in English.