All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,150 views
Tanstack Infinite QueriesA

> Implement cursor-based pagination and "load more" UX with useInfiniteQuery

developmenttypescriptreact
0
20
Tanstack Mutation PatternsA

> Execute server-side mutations with useMutation, lifecycle callbacks, and retry configuration

businesstypescriptreact
0
20
Tanstack Optimistic UpdatesA

> Update the UI immediately on mutation and roll back automatically if the server request fails

businesstypescriptreact
0
20
Tanstack PrefetchingA

> Hydrate the client cache from server-fetched data using dehydrate/hydrate and HydrationBoundary

developmenttypescriptgo
0
20
Tanstack Query InvalidationA

> Control cache freshness with invalidateQueries, staleTime, gcTime, and refetch strategies

developmenttypescriptgo
0
20
Tanstack Query KeysA

> Structure query keys as type-safe factories to enable precise cache invalidation and scoped refetching

developmenttypescriptgo
0
20
Tanstack Suspense ModeA

> Use useSuspenseQuery to integrate React's Suspense and error boundaries with TanStack Query

developmenttypescriptreact
0
20
Test Accessibility TestingA

> Automate WCAG accessibility checks using axe-core with Playwright and jest-axe

testingtypescriptgo
0
20
Test Component ReactA

> Test React components with Testing Library using user-centric queries and async utilities

testingtypescriptrust
0
20
Test Component SvelteA

> Test Svelte components with Testing Library using render, fireEvent, and waitFor

developmentjavascripttypescript
0
20
Test Contract TestingA

> Verify service compatibility using Pact consumer-provider contract tests

testingtypescriptbash
0
20
Test Coverage PatternsA

> Configure and interpret test coverage thresholds for meaningful quality signals

testingtypescriptbash
0
20
Test CraftA

> LLM-judgment critique of test quality across vitest / jest / mocha / playwright / pytest. Fourth member of the craft-pipeline initiative. Per-`it`/`test` block critique with best-effort source pairing for contract-vs-implementation rubrics. Tests are often the worst-written code in a codebase precisely because the rule-based floor (coverage threshold) is so easy to clear. Emits 3-axis findings (tier × impact × confidence per ADR 0019).

testingpythongo
0
20
Test E2e StrategyA

> Choose the right test layer (unit/integration/E2E) and prevent flaky tests in CI

testingtypescriptrust
0
20
Test Factory PatternsA

> Build maintainable test data using factory functions, builders, and faker.js

testingtypescriptsql
0
20
Test Integration PatternsA

> Write integration tests that exercise real dependencies using test databases and containers

databasestypescriptsql
0
20
Test Mock PatternsA

> Mock modules, functions, and timers in Vitest and Jest to isolate units under test

developmenttypescripttesting
0
20
Test Msw PatternA

> Intercept HTTP requests in tests using Mock Service Worker handlers at the network level

developmenttypescriptbash
0
20
Test Performance TestingA

> Measure and assert on code performance using vitest bench and timing budgets

developmentjavascripttypescript
0
20
Test Playwright PatternsA

> Write maintainable Playwright tests using page objects, fixtures, and parallel execution

testingjavascripttypescript
0
20
Test Playwright SetupA

> Configure Playwright test runner with fixtures, reporters, and browser contexts

toolstypescriptgo
0
20
Test Property BasedA

> Generate exhaustive test cases automatically using fast-check property-based testing

toolstypescriptgo
0
20
Test Snapshot PatternsA

> Use snapshot testing selectively for stable outputs, knowing when to avoid it

testingtypescriptgo
0
20
Test Tdd WorkflowA

> Drive design through tests using red-green-refactor cycle and test-first discipline

testingtypescriptgo
0
20
Test Unit PatternsA

> Write focused, isolated unit tests using AAA pattern with describe/it/expect

testingtypescriptgo
0
20
Test Vitest ConfigA

> Configure Vitest with workspaces, environments, coverage, and TypeScript integration

developmenttypescriptgo
0
20
Trpc Context PatternA

> Inject database clients, sessions, and request data into every procedure via `createTRPCContext`

developmenttypescriptsql
0
20
Trpc Error HandlingA

> Throw typed TRPCErrors in procedures and format them consistently for client consumption

businesstypescriptreact
0
20
Trpc Input ValidationA

> Define type-safe inputs and outputs with Zod schemas for end-to-end type inference

documentationtypescriptreact
0
20
Trpc Middleware PatternA

> Add cross-cutting logic (auth checks, logging, rate limiting) to procedures via t.middleware

toolstypescript
0
20
Trpc Nextjs IntegrationA

> Integrate tRPC with Next.js App Router using the fetch adapter, server-side callers, and React Server Components

developmenttypescriptreact
0
20
Trpc React Query IntegrationA

> End-to-end type-safe data fetching with `api.xxx.useQuery`, `useMutation`, and cache invalidation via TanStack Query

developmenttypescriptgo
0
20
Trpc Router CompositionA

> Organize type-safe RPC procedures into nested routers that merge into a single appRouter

developmenttypescriptnextjs
0
20
Trpc Subscription PatternA

> Stream real-time events to clients over WebSocket using tRPC subscriptions and observables

developmenttypescriptreact
0
20
Ts Async PatternsA

> Type async/await, Promise chains, and concurrent patterns correctly in TypeScript

toolstypescriptapi
0
20
Ts Branded TypesA

> Prevent mixing semantically distinct primitives using branded opaque types

developmenttypescriptrust
0
20
Ts Class PatternsA

> Use abstract classes, private fields, access modifiers, and implements vs extends correctly

developmentjavascripttypescript
0
20
Ts Conditional TypesA

> Use conditional types, infer, and distributive logic to derive types programmatically

businesstypescriptgo
0
20
Ts Config PatternsA

> Configure tsconfig with extends, project references, composite builds, and incremental compilation

developmentjavascripttypescript
0
20
Ts Declaration MergingA

> Extend existing types, modules, and namespaces via declaration merging and augmentation

developmentjavascripttypescript
0
20
Ts Decorator PatternsA

> Implement class, method, and property decorators with reflect-metadata in TypeScript

businesstypescriptangular
0
20
Ts Discriminated UnionsA

> Model mutually exclusive states with discriminated unions and exhaustive narrowing

toolstypescriptgo
0
20
Ts Error Handling TypesA

> Model and type errors explicitly using Result types, discriminated unions, and typed throws

developmentjavascripttypescript
0
20
Ts Generics PatternA

> Write reusable, type-safe functions and interfaces using TypeScript generics

toolstypescriptexpress
0
20
Ts Mapped TypesA

> Transform object types by iterating over their keys with mapped type syntax

toolstypescriptapi
0
20
Ts Module PatternsA

> Organize TypeScript code with ES modules, barrel exports, path aliases, and declaration files

developmentjavascripttypescript
0
20
Ts Performance PatternsA

> Reduce TypeScript compilation time and type complexity with targeted optimizations

developmenttypescriptgo
0
20
Ts Satisfies OperatorA

> Validate objects against a type without widening using the satisfies keyword

developmenttypescriptexpress
0
20
Ts Strict ModeA

> Enable and satisfy strict TypeScript checks including strictNullChecks and exactOptionalPropertyTypes

documentationtypescriptgo
0
20
Ts Template Literal TypesA

> Construct precise string types using template literal syntax and string manipulation types

toolstypescriptapi
0
20