From openevidence-pack
Creates minimal TypeScript examples for OpenEvidence API: clinical queries, drug interactions, guideline lookups. For healthcare SaaS integrations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-hello-worldThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Minimal working examples demonstrating core OpenEvidence API functionality.
Minimal working examples demonstrating core OpenEvidence API functionality.
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})`)
);
| Error | Cause | Solution |
|---|---|---|
| Auth error | Invalid credentials | Check OPENEVIDENCE_API_KEY |
| Not found | Invalid endpoint | Verify API URL |
| Rate limit | Too many requests | Implement backoff |
See openevidence-local-dev-loop.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packExecutes OpenEvidence workflow: clinical queries with evidence citations, drug interaction checks, and guideline lookups for healthcare decision support.
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.