using-theme-variables
No SKILL.md available for this skill.
View on GitHubMore from djankies/claude-configs
optimizing-with-react-compiler
Teaches what React Compiler handles automatically in React 19, reducing need for manual memoization. Use when optimizing performance or deciding when to use useMemo/useCallback.
16reviewing-test-quality
Review React 19 test quality including coverage, patterns, and React 19 API testing. Use when reviewing tests or test coverage.
5validating-query-inputs
Validate all external input with Zod before Prisma operations. Use when accepting user input, API requests, or form data.
5handling-transaction-errors
Handle transaction errors properly with P-code checking and timeout configuration. Use when implementing transaction error recovery.
4managing-dev-migrations
Use migrate dev for versioned migrations; db push for rapid prototyping. Use when developing schema changes locally.
4avoiding-any-types
Teaches when and how to use unknown instead of any type in TypeScript. Use when working with TypeScript code that has any types, needs type safety, handling external data, or when designing APIs. Critical for preventing type safety violations.
4