From openevidence-pack
Sets up local dev loop for OpenEvidence apps with TypeScript client, mock responses, fixtures, tsx watch scripts, and vitest testing.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packThis skill is limited to using the following tools:
```
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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.