From openevidence-pack
Executes OpenEvidence DeepConsult workflow: submits medical research queries, polls for comprehensive synthesis, reviews summaries, key findings, and references. HIPAA-compliant for healthcare.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Secondary workflow complementing the primary workflow.
Secondary workflow complementing the primary workflow.
// DeepConsult: comprehensive research synthesis (async, takes minutes)
const consult = await client.deepConsult.create({
question: 'What is the current evidence for GLP-1 agonists in heart failure with preserved ejection fraction?',
depth: 'comprehensive', // brief | standard | comprehensive
include_meta_analyses: true,
year_range: { min: 2020 }
});
console.log(`Consult ID: ${consult.id} | Status: ${consult.status}`);
let result;
while (true) {
result = await client.deepConsult.get(consult.id);
if (result.status === 'completed') break;
console.log(`Status: ${result.status} (${result.progress}%)`);
await new Promise(r => setTimeout(r, 10_000));
}
console.log('Summary:', result.summary);
console.log('Key Findings:', result.key_findings.length);
result.key_findings.forEach(f =>
console.log(` - ${f.finding} [${f.evidence_level}] (${f.citations.length} refs)`)
);
console.log('Total references:', result.references.length);
See openevidence-common-errors.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packGuides clinical and health science research through PICOT question formulation, evidence hierarchy assessment, bias evaluation (Cochrane RoB 2, ROBINS-I), outcome prioritization, and GRADE certainty rating.
Executes OpenEvidence workflow: clinical queries with evidence citations, drug interaction checks, and guideline lookups for healthcare decision support.
Runs a 13-agent pipeline for rigorous academic research on any topic. Supports 7 modes including full research, lit review, systematic review with meta-analysis, fact-check, and Socratic dialogue.