From openevidence-pack
Executes OpenEvidence workflow: clinical queries with evidence citations, drug interaction checks, and guideline lookups for healthcare decision support.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-core-workflow-aThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Primary workflow for OpenEvidence integration.
Primary workflow for OpenEvidence integration.
const result = await client.query({
question: 'What is the recommended treatment for acute migraine in adults?',
context: 'emergency_department',
evidence_level: 'high', // Filter by evidence quality
max_citations: 10
});
console.log('Answer:', result.answer);
console.log('Confidence:', result.confidence);
result.citations.forEach(c =>
console.log(` [${c.journal}] ${c.title} (${c.year}) — ${c.evidence_level}`)
);
const interactions = await client.interactions.check({
medications: ['metformin', 'lisinopril', 'atorvastatin'],
patient_context: { age: 65, conditions: ['diabetes', 'hypertension'] }
});
interactions.forEach(i =>
console.log(`${i.drug1} + ${i.drug2}: ${i.severity} — ${i.description}`)
);
const guidelines = await client.guidelines.search({
condition: 'hypertension',
source: ['ACC/AHA', 'ESC'],
year_min: 2023
});
guidelines.forEach(g =>
console.log(`${g.source}: ${g.title} (${g.year})`)
);
See openevidence-core-workflow-b.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packCreates minimal TypeScript examples for OpenEvidence API: clinical queries, drug interactions, guideline lookups. For healthcare SaaS integrations.
Searches 12+ authoritative clinical guideline sources (NICE, WHO, NCCN, AHA, ADA, SIGN, USPSTF, IDSA, ESMO, ESC, EASL) for evidence-graded treatment recommendations, dosing protocols, and screening guidance with source prioritization.
Provides clinical pharmacy expertise for medication therapy, drug information, dosing, interactions, guidelines, formulary access, and regulatory compliance. Drafts clinical content for pharmacist review.