skills/43-wentorai-research-plugins/skills/literature/fulltext/open-access-guide/SKILL.md
Navigate open access policies, repositories, and legal full-text retrieval me...
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research open-access-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A skill for understanding open access publishing models, locating free full-text articles legally, and navigating self-archiving policies. Essential for researchers at institutions with limited journal subscriptions.
| Type | Description | Cost to Author | Reader Access | |------|------------|----------------|---------------| | Gold OA | Published OA by journal (APC paid) | $1,000-$11,000 | Immediate, permanent | | Green OA | Self-archived preprint/postprint | Free | After embargo (0-24 months) | | Diamond/Platinum OA | Journal charges no APC | Free | Immediate, permanent | | Bronze OA | Free to read on publisher site | Free | No reuse license, may be temporary | | Hybrid OA | OA article in subscription journal | $2,000-$5,000 | Immediate for that article |
import requests
def check_oa_status(doi: str) -> dict:
"""
Check open access availability using the Unpaywall API.
Args:
doi: DOI of the paper (e.g., '10.1038/s41586-021-03819-2')
Returns:
OA status and best available link
"""
email = "[email protected]" # Required by Unpaywall API
url = f"https://api.unpaywall.org/v2/{doi}?email={email}"
response = requests.get(url)
if response.status_code != 200:
return {'error': f'API returned status {response.status_code}'}
data = response.json()
# Find best OA location
best_location = data.get('best_oa_location', {})
return {
'doi': doi,
'title': data.get('title', ''),
'is_oa': data.get('is_oa', False),
'oa_status': data.get('oa_status', 'closed'),
'journal_is_oa': data.get('journal_is_oa', False),
'best_oa_url': best_location.get('url', None) if best_location else None,
'version': best_location.get('version', None) if best_location else None,
'license': best_location.get('license', None) if best_location else None,
'all_locations': len(data.get('oa_locations', []))
}
# Example
result = check_oa_status('10.1038/s41586-021-03819-2')
if result['is_oa']:
print(f"OA available: {result['best_oa_url']}")
else:
print("Not openly available -- check Green OA options below")
| Source | Type | Coverage | URL | |--------|------|----------|-----| | PubMed Central (PMC) | Repository | Biomedical + life sciences | ncbi.nlm.nih.gov/pmc | | arXiv | Preprint server | Physics, CS, Math, Stats | arxiv.org | | bioRxiv/medRxiv | Preprint server | Biology, medicine | biorxiv.org / medrxiv.org | | SSRN | Preprint server | Social sciences, law, economics | ssrn.com | | Zenodo | Repository | All disciplines | zenodo.org | | CORE | Aggregator | 300M+ papers from repositories | core.ac.uk | | OpenAlex | Search + OA links | Cross-disciplinary | openalex.org | | BASE (Bielefeld) | Aggregator | 400M+ documents | base-search.net |
def batch_oa_lookup(dois: list[str]) -> list[dict]:
"""
Check OA status for a batch of DOIs.
Unpaywall supports up to 100,000 DOIs per day.
"""
results = []
for doi in dois:
status = check_oa_status(doi)
results.append(status)
# Summary statistics
total = len(results)
oa_count = sum(1 for r in results if r.get('is_oa', False))
print(f"OA availability: {oa_count}/{total} ({oa_count/total*100:.1f}%)")
# Group by OA status
by_status = {}
for r in results:
status = r.get('oa_status', 'unknown')
by_status.setdefault(status, []).append(r)
for status, papers in by_status.items():
print(f" {status}: {len(papers)} papers")
return results
Use SHERPA/RoMEO to determine what you can self-archive:
def check_sherpa_romeo(issn: str, api_key: str) -> dict:
"""
Check journal self-archiving policy via SHERPA/RoMEO.
Args:
issn: Journal ISSN
api_key: SHERPA/RoMEO API key
"""
url = f"https://v2.sherpa.ac.uk/cgi/retrieve/by_id?item-type=publication&format=Json&api-key={api_key}&filter=[[%22issn%22,%22equals%22,%22{issn}%22]]"
response = requests.get(url)
data = response.json()
if not data.get('items'):
return {'error': 'Journal not found'}
journal = data['items'][0]
policies = journal.get('publisher_policy', [])
results = {
'journal': journal.get('title', [{}])[0].get('title', ''),
'publisher': journal.get('publishers', [{}])[0].get('publisher', {}).get('name', ''),
'policies': []
}
for policy in policies:
for permitted in policy.get('permitted_oa', []):
results['policies'].append({
'version': permitted.get('article_version', ''),
'location': permitted.get('location', {}).get('location', []),
'conditions': permitted.get('conditions', []),
'embargo': permitted.get('embargo', {}).get('amount', 0),
'license': permitted.get('license', [])
})
return results
Most funders (NIH, UKRI, ERC) require deposit of at least the postprint in a repository. Always check your specific funder mandate and journal policy before self-archiving.
When depositing in your institutional repository:
This maximizes discoverability while respecting publisher agreements.
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
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.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.