From openevidence-pack
Sets up local dev loop for OpenEvidence apps with TypeScript client, mock responses, fixtures, tsx watch scripts, and vitest testing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-local-dev-loopThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
my-openevidence-app/
├── .env # OPENEVIDENCE_API_KEY=...
├── src/client.ts # Singleton
├── tests/fixtures/ # Mock responses
└── scripts/dev.ts
export const mockResponse = {
status: 'success',
data: { /* mock OpenEvidence response */ }
};
{ "scripts": { "dev": "tsx watch src/index.ts", "test": "vitest" } }
See openevidence-sdk-patterns.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packProvides TypeScript patterns for OpenEvidence SDK: singleton client and error wrapper with rate-limit retry. Useful for robust API client setup.
Sets up local dev loop for MindTickle API with TypeScript project structure, mock responses, tsx watch scripts, and vitest tests.
Sets up local Abridge dev environment with HAPI FHIR server via Docker, synthetic patient data, and TypeScript config for clinical AI/EHR workflow testing.