Search and screen arXiv papers for a target field and time window, filter by institution allowlists, then rank open-source papers by GitHub stars and non-open-source papers by citation count. Use when Codex needs to retrieve recent arXiv papers for a field such as spatial intelligence, world model, or agents, and narrow them to papers from top universities, major AI/internet companies, or field-specific leading institutions.
Use this skill when the user wants to search arXiv for a field and a recent time window, then filter and rank papers by institution and impact signals.
Normalize the user request into two required parameters:
field: a field name such as spatial intelligence, agent, world modelwindow: a recent time window such as 7d, 14d, 30d, 90d, a Chinese phrase like 一个月以内, or a specific month such as 2026-03, 2026年3月, 三月份Optional parameters:
max_results: how many arXiv candidates to fetch before filtering, default 100limit: maximum number of ranked papers to keep in outputs, default 20outdir: where to write outputs; default to a subfolder under ./daily_paper/arxiv_searchreferences/field_profiles.json.qs100_universities_snapshotmajor_ai_and_internet_companiesresults.jsonresults.mdcited_by_count.Abstract or Introduction.results.json or results.md paths while a long screening run is still in progress.references/institution_allowlists.json as a curated snapshot. Update it periodically.Prefer writing outputs to:
./daily_paper/arxiv_search/<field-slug>_<window>/
The markdown output should include:
references/field_profiles.json: keyword profiles by fieldreferences/institution_allowlists.json: QS100 university snapshot, major companies, field-specific institution allowlistsscripts/search_and_rank_arxiv.py: end-to-end search, enrich, filter, and rank scriptpython3 ./skills/arxiv-paper-screener/scripts/search_and_rank_arxiv.py \
--field "spatial intelligence" \
--window "2026-03" \
--limit 20 \
--outdir ./daily_paper/arxiv_search
Before finishing: