Agent Skills: OpenEvidence — Clinical Query & Decision Support

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/openevidence-core-workflow-a

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/openevidence-pack/skills/openevidence-core-workflow-a

Skill Files

Browse the full folder contents for openevidence-core-workflow-a.

Download Skill

Loading file tree…

plugins/saas-packs/openevidence-pack/skills/openevidence-core-workflow-a/SKILL.md

Skill Metadata

Name
openevidence-core-workflow-a
Description
|

OpenEvidence — Clinical Query & Decision Support

Overview

Primary workflow for OpenEvidence integration.

Instructions

Step 1: Clinical Query

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}`)
);

Step 2: Drug Interaction Check

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}`)
);

Step 3: Guideline Lookup

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})`)
);

Resources

Next Steps

See openevidence-core-workflow-b.