基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill arxiv-api命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
| name | arxiv-api |
| description | Search and retrieve preprints from the arXiv open-access repository |
| metadata | {"openclaw":{"emoji":"🔍","category":"literature","subcategory":"search","keywords":["academic database search","literature search","scholarly database","semantic search","preprint server"],"source":"https://info.arxiv.org/help/api/"}} |
The arXiv API provides programmatic access to the arXiv preprint repository, one of the most important open-access archives in the sciences. Founded in 1991, arXiv hosts over 2.4 million scholarly articles across physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering and systems science, and economics.
Researchers use the arXiv API to build literature review tools, monitor new submissions in their fields, and integrate preprint search into automated research workflows. The API returns results in Atom XML format with rich metadata including titles, authors, abstracts, categories, DOIs, and journal references.
The API is free to use with no authentication required. It supports complex boolean queries across multiple fields and allows sorting by relevance, submission date, or last-updated date.
No authentication required. The arXiv API is fully open. However, users must respect the rate limit of 3 requests per second. Excessive usage may result in temporary IP-based blocking. Including a descriptive User-Agent header is considered good practice.
search_arxiv ToolIMPORTANT: When calling the search_arxiv tool, use parameter name query (NOT
search_query). The raw API uses search_query, but the tool wrapper accepts query.
search_arxiv({ query: "ti:transformer AND cat:cs.CL", sort_by: "submittedDate" })
GET http://export.arxiv.org/api/querysearch_arxiv tool wraps these automatically):
| Param | Type | Required | Description |
|---|---|---|---|
| search_query | string | Yes | Query string using arXiv field prefixes (ti, au, abs, cat, id) |
| id_list | string | No | Comma-separated arXiv IDs for direct lookup |
| start | integer | No | Starting index for pagination (default: 0) |
| max_results | integer | No | Number of results to return (default: 10, max: 30000) |
| sortBy | string | No | Sort field: relevance, lastUpdatedDate, submittedDate |
| sortOrder | string | No | ascending or descending |
curl "http://export.arxiv.org/api/query?search_query=au:hinton+AND+ti:deep+learning&start=0&max_results=5&sortBy=submittedDate&sortOrder=descending"
<entry> elements containing <title>, <summary>, <author>, <arxiv:primary_category>, <published>, <updated>, and <link> fields.GET http://export.arxiv.org/api/query| Param | Type | Required | Description |
|---|---|---|---|
| id_list | string | Yes | Comma-separated arXiv IDs (e.g., 2301.00001,2301.00002) |
| max_results | integer | No | Number of results to return |
curl "http://export.arxiv.org/api/query?id_list=2301.07041&max_results=1"
The arXiv API enforces a rate limit of 3 requests per second. There is no daily request cap, but automated bulk downloading should be done using the arXiv bulk data access options instead of the API. If you exceed the rate limit, you will receive HTTP 503 responses. Implement exponential backoff and a minimum 3-second delay between requests to avoid being temporarily blocked.
Track daily submissions in a specific arXiv category by querying with a date range and category filter:
curl "http://export.arxiv.org/api/query?search_query=cat:cs.AI+AND+submittedDate:[202603010000+TO+202603092359]&sortBy=submittedDate&sortOrder=descending&max_results=50"
Search across titles and abstracts for specific research topics:
curl "http://export.arxiv.org/api/query?search_query=(ti:transformer+OR+abs:transformer)+AND+cat:cs.CL&max_results=20&sortBy=relevance"
Retrieve metadata for multiple known papers in a single request:
curl "http://export.arxiv.org/api/query?id_list=2301.07041,2302.13971,2303.08774&max_results=3"