From openevidence-pack
Executes the OpenEvidence DeepConsult research synthesis workflow: submit a clinical question, poll for completion, and review structured findings with evidence levels and citations.
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 kriptoburak/jeremylongshore-claude-code-plugins-plus-skills --plugin openevidence-pack2plugins reuse this skill
First indexed Jul 17, 2026
Searches medical evidence, manages citations, and generates structured evidence reports with graded recommendations via OpenEvidence API.
Guides 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.
Runs a 13-agent deep research pipeline for rigorous academic work across 7 modes including systematic review with meta-analysis, fact-checking, and Socratic guided dialogue.