Skip to content

Latest commit

 

History

21 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ideacheck

ideacheck is a multi-agent research novelty checker. Give it a research idea, it mines the alphaXiv literature and produces:

  1. Scope split — separates background from proposal, rates contribution size (0–100). Novelty is checked on the proposal only.
  2. Novelty — 0–100 score + verdict (novel / incremental / substantially covered / likely duplicated).
  3. Differentiation — how the proposal concretely differs from the closest prior work.
  4. Recommended reading — papers ranked by value to your paper, not just overlap.
  5. Methods to add — in-depth analysis of techniques from the literature to fold into your method.

Output: interactive D3 HTML report + markdown report + per-paper JSON.

⚠️ This tool is token-hungry. A single run analyzes 10–30+ papers, each requiring full-text retrieval + LLM analysis. One test run showed 8% of 5h usage and 2% of weekly usage on a Claude Max 20x plan, which is $ if used via API (calculated by ccusage). To reduce cost, use a harness that supports cheap or local models — see Saving cost below.

How it works (multi-agent)

orchestrator               split idea → background vs proposal, coordinate + synthesize
  ├─ query-planner         proposal → diverse searches → overlap candidates + read-worthy papers
  ├─ paper-analyst (×N)    one paper → overlap + reading value + similarities/differences (parallel)
  │     └─ overview-gen    makes + caches an overview when a paper has none
  ├─ method-advisor        in-depth: methods to fold in to improve the idea
  └─ (synthesis)           → report.json + render → report.md + report.html

The paper-analysts run in parallel (one per candidate paper). Each gathers evidence in priority order — full text → AI overview → abstract — and if a paper has no alphaXiv AI overview it generates and caches one. Every result is written to disk as it completes, so a crash mid-run keeps all finished papers.

alphaXiv is queried through public endpoints — no API key needed.

Install

1. Install the Python dependency

pip install alphaxiv-py

2. Install the skill into your project

Clone this repo, then copy axv.py, render.py, and the skill file into your project. The skill file (ideacheck.md) is a plain markdown prompt — put it wherever your harness looks for custom commands:

git clone https://github.com/weathon/ideacheck.git
cd /path/to/your/project

# copy the CLI tools
cp /path/to/ideacheck/axv.py /path/to/ideacheck/render.py .

Then install the skill file for your harness:

Harness Where to put ideacheck.md
Claude Code .claude/commands/ideacheck.md
Cursor .cursor/prompts/ideacheck.md (or paste into Rules)
Windsurf .windsurfrules/ideacheck.md (or paste into Rules)
Codex (OpenAI) AGENTS.md or codex.md (paste the content)
Aider .aider.conf.yml conventions file (paste the content)
Other / generic Paste the content of ideacheck.md directly into your harness's system prompt or rules file

Example for Claude Code:

mkdir -p .claude/commands
cp /path/to/ideacheck/.claude/commands/ideacheck.md .claude/commands/

The skill expects axv.py and render.py in the working directory. If you place them elsewhere, edit the paths in your copy of ideacheck.md.

Note: The skill file is harness-agnostic. It contains the full workflow, CLI tool docs, JSON schemas, and agent prompts as plain text. Any harness that can read a markdown prompt and run shell commands can execute it. The $ARGUMENTS placeholder on line 1 is a Claude Code convention — other harnesses should replace it with the user's idea text, or just paste the idea at the top.

3. Use it

Open your project in any AI coding harness and run:

/ideacheck a diffusion model that edits 3D scenes from natural-language instructions
/ideacheck --before 2023-05-01 the core idea of the paper under test

Harness-specific orchestration:

Harness How the skill runs
Claude Code Uses the Workflow tool for deterministic fan-out (parallel(), pipeline()), structured schemas, and a progress UI. Best experience.
Cursor / Windsurf / other Uses subagents (or the harness's equivalent). If no subagent mechanism exists, steps run sequentially in the main context.
Any harness The skill is self-contained: it documents every CLI command, every JSON schema, and every agent prompt. Even a harness with no subagent support can follow the instructions step by step.

Requirements: Python ≥ 3.12, alphaxiv-py. No API key needed for alphaXiv (public endpoints). Your harness handles LLM authentication.

Option B: Standalone CLI (Python package)

The repo also ships as a pip-installable Python package with its own CLI + web GUI (uses the Claude Agent SDK directly, not a coding harness).

pip install git+https://github.com/weathon/ideacheck.git
ideacheck check "a diffusion model that edits 3D scenes from natural-language instructions"
ideacheck check --idea-file my_idea.txt --no-open
ideacheck check --before 2023-05-01 "the core idea of the paper under test"

Each run writes ./ideacheck_runs/<timestamp>-<slug>/ containing report.json, papers/<id>.json, and report.html (opens automatically).

Web GUI:

ideacheck serve --port 8000
# open http://127.0.0.1:8000 , type your idea, hit "Check novelty"

CLI tools

The skill's agents call these via shell. They also work standalone:

python axv.py search "query" [--before YYYY-MM-DD]   # search papers
python axv.py topics "query"                          # discover vocabulary
python axv.py paper <arxiv_id>                        # paper metadata
python axv.py overview <arxiv_id>                     # structured overview (cached)
python axv.py fulltext <arxiv_id>                     # full extracted text
python axv.py similar <arxiv_id>                      # similar papers
python axv.py save-overview <json_file>               # cache a generated overview
python render.py <run_dir>                            # JSON → report.md + report.html

The report

The HTML report (interactive, D3-powered) shows:

  • "What you're actually proposing" — background-vs-proposal split + contribution-size bar
  • Novelty gauge (0–100) and verdict
  • "How your idea differs from prior work" — positioning section
  • Similarity network — force-directed graph (idea at center, papers sized/pulled by overlap)
  • Overlap bar chart
  • Recommended reading — ranked by value-to-your-paper, tagged with role
  • "Methods to consider adding" — in-depth per-method cards
  • Sortable paper table + click-through detail panel

Saving cost

This tool is token-intensive. Ways to reduce cost:

  1. Use a harness that supports local/cheap models. The standalone CLI supports --backend openai with any OpenAI-compatible endpoint (e.g. a local vLLM server):
    pip install "ideacheck[openai] @ git+https://github.com/weathon/ideacheck.git"
    ideacheck check --backend openai \
      --base-url http://127.0.0.1:8000/v1 \
      --model Qwen/Qwen3.6-35B-A3B-FP8 \
      "my research idea"
  2. Use --before to narrow scope. A time cutoff reduces the number of candidate papers the search returns.
  3. Overviews are cached. After the first run, ~/.ideacheck/overview_cache/ stores generated overviews — repeat runs on similar ideas reuse them.

Companion: paper-podcast

This repo also ships paper-podcast/ — a skill that turns a set of paper PDFs into a single-person, "read-paper-with-me" audio walkthrough. It fans out one subagent per section, budgets each section's length from a target runtime, and optionally renders the script to MP3 via OpenRouter Gemini TTS.

It pairs naturally with ideacheck: run ideacheck first to find the papers that matter for your idea (the Recommended reading list ranks them by value to your paper), then feed those PDFs to paper-podcast to get up to speed by listening instead of reading. ideacheck tells you what to read; paper-podcast makes it easy to actually go through it.

# 1. find the papers worth reading for your idea
/ideacheck a diffusion model that edits 3D scenes from natural-language instructions

# 2. turn the top recommended PDFs into a spoken walkthrough
#    (install paper-podcast/SKILL.md into your harness, then:)
/paper-podcast make a 20-minute expert walkthrough of these papers

Install it the same way as the ideacheck skill — drop paper-podcast/SKILL.md where your harness looks for skills. Audio rendering needs ffmpeg and an OpenRouter API key. See paper-podcast/SKILL.md for the full workflow.

Configuration (standalone CLI)

Models are set via environment variables:

Variable Used by Default
IDEACHECK_AGENT_MODEL orchestrator + query-planner + paper-analyst sonnet
IDEACHECK_OVERVIEW_MODEL overview-generator haiku
IDEACHECK_IMPROVE_MODEL method-advisor opus
IDEACHECK_AGENT_MODEL=opus ideacheck check "my idea"

License

MIT

About

No description, website, or topics provided.

Resources

Stars

7 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages