一键导入
arxiv-search
Search arXiv for papers by topic, author, or ID. Use when finding research, surveying recent publications, or looking up a specific paper.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search arXiv for papers by topic, author, or ID. Use when finding research, surveying recent publications, or looking up a specific paper.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Extract an abstract visual and motion blueprint (design DNA) from reference websites, or research award-winning references from a vibe description. Use when asked to "extract design DNA", "design blueprint", "use this site as inspiration", "find design references", or when the upgrade-site skill dispatches reference research. Observes and abstracts only — never implements.
Orchestrate a full website design upgrade — snapshot the current site, research references via design-dna, synthesize a direction, score the gaps, write a prioritized plan, dispatch implementation to motion-craft and build skills, and verify. Use when asked to "upgrade the site", "make it award-winning", "run the upgrade pipeline", or "audit the site design". Vague requests get a plan, not code changes.
Implement professional web animations in a target repo against an approved design blueprint or an explicit motion direction. Use when asked to "add animations", "improve the motion", "make it feel alive", "implement the motion plan", or when dispatched by the upgrade-site skill. Plans by default; modifies code only on explicit implement authority. For broad visual/reference research, see design-dna instead.
Interpret a Zhouyi (I Ching) hexagram or line in the de-mythologized, late–Western Zhou register of Edward Shaughnessy — original divination manual, not Confucian wisdom classic. Use when a user supplies a hexagram (number/name, optionally a specific line) and a question or wish, and wants a philological, historically-grounded reading rather than a cosmological or self-help one. Does NOT cast hexagrams.
Use when turning a long video (interview, podcast, talk, lecture, webinar) into short vertical clips for YouTube Shorts / Reels / TikTok. Transcribes the source, auto-suggests the most engaging self-contained soundbites, then cuts, crops to 9:16, and burns in subtitles. Cross-platform (macOS / Linux / Windows-WSL). Stops at a finished, upload-ready vertical mp4 — no account or upload CLI required.
Use when scheduling social copy or reviewing a batch of posts/drafts to measure sentence- and post-length variation — flags metronomic rhythm and same-size posts. For voice/tone rules, see your project's own style guide.
基于 SOC 职业分类
| name | arxiv-search |
| description | Search arXiv for papers by topic, author, or ID. Use when finding research, surveying recent publications, or looking up a specific paper. |
| user-invocable | true |
| argument-hint | <search query or arXiv ID, e.g. "transformer attention" or "2301.07041"> |
| metadata | {"version":"1.0.0"} |
Search the arXiv API for academic papers. No authentication required.
https://export.arxiv.org/api/querycurl -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=10&sortBy=submittedDate&sortOrder=descending"
Replace spaces in QUERY with +. For multi-word phrases, use %22phrase%22 for exact match.
ti: — titleau: — authorabs: — abstractcat: — category (e.g. cs.AI, cs.CL, stat.ML)all: — all fieldsCombine with AND, OR, ANDNOT:
# Papers about transformers in NLP
curl -sL "https://export.arxiv.org/api/query?search_query=ti:transformer+AND+cat:cs.CL&max_results=10&sortBy=submittedDate&sortOrder=descending"
# Papers by a specific author
curl -sL "https://export.arxiv.org/api/query?search_query=au:hinton&max_results=10&sortBy=submittedDate&sortOrder=descending"
curl -sL "https://export.arxiv.org/api/query?id_list=2301.07041"
Multiple IDs: id_list=2301.07041,2305.18290
Use start parameter:
# Results 11-20
curl -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&start=10&max_results=10&sortBy=submittedDate&sortOrder=descending"
The response is Atom XML. Extract these fields from each <entry>:
| Field | XML Path | Notes |
|---|---|---|
| Title | <title> | May contain line breaks — normalize |
| Authors | <author><name> | Multiple entries |
| Abstract | <summary> | May contain LaTeX |
| Published | <published> | ISO 8601 date |
| Updated | <updated> | Latest version date |
| arXiv ID | <id> | URL form, extract ID from path |
| PDF link | <link rel="related" title="pdf"> | Direct PDF URL |
| Categories | <category term="..."> | Primary + secondary |
| Comment | <arxiv:comment> | Page count, conference info |
Present results as a numbered list:
1. **Title of Paper** (arXiv:2301.07041)
Authors: First Author, Second Author, et al.
Published: 2023-01-17 | Categories: cs.CL, cs.AI
Abstract: First 2-3 sentences of the abstract...
PDF: https://arxiv.org/pdf/2301.07041
For single paper lookups, show the full abstract.
| Code | Field |
|---|---|
| cs.AI | Artificial Intelligence |
| cs.CL | Computation and Language (NLP) |
| cs.CV | Computer Vision |
| cs.LG | Machine Learning |
| cs.SE | Software Engineering |
| cs.CR | Cryptography and Security |
| stat.ML | Machine Learning (Stats) |
| math.OC | Optimization and Control |
| eess.SP | Signal Processing |
| quant-ph | Quantum Physics |
sortBy=submittedDate&sortOrder=descending for recent papersmax_results=10 as default, increase if user wants moreYYMM.NNNNN (e.g. 2301.07041)subject/YYMMNNN format (e.g. hep-th/9901001)https://arxiv.org/abs/IDhttps://arxiv.org/pdf/IDIf the user wants to read a paper's full content, fetch the PDF URL and use the Read tool on it, or use WebFetch on the abstract page for the HTML version.
For the abstract page (lighter weight):
curl -sL "https://arxiv.org/abs/2301.07041"