ワンクリックで
openreview-explorer
// Search papers on OpenReview and retrieve peer reviews and rebuttals from major ML conferences (ICLR, NeurIPS, ICML). Core skill for FrontierPilot's Knowledge Exploration engine.
// Search papers on OpenReview and retrieve peer reviews and rebuttals from major ML conferences (ICLR, NeurIPS, ICML). Core skill for FrontierPilot's Knowledge Exploration engine.
| name | openreview-explorer |
| description | Search papers on OpenReview and retrieve peer reviews and rebuttals from major ML conferences (ICLR, NeurIPS, ICML). Core skill for FrontierPilot's Knowledge Exploration engine. |
| version | 1.0.0 |
This skill fetches papers, peer reviews, and author rebuttals from OpenReview — treating the review process as structured learning material for newcomers entering a research field.
Peer reviews reveal what the field actually cares about: common weaknesses, evaluation standards, and how top authors respond to criticism. This is knowledge that takes years to accumulate informally — FrontierPilot surfaces it directly.
Always use: python3 (available in the OpenClaw container environment)
python3 /home/node/.openclaw/workspace/skills/openreview-explorer/scripts/search_papers.py \
--query "automl" \
--venue "ICLR" \
--year 2024 \
--limit 5
python3 /home/node/.openclaw/workspace/skills/openreview-explorer/scripts/get_reviews.py \
--forum-id <FORUM_ID> \
--venue "ICLR" \
--year 2024
python3 /home/node/.openclaw/workspace/skills/openreview-explorer/scripts/search_papers.py \
--venue "ICLR" \
--year 2024 \
--limit 10
search_papers.py to find top relevant papers from recent ICLR/NeurIPS/ICMLget_reviews.py to retrieve:
memory/RESEARCH_LOG.mdPapers are returned as JSON. Present them as:
Reviews are returned with:
The scripts read credentials from environment variables. Set them before use:
OPENREVIEW_USERNAME: your OpenReview account emailOPENREVIEW_PASSWORD: your OpenReview account passwordOPENREVIEW_BASE_URL: https://api2.openreview.net (default, usually no need to set)| Venue | Invitation Pattern |
|---|---|
| ICLR 2024 | ICLR.cc/2024/Conference/-/Submission |
| ICLR 2023 | ICLR.cc/2023/Conference/-/Submission |
| NeurIPS 2024 | NeurIPS.cc/2024/Conference/-/Submission |
| ICML 2024 | ICML.cc/2024/Conference/-/Submission |
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
Use when the user wants to explore a research topic/field (0→entry package) or update a topic’s latest updates. Produces a growing HTML knowledge base + fp_data_{TOPIC}.json via Semantic Scholar + OpenReview + arXiv + GitHub + Bilibili/WeChat. Do NOT use for pure Q&A, coding help, or when the user doesn’t want file outputs.