用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill crossref-api命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | crossref-api |
| description | Resolve DOIs and retrieve publication metadata from CrossRef registry |
| metadata | {"openclaw":{"emoji":"🔍","category":"literature","subcategory":"metadata","keywords":["DOI resolution","digital object identifier","CrossRef","citation statistics","citation tracking"],"source":"https://api.crossref.org"}} |
CrossRef is the official DOI registration agency for scholarly publishing, maintaining metadata for over 150 million content items including journal articles, books, conference proceedings, preprints, and datasets. The CrossRef REST API provides free, open access to this metadata, making it the authoritative source for resolving Digital Object Identifiers (DOIs) and retrieving standardized publication records.
Publishers deposit metadata with CrossRef when they register DOIs for their content. This makes the CrossRef API a reliable source for bibliographic information, citation counts, licensing data, funder acknowledgments, and links to full-text resources. The API is used extensively in reference management, citation analysis, and research information systems.
The API is free and requires no authentication. Users who include a mailto parameter in their requests are placed in the "polite pool" which provides faster and more reliable service.
No authentication required. For best performance, include your email to access the polite pool:
https://api.crossref.org/works?mailto=your@email.com
Users in the polite pool receive prioritized responses and are not subject to the same rate limiting as anonymous users. CrossRef Plus subscribers get additional benefits including guaranteed uptime and higher throughput.
GET https://api.crossref.org/works| Param | Type | Required | Description |
|---|---|---|---|
| query | string | No | Free-text query across all metadata fields |
| query.title | string | No | Search specifically in titles |
| query.author | string | No | Search specifically by author name |
| filter | string | No | Structured filters (e.g., from-pub-date:2024, type:journal-article) |
| sort | string | No | Sort field: relevance, published, is-referenced-by-count |
| order | string | No | asc or desc |
| rows | integer | No | Results per page (default: 20, max: 1000) |
| offset | integer | No | Pagination offset |
| mailto | string | No | Email for polite pool |
curl "https://api.crossref.org/works?query.title=attention+is+all+you+need&rows=5&mailto=user@example.com"
message.items array containing DOI, title, author, published, is-referenced-by-count, reference, license, and link fields.GET https://api.crossref.org/works/{doi}| Param | Type | Required | Description |
|---|---|---|---|
| doi | string | Yes | The DOI to resolve (URL path parameter) |
| mailto | string | No | Email for polite pool |
curl "https://api.crossref.org/works/10.1038/s41586-021-03819-2?mailto=user@example.com"
GET https://api.crossref.org/members| Param | Type | Required | Description |
|---|---|---|---|
| query | string | No | Publisher name search |
| rows | integer | No | Results per page |
curl "https://api.crossref.org/members?query=springer&rows=5&mailto=user@example.com"
GET https://api.crossref.org/journals| Param | Type | Required | Description |
|---|---|---|---|
| query | string | No | Journal title search |
| rows | integer | No | Results per page |
curl "https://api.crossref.org/journals?query=nature+machine+intelligence&rows=5&mailto=user@example.com"
Anonymous users: no hard limit but throttled under load. Polite pool users (with mailto): prioritized access with no published rate cap. CrossRef Plus subscribers: guaranteed uptime with SLA. The API returns HTTP 429 when overloaded. Use exponential backoff and always include mailto for production applications. For bulk metadata retrieval, CrossRef provides database snapshots and the Public Data File.
Resolve a list of DOIs to get standardized metadata:
# Single DOI resolution with full metadata
curl "https://api.crossref.org/works/10.1145/3292500.3330672?mailto=user@example.com"
Filter by publication date and sort by citation count:
curl "https://api.crossref.org/works?filter=from-pub-date:2023,type:journal-article&query=machine+learning&sort=is-referenced-by-count&order=desc&rows=20&mailto=user@example.com"
Monitor citation counts for a specific DOI over time:
curl "https://api.crossref.org/works/10.1038/s41586-021-03819-2?mailto=user@example.com" | jq '.message["is-referenced-by-count"]'