Skip to main content
AI/MLjeremylongshore

openevidence-cost-tuning

'Cost Tuning for OpenEvidence.

Stars
2,267
Source
jeremylongshore/claude-code-plugins-plus-skills
Updated
2026-05-31
Slug
jeremylongshore--claude-code-plugins-plus-skills--openevidence-cost-tuning
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/HEAD/plugins/saas-packs/openevidence-pack/skills/openevidence-cost-tuning/SKILL.md -o .claude/skills/openevidence-cost-tuning.md

Drops the SKILL.md into .claude/skills/openevidence-cost-tuning.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

OpenEvidence Cost Tuning

Optimization Strategies

  1. Cache frequent API calls
  2. Batch requests where possible
  3. Use appropriate API tier
  4. Monitor usage dashboards

Usage Tracking

let totalCalls = 0;
async function tracked(fn: () => Promise<any>) {
  totalCalls++;
  console.log(`OpenEvidence API calls today: ${totalCalls}`);
  return fn();
}

Resources

Next Steps

See openevidence-reference-architecture.