All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,182 views
Security Zero Trust PrinciplesA

> No implicit trust based on network position, VPN status, or previous authentication -- every request is authenticated, authorized, and encrypted regardless of origin

securityrustgo
0
20
Spec CraftA

> LLM-judgment critique of spec quality (proposals + ADRs) against a curated rubric catalog from the spec-quality canon. Per-section critique with rubric-to-section mapping. Second member of the craft-pipeline initiative; highest-leverage craft skill because spec quality compounds across the entire planning → implementation → review lifecycle below it. Emits 3-axis findings (tier × impact × confidence per ADR 0019).

businessgoapi
0
20
State Context PatternA

> Manage shared state with React Context and useReducer for prop-drilling avoidance and scoped state

developmenttypescriptgo
0
20
State Jotai AtomsA

> Build bottom-up atomic state with Jotai for granular, composable React state management

developmenttypescriptreact
0
20
State Selection PatternsA

> Select and derive state efficiently to minimize component re-renders across any state management library

businesstypescriptgo
0
20
State Server Client SyncA

> Separate server state from client state and synchronize them with TanStack Query and local stores

businesstypescriptreact
0
20
State Zustand DevtoolsA

> Debug Zustand stores with Redux DevTools integration for time-travel debugging and action inspection

developmenttypescriptnode
0
20
State Zustand ImmerA

> Write mutable-style state updates in Zustand stores with the Immer middleware for cleaner nested mutations

toolstypescriptgo
0
20
State Zustand PersistA

> Persist Zustand store to localStorage or custom storage with automatic rehydration and migration support

developmenttypescriptbackend
0
20
State Zustand ReactA

> Optimize Zustand re-renders with selectors, shallow comparison, useShallow, and transient subscriptions

developmenttypescriptgo
0
20
State Zustand SlicesA

> Split large Zustand stores into composable slice functions for modular, maintainable state management

businesstypescriptgo
0
20
State Zustand StoreA

> Create lightweight global stores with Zustand's create function for minimal-boilerplate state management

developmentjavascripttypescript
0
20
Svelte Adapter ConfigA

> Deploy SvelteKit to any platform by selecting and configuring the correct adapter in svelte.config.js

devopsjavascripttypescript
0
20
Svelte Component CompositionA

> Build flexible components in Svelte 5 using snippets, {@render}, typed children props, and named content areas

developmenttypescriptshell
0
20
Svelte Error PagesA

> Handle 404s, auth failures, and unexpected crashes in SvelteKit with +error.svelte, the error() helper, and handleError hooks

developmenttypescriptgo
0
20
Svelte Form ActionsA

> Process HTML form submissions server-side using SvelteKit actions with progressive enhancement via use:enhance

developmentjavascripttypescript
0
20
Svelte Load FunctionsA

> Fetch route data before rendering using SvelteKit's load functions — server-only, universal, streaming, and invalidation patterns

securitytypescriptapi
0
20
Svelte Performance PatternsA

> Minimize bundle size, reduce perceived latency, and handle large datasets efficiently in SvelteKit applications

developmentjavascripttypescript
0
20
Svelte Routing PatternA

> Build SvelteKit routes using the file-system convention with +page.svelte, +layout.svelte, route groups, and dynamic segments

developmenttypescriptgo
0
20
Svelte Runes PatternA

> Declare reactive state, derived values, and side effects in Svelte 5 using the runes API ($state, $derived, $effect, $props, $bindable)

developmenttypescriptreact
0
20
Svelte Server HooksA

> Intercept every request, populate locals, modify responses, and handle errors using SvelteKit's hooks.server.ts

businesstypescriptgo
0
20
Svelte State ManagementA

> Choose the right state scope in SvelteKit: component-local runes, context API for subtree isolation, and module-level state for true singletons

developmenttypescriptreact
0
20
Svelte Stores PatternA

> Share reactive state across any component tree using writable, readable, and derived stores with the Svelte store contract

developmenttypescriptreact
0
20
Svelte Testing PatternsA

> Test Svelte 5 components with Vitest and @testing-library/svelte — render, user events, store mocking, and async tick flushing

testingtypescriptbash
0
20
Svelte Transitions AnimationsA

> Add enter/exit animations, list reordering motion, and spring physics to Svelte elements using built-in and custom transitions

developmentjavascripttypescript
0
20
Tanstack Cache ManagementA

> Directly read, write, and remove cache entries with QueryClient methods

businesstypescriptgo
0
20
Tanstack Dependent QueriesA

> Chain queries that depend on each other's results using the enabled flag and useQueries

developmenttypescriptreact
0
20
Tanstack DevtoolsA

> Inspect cache state, query status, and network activity using the React Query DevTools panel

developmenttypescriptgo
0
20
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 FleetA

> Autonomous test-coverage backlog sweep — enumerate under-covered areas and uncovered critical paths, confirm a ranked target batch with the human in one up-front round, fan out worktree-isolated subagents that each author tests via the **real** authoring flow (tdd then test-craft), independently verify every result by added behavior-asserting tests plus a coverage delta plus all-OS CI, and hand back a batch of green test PRs for one bulk review. The fleet never auto-merges and never trusts ...

ai-agentsrustgo
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