用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill arxiv-batch-reporting命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
基于 SOC 职业分类
正在显示 SKILL.md
| name | arxiv-batch-reporting |
| description | Batch search and report generation from arXiv preprint repository |
| metadata | {"openclaw":{"emoji":"📊","category":"literature","subcategory":"search","keywords":["arxiv","batch search","preprint","report generation","literature monitoring","research trends"],"source":"wentor-research-plugins"}} |
Keeping up with the flood of new preprints on arXiv is one of the most persistent challenges in fast-moving fields like machine learning, physics, mathematics, and computer science. The arXiv Batch Reporting skill provides a systematic approach to searching, filtering, and generating structured reports from arXiv at scale.
Unlike ad-hoc manual searches, this skill enables researchers to define persistent query profiles, run batch searches across date ranges, and produce formatted reports that highlight the most relevant papers. It is particularly useful for weekly or monthly literature surveillance, lab meeting preparation, and trend analysis across subfields.
The skill leverages the arXiv API and supports advanced query syntax, category filtering, and result ranking by relevance or recency. Reports can be generated in Markdown, HTML, or CSV formats for integration into existing workflows.
Define your search profiles as structured configurations. Each profile specifies the search terms, category filters, date range, and output preferences:
profile_name: "transformer-architectures-weekly"
queries:
- "ti:transformer AND abs:attention mechanism"
- "ti:vision transformer"
- "abs:efficient transformer AND cat:cs.LG"
categories:
- cs.LG
- cs.CL
- cs.CV
date_range: "last_7_days"
max_results: 100
sort_by: "submittedDate"
sort_order: "descending"
The arXiv API supports field-specific searches:
ti: — Search in titleabs: — Search in abstractau: — Search by authorcat: — Filter by category (e.g., cs.AI, math.PR, physics.comp-ph)AND, OR, ANDNOTExample queries:
abs:generative adversarial AND cat:cs.CVau:bengio AND ti:deep learningabs:reinforcement learning ANDNOT ti:surveyThe arXiv API enforces rate limits. Follow these guidelines:
start and max_results parameters (max 2000 per request)After collecting batch results, generate a report with the following structure:
# arXiv Batch Report: [Profile Name]
**Date range:** [start] to [end]
**Total results:** [N] papers
**Generated:** [timestamp]
## Highlights (Top 10 by Relevance)
| # | Title | Authors | Category | Date |
|---|-------|---------|----------|------|
| 1 | [Title](arxiv-link) | First Author et al. | cs.LG | 2026-03-08 |
## Category Breakdown
- cs.LG: 45 papers
- cs.CL: 23 papers
- cs.CV: 18 papers
## Keyword Frequency
- "transformer": 38 mentions
- "attention": 29 mentions
- "efficient": 15 mentions
## Full Results
[Expandable table with all papers]
After retrieving raw results, apply post-processing filters to surface the most relevant papers:
For ongoing literature surveillance, automate your batch reports:
Store all generated reports in a versioned directory structure for longitudinal trend analysis:
reports/
transformer-architectures-weekly/
2026-03-03.md
2026-03-10.md
...