skills/43-wentorai-research-plugins/skills/literature/search/openaire-api/SKILL.md
Search EU-funded research outputs via the OpenAIRE Graph API
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research openaire-apiInstall 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.
OpenAIRE is the European Open Science infrastructure providing programmatic access to millions of research outputs — publications, datasets, software, and other research products — linked to EU-funded projects, organizations, and researchers. The Graph API is free, requires no authentication, and returns JSON or XML. Uniquely valuable for discovering EU/Horizon-funded research and tracing connections between research outputs, projects, and institutions.
https://api.openaire.eu
# Search by keywords
curl "https://api.openaire.eu/search/publications?keywords=climate+change+adaptation&format=json&size=10"
# Filter by open access
curl "https://api.openaire.eu/search/publications?keywords=machine+learning&openaccessonly=true&format=json"
# Filter by date
curl "https://api.openaire.eu/search/publications?keywords=CRISPR&fromDateAccepted=2023-01-01&toDateAccepted=2026-12-31&format=json"
# Filter by EU project
curl "https://api.openaire.eu/search/publications?projectID=corda__h2020::123456&format=json"
# Search by DOI
curl "https://api.openaire.eu/search/publications?doi=10.1038/s41586-023-05881-4&format=json"
# Find research datasets
curl "https://api.openaire.eu/search/datasets?keywords=genomics+sequencing&format=json&size=20"
# Open access datasets only
curl "https://api.openaire.eu/search/datasets?keywords=ocean+temperature&openaccessonly=true&format=json"
# Search EU-funded projects
curl "https://api.openaire.eu/search/projects?keywords=artificial+intelligence&funder=EC&format=json"
# Horizon 2020 projects
curl "https://api.openaire.eu/search/projects?keywords=renewable+energy&fundingStream=H2020&format=json"
# Horizon Europe projects
curl "https://api.openaire.eu/search/projects?keywords=quantum+computing&fundingStream=HE&format=json"
| Parameter | Description | Example |
|-----------|-------------|---------|
| keywords | Free-text search | keywords=deep+learning |
| doi | Search by DOI | doi=10.1234/example |
| openaccessonly | Open access filter | openaccessonly=true |
| fromDateAccepted | Start date | fromDateAccepted=2023-01-01 |
| toDateAccepted | End date | toDateAccepted=2026-12-31 |
| funder | Funding agency | funder=EC (European Commission) |
| fundingStream | Funding program | fundingStream=H2020 |
| format | Response format | format=json or format=xml |
| size | Results per page | size=50 (max 100) |
| page | Page number | page=2 |
| sortBy | Sort order | sortBy=resultdateofacceptance,descending |
import requests
BASE_URL = "https://api.openaire.eu"
def search_publications(keywords: str, open_access: bool = False,
from_date: str = None, size: int = 20) -> list:
"""Search OpenAIRE publications."""
params = {
"keywords": keywords,
"format": "json",
"size": size
}
if open_access:
params["openaccessonly"] = "true"
if from_date:
params["fromDateAccepted"] = from_date
resp = requests.get(f"{BASE_URL}/search/publications", params=params)
resp.raise_for_status()
data = resp.json()
results = []
for item in data.get("response", {}).get("results", {}).get("result", []):
metadata = item.get("metadata", {}).get("oaf:entity", {}).get("oaf:result", {})
title = metadata.get("title", {})
if isinstance(title, dict):
title = title.get("$", "")
results.append({
"title": title,
"doi": metadata.get("pid", [{}])[0].get("$", "") if metadata.get("pid") else None,
"date": metadata.get("dateofacceptance", {}).get("$", ""),
"description": metadata.get("description", {}).get("$", "")[:300] if metadata.get("description") else None
})
return results
# Example: find recent open access papers on climate
pubs = search_publications("climate resilience urban", open_access=True, from_date="2024-01-01")
for p in pubs:
print(f"[{p['date']}] {p['title']}")
development
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.