research-searchlisted
Install: claude install-skill atrislabs/atris
# /research — Fast Research Sweep
Find the latest research on a topic, score it for relevance, extract what you can BUILD with it, store the best finds.
## Usage
```
/research <topic> # Sweep a topic, show top results
/research <topic> --ingest # Sweep + store best finds to wiki
/research <topic> --deep <arxiv-url> # Deep-read a specific paper
/research --sweep # Run all topics from program.md
/research --trending # What's hot this week in your areas
```
## On invoke
### Step 0: Load the research program
Read `atris/skills/research/program.md` for:
- Active research topics (what to search for)
- Scoring criteria (what makes a paper relevant)
- Date window (default: last 6 months)
- Prior results from `atris/skills/research/results.tsv`
### Step 1: Multi-source search
For the given topic, search ALL of these sources in parallel (use Agent tool for parallelism):
**Source A — arxiv API**
Run via Bash:
```bash
python3 atris/skills/research/arxiv_search.py "<topic>" --after 2025-10-01 --limit 20
```
Returns JSON array of papers with title, authors, abstract, date, url, categories.
**Source B — Semantic Scholar API**
Run via Bash:
```bash
python3 atris/skills/research/scholar_search.py "<topic>" --after 2025-10-01 --limit 20
```
Returns JSON array with title, authors, abstract, date, url, citation count, venue.
**Source C — Web search**
Use WebSearch tool: `"<topic>" site:arxiv.org OR site:github.com 20