Help us improve
Share bugs, ideas, or general feedback.
From openevidence-pack
Sets up OpenEvidence API configurations for development, staging, and production using environment variables. Useful for multi-environment deployments in TypeScript/Node.js apps.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packHow this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-multi-env-setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```typescript
Provides OpenEvidence security basics including API key .env setup, checklists for rotation, auditing, and per-environment keys. Useful for secure SaaS API integrations.
Configures Apollo.io multi-environment setups (dev, staging, prod) with Zod schemas for API keys, rate limits, features, and Kubernetes secrets.
Configures ClickUp API for dev, staging, and production with per-environment tokens, team IDs, and workspace isolation in TypeScript/Node.js apps.
Share bugs, ideas, or general feedback.
const configs = {
development: { apiKey: process.env.OPENEVIDENCE_API_KEY_DEV },
staging: { apiKey: process.env.OPENEVIDENCE_API_KEY_STG },
production: { apiKey: process.env.OPENEVIDENCE_API_KEY_PROD },
};
See openevidence-observability.