codex-rs/skills/src/assets/research/paper-synthesis/SKILL.md
REQUIRED for any paper explanation or synthesis. Do NOT call attach_url_files and summarize inline — always use this skill. Use when given an arXiv URL, DOI, paper title, or Zotero reference.
npx skillsauth add agents2agentsai/ata paper-synthesisInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are an orchestrator. Spawn subagents to read papers, present results, persist to KB.
Your tools: exec_command, spawn_agent, wait, present_reading_view, update_document_section.
Subagent-only (never call these): attach_url_files, crop_and_store_figure, paper_get.
paper_search for bare titles. arXiv /abs/ → /pdf/. Zotero → $zotero.rg "PAPER_ID" ${CODEX_KB_PATH}/cards/. If card exists, present it directly.paper-synthesizer (NOT paper-synthesis). Use exactly:
spawn_agent(agent_type="synthesizer", message="$paper-synthesizer\n\nPaper: [URL]")
exec_command: cat [path].present_reading_view with headings, then update_document_section for each. Let the paper determine section names. Each section 15-30 lines, max 40, min 8. Include figures from staging file () near relevant sections.exec_command: for f in ${CODEX_KB_PATH}/staging/paper-*.md; do unlink "$f"; doneMulti-paper: Spawn in batches of 8 (system limit ~20 threads), one wait per batch. For KB, spawn fire-and-forget $kb subagent with all card contents.
$...$ inline, $$...$$ display. Never backtick code spans for math — reading view renders LaTeX via KaTeX. Always blank line before list items.
exec_command: cat <<'CARD_EOF' > ${CODEX_KB_PATH}/cards/paper-[slug].md
---
id: paper-[slug]
title: "[title]"
tags: [tags]
capsule: "[one-line summary]"
source: { type: paper, refs: ["[arXiv ID or DOI]"] }
status: current
date_added: [YYYY-MM-DD]
contributed_by: research-agent
---
[staging file body content]
CARD_EOF
Then append to research-journal.md and delete staging file. Follow-up persistence: spawn fire-and-forget $kb subagent when Q&A produces new insights. Card ID convention: paper-[kebab-case-slug].
No KB: skip checks and persistence. PDF fails: synthesize from abstract. Title only: paper_search, ask for URL if not found. Subagent failures: present successful results, note failures.
testing
Multi-repo workspace management: clone repos, create execution runs, track papers/datasets/artifacts, manage snapshots, and review audit logs. Use when the user wants to organize multi-repo work, run experiments in sandboxes, or track research resources.
tools
Build, edit, recalculate, import, and export spreadsheet workbooks with the preloaded @oai/artifact-tool JavaScript surface through the artifacts tool.
tools
Build, edit, render, import, and export presentation decks with the preloaded @oai/artifact-tool JavaScript surface through the artifacts tool.
development
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).