4/9/2026 at 7:18:36 PM
I've been making skills from arxiv papers for a while. I have a one for multi-object tracking for example. It has a SKILL.md describing all important papers (over 30) on the subject and a folder with each paper's full content as reStructuredText.To feed Arxiv papers to LLMs I found that RST gives the best token count/fidelity ratio. Markdown lacks precision. LateX is too verbose. I have a script with the paper's urls, name and date that downloads the LateX zips from Arxiv, extracts it, transforms them to RST and then adds them to the right folder. Then I ask a LLM to make a summary from the full text, then I give other LLMs the full paper again with the summary and ask them to improve on and and proofread them. While this goes on I read the papers myself and at the end I read the summaries and if I approve them I add it to the skill. I also add for each paper info on how well the algorithms described do in common benchmarks.
I highly recommend doing something similar if you're working in a cutting-edge domain. Also I'd like to know if anyone has recommendations to improve what I do.
by simlevesque
4/9/2026 at 7:43:40 PM
I've been working on ctoth/research-papers-plugin, the pipeline to actually get LLMs to extract the notes. I really like your insight re RST over Markdown! It sounds like we're working on similar stuff and I'll absolutely reach out :)by ctoth
4/10/2026 at 3:27:12 AM
Another format that's worth investigating is Asciidoc. It supports the richness of Docbook XML but has fewer quirks than rST in my eyes.by timClicks
4/9/2026 at 7:51:42 PM
I'm gonna look at your plugin. My email is in my profile.Honestly I think that Markdown with LateX code blocks would be the most efficient representation but when doing it with Pandoc I kept having issues with loss of information and sometimes even syntax error.
by simlevesque
4/9/2026 at 7:34:39 PM
This sounds like it would work, but honestly if you've already read all 30 papers fully, what do you still need to llm to do for you? Just the boilerplate?by paulluuk
4/9/2026 at 7:41:40 PM
I'm trying to make a go library that implements a wide ranges of MOT algorithms and can gather metrics for all of them.Reading all the papers once isn't the same as this. I find it very useful.
I can ask an LLM to do the basic implementations, then I can refine them (make the code better, faster, cut on memory use), then I can ask the LLM if I'm still implementing the algorithms as they're described in the paper.
by simlevesque
4/10/2026 at 2:28:22 AM
> then I can ask the LLM if I'm still implementing the algorithms as they're described in the paper.Unit testing would save on tokens... unit testing is perfect for validating refactors, or when re-writing a project from one language to the next, build unit tests first.
by giancarlostoro
4/10/2026 at 12:48:08 AM
It lets you filter out interesting papers more quickly.by gessha
4/9/2026 at 7:26:18 PM
sounds similar to "LLM Knowledge Bases" https://xcancel.com/karpathy/status/2039805659525644595by alex000kim
4/9/2026 at 11:23:58 PM
[dead]by j_gonzalez
4/10/2026 at 12:49:33 AM
I’ve been meaning to build something similar. I will report back once I have something to show.Thanks for sharing!
by gessha
4/9/2026 at 8:06:13 PM
Does that even fit in the context? It seems like 30 papers worth of content would just overflow it.by satvikpendem
4/9/2026 at 8:17:56 PM
For each paper, have your agent extract a three sentence description, create a description.md, then concat those with the paper names into an INDEX.md which it should consult to find appropriate papers. Also: have your agent tag papers, then autogenerate your tagged collection on the filesystem. Then you get nice things like https://github.com/ctoth/Qlatt/tree/master/papers/taggedThen something in your {CLAUDE,AGENTS}.md that says: when working on something with relevant context supplied by papers, read the papers before doing the work. You can find all papers plus their descriptions in ./papers/INDEX.md and papers by tag in ./papers/tagged
by ctoth
4/9/2026 at 7:34:36 PM
What is RST?by MrLeap
4/9/2026 at 7:36:50 PM
reStructuredText: https://www.sphinx-doc.org/en/master/usage/restructuredtext/...by simlevesque
4/9/2026 at 9:31:37 PM
[dead]by danelliot
4/10/2026 at 12:40:28 AM
[dead]by tayk47999