openevidence-core-workflow-a
Execute OpenEvidence primary workflow: Clinical Query & Decision Support. Trigger: "openevidence clinical query & decision support", "primary openevidence workflow".
What this skill does
# OpenEvidence — Evidence Search & Retrieval
## Overview
Primary workflow for OpenEvidence clinical evidence integration. Covers the core use
case: searching clinical literature with evidence-level filters, retrieving structured
citations with journal and year metadata, checking drug interactions against patient
context, and looking up specialty guidelines from major bodies (ACC/AHA, ESC, NICE).
Responses include confidence scores and evidence grading to support clinical decision
making. All queries support specialty filtering to narrow results to relevant domains.
## Instructions
### Step 1: Search Clinical Evidence
```typescript
const result = await client.query({
question: 'What is the recommended treatment for acute migraine in adults?',
context: 'emergency_department',
evidence_level: 'high',
specialty: 'neurology',
max_citations: 10,
});
console.log('Answer:', result.answer);
console.log(`Confidence: ${result.confidence} | Evidence grade: ${result.grade}`);
result.citations.forEach(c =>
console.log(` [${c.journal}] ${c.title} (${c.year}) — Level ${c.evidence_level}`)
);
```
### Step 2: Filter by Specialty and Date
```typescript
const recent = await client.search({
keywords: 'GLP-1 receptor agonist cardiovascular outcomes',
specialty: 'cardiology',
year_min: 2024,
evidence_level: 'meta-analysis',
limit: 20,
});
console.log(`Found ${recent.total} results`);
recent.results.forEach(r => console.log(` ${r.title} (${r.journal}, ${r.year})`));
```
### Step 3: Check Drug Interactions
```typescript
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}`)
);
if (interactions.some(i => i.severity === 'major')) {
console.warn('WARNING: Major interaction detected — review before prescribing');
}
```
### Step 4: Guideline Lookup
```typescript
const guidelines = await client.guidelines.search({
condition: 'hypertension',
source: ['ACC/AHA', 'ESC', 'NICE'],
year_min: 2023,
});
guidelines.forEach(g =>
console.log(`${g.source}: ${g.title} (${g.year}) — ${g.recommendation_class}`)
);
```
## Error Handling
| Issue | Cause | Fix |
|-------|-------|-----|
| `401 Unauthorized` | Invalid API key | Verify key in `Authorization: Bearer` header |
| `404 Not Found` | Unknown specialty code | Use standard specialty slugs from `/specialties` |
| `422 Validation` | Conflicting filter params | Remove mutually exclusive filters |
| `429 Rate Limited` | Exceeds 30 queries/min | Back off per `Retry-After` header |
| Empty citations array | Question too narrow | Broaden search terms or lower evidence level |
## Output
A successful run returns evidence-backed answers with citations, drug interaction
severity assessments, and guideline recommendations. Each response includes a
confidence score and evidence grade for clinical decision support.
## Resources
- [OpenEvidence Platform](https://www.openevidence.com)
- [OpenEvidence API Documentation](https://docs.openevidence.com)
## Next Steps
Continue with `openevidence-core-workflow-b` for patient case analysis and reporting.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.