openevidence-install-auth
SolidInstall and configure OpenEvidence SDK/API authentication. Use when setting up a new OpenEvidence integration. Trigger: "install openevidence", "setup openevidence", "openevidence auth".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 97/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# OpenEvidence Install & Auth
## Overview
Set up OpenEvidence Medical AI API for clinical decision support and evidence-based queries.
## Prerequisites
- OpenEvidence account and API access
- API key/credentials from OpenEvidence dashboard
- Node.js 18+ or Python 3.8+
## Instructions
### Step 1: Install SDK
```bash
npm install @openevidence/sdk
# API key from OpenEvidence developer portal
```
### Step 2: Configure Authentication
```bash
export OPENEVIDENCE_API_KEY="your-api-key-here"
echo 'OPENEVIDENCE_API_KEY=your-api-key' >> .env
```
### Step 3: Verify Connection (TypeScript)
```typescript
import { OpenEvidenceClient } from '@openevidence/sdk';
const client = new OpenEvidenceClient({
apiKey: process.env.OPENEVIDENCE_API_KEY,
organization: process.env.OPENEVIDENCE_ORG_ID
});
const result = await client.query({ question: 'What are first-line treatments for Type 2 diabetes?' });
console.log(`Answer: ${result.answer.substring(0, 100)}...`);
console.log(`Citations: ${result.citations.length} references`);
```
### Step 4: Verify Connection (Python)
```python
import openevidence
client = openevidence.Client(api_key=os.environ['OPENEVIDENCE_API_KEY'])
result = client.query(question='What are first-line treatments for Type 2 diabetes?')
print(f'Answer: {result.answer[:100]}...')
print(f'Citations: {len(result.citations)} references')
```
## Error Handling
| Error | Code | Solution |
|-------|------|----------|
| Invalid API key | 401 | Verify credentials in dashboard |
|...
Details
- Author
- jeremylongshore
- Repository
- jeremylongshore/claude-code-plugins-plus-skills
- Created
- 7 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
openevidence-security-basics
Security Basics for OpenEvidence. Trigger: "openevidence security basics".
2,266 Updated today
jeremylongshore AI & Automation Solid
openevidence-hello-world
Create a minimal working OpenEvidence example. Trigger: "openevidence hello world", "openevidence example", "test openevidence".
2,266 Updated today
jeremylongshore AI & Automation Featured
openevidence-deploy-integration
Deploy Integration for OpenEvidence. Trigger: "openevidence deploy integration".
2,266 Updated today
jeremylongshore AI & Automation Featured
openevidence-common-errors
Diagnose and fix OpenEvidence common errors. Trigger: "openevidence error", "fix openevidence", "debug openevidence".
2,266 Updated today
jeremylongshore AI & Automation Featured
openevidence-sdk-patterns
Sdk Patterns for OpenEvidence. Trigger: "openevidence sdk patterns".
2,266 Updated today
jeremylongshore