Install
openclaw skills install paper-digestGiven an arXiv ID or URL, fetch the paper, spawn sub-agents to read its key citations, and write an executive summary under.
openclaw skills install paper-digestarxiv_id: bare ID like 2305.11206 or full https://arxiv.org/abs/2305.11206 (Normalise: strip the URL prefix, extract bare ID.)Try HTML first: web.fetch https://arxiv.org/html/<arxiv_id>
paper_text.If the paper_text is retrieved then write the summary to ~/.openclaw/workspace/papers/<arxiv-id>.md.
Note: DO NOT DO THIS STEP INSIDE sub-agents
Within the main agent and from paper_text, identify at most 5 citations the paper most directly builds on. Prioritize:
For each citation, extract either the arXiv ID or the title. Then resolve to an arXiv URL:
https://arxiv.org/html/<id>https://arxiv.org/search/?query=<title>&searchtype=all and take the first match.Note: Ensure that the sub-agent related task is precise and concise so the sub-agent does not have to re-read the previously read SKILLs and files.
For each resolved citation:
~/.openclaw/workspace/papers/<arxiv-id>.md, if it does then skip and consider the sub-agent concluded.~/.openclaw/workspace/papers/<arxiv-id>.md.Check the citation summaries within ~/.openclaw/workspace/papers/ then utilize the main paper we are summarising with citation summaries and write a single markdown document in flowing prose (no bullet lists) to ~/.openclaw/workspace/digest/report_<arxiv-id>. Use this structure:
# <Title>
<What problem this solves and why it matters. Context and related references summary>
<What prior work missed and how this paper addresses that gap. Cite inline as [Author et al., YEAR](<arxiv_link>).
<Core method in plain terms>
<Headline result. How it differs from previous work.
<One limitation and one future direction>
<Detailed Ablations, benchmarks if present in this paper or cited references>
[Author et al., YEAR](<arxiv_or_url>)[Author et al., YEAR].