Skip to content
Skillv1.0.0

openevidence-install-auth

Install and configure OpenEvidence SDK/API authentication. Use when setting up a new OpenEvidence integration. Trigger: "install openevidence", "setup openevidence", "openevidence auth".

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/openevidence-install-auth/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill openevidence-install-auth. Copyright stays with the author (MIT).

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

npm install @openevidence/sdk
# API key from OpenEvidence developer portal

Step 2: Configure Authentication

export OPENEVIDENCE_API_KEY="your-api-key-here"
echo 'OPENEVIDENCE_API_KEY=your-api-key' >> .env

Step 3: Verify Connection (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)

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
Permission denied 403 Check API scopes/permissions
Rate limited 429 Implement backoff

Resources

Next Steps

After auth, proceed to openevidence-hello-world.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-openevidence-aeb631/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-openevidence-aeb631.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-openevidence-aeb631",
  "kind": "skill",
  "name": "openevidence-install-auth",
  "description": "Install and configure OpenEvidence SDK/API authentication. Use when setting up a new OpenEvidence integration. Trigger: \"install openevidence\", \"setup openevidence\", \"openevidence auth\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "openevidence",
      "healthcare",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Install and configure OpenEvidence SDK/API authentication. Use when setting up a new OpenEvidence integration. Trigger: \"install openevidence\", \"setup openevidence\", \"openevidence auth\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/openevidence-install-auth/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/openevidence-install-auth/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/openevidence-install-auth/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(pip:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# OpenEvidence Install & Auth\n\n## Overview\n\nSet up OpenEvidence Medical AI API for clinical decision support and evidence-based queries.\n\n## Prerequisites\n\n- OpenEvidence account and API access\n- API key/credentials from OpenEvidence dashboard\n- Node.js 18+ or Python 3.8+\n\n## Instructions\n\n### Step 1: Install SDK\n\n```bash\nnpm install @openevidence/sdk\n# API key from OpenEvidence developer portal\n```\n\n### Step 2: Configure Authentication\n\n```bash\nexport OPENEVIDENCE_API_KEY=\"your-api-key-here\"\necho 'OPENEVIDENCE_API_KEY=your-api-key' >> .env\n```\n\n### Step 3: Verify Connection (TypeScript)\n\n```t",
  "cost": {
    "context_tokens": 437
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-openevidence-aeb631/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.