All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,155 views
Perf Layout ReflowA

> Understand what triggers layout computation, how forced synchronous layouts and layout thrashing destroy frame budgets, and how to use containment and batching strategies to keep layout under 4ms per frame.

developmentjavascriptgo
0
20
Perf Lazy Loading MediaA

> Master media lazy loading strategies — native browser lazy loading for images and iframes, video poster optimization, low-quality image placeholders (LQIP), BlurHash encoding, progressive rendering techniques, and prioritization of above-the-fold media.

developmentjavascripttypescript
0
20
Perf Lazy LoadingA

> Master lazy loading strategies — Intersection Observer-based visibility triggers, route-based lazy loading, component-level deferral, progressive hydration, and virtual scrolling to minimize initial payload and prioritize above-the-fold content.

developmentjavascripttypescript
0
20
Perf Long TasksA

> Detect, break up, and eliminate long tasks (>50ms on the main thread) using time-slicing, scheduler APIs, Web Workers, and cooperative yielding to keep the UI responsive and meet the 50ms responsiveness budget.

documentationjavascriptgo
0
20
Perf Memory LeaksA

> Identify, diagnose, and prevent the 5 classic memory leak patterns in JavaScript — detached DOM trees, forgotten event listeners, closures over large scopes, forgotten timers, and global variable accumulation — using WeakRef, WeakMap, and systematic heap analysis.

developmentjavascriptgo
0
20
Perf Module FederationA

> Master module federation for micro-frontend architectures — runtime module sharing across independently deployed applications, shared dependency negotiation, version compatibility strategies, and performance optimization for federated systems.

developmentjavascripttypescript
0
20
Perf N Plus OneA

> Master N+1 query elimination — detecting N+1 patterns in ORMs and GraphQL resolvers, eager loading strategies, DataLoader batching, query count monitoring, and ORM-specific solutions for Prisma, Drizzle, Sequelize, and TypeORM.

databasestypescriptgo
0
20
Perf Paint CompositingA

> Understand the browser's paint and compositing pipeline — how content is rasterized into layers, which properties trigger expensive repaints, how GPU compositing enables 60fps animations, and how to manage layer promotion without exhausting GPU memory.

businessjavascriptgo
0
20
Perf Performance ApiA

> Master the browser Performance API — PerformanceObserver, Navigation Timing, Resource Timing, User Timing, Server Timing, and Element Timing — to build custom performance measurement, monitoring, and alerting into any web application.

developmentjavascriptgo
0
20
Perf Profiling MethodologyA

> Apply a systematic, measurement-first profiling workflow — define metric, establish baseline, identify bottleneck, implement fix, verify improvement with statistical significance — to avoid wasted optimization effort and ensure every change demonstrably improves performance.

developmentjavascriptgo
0
20
Perf Query OptimizationA

> Master database query optimization — EXPLAIN and EXPLAIN ANALYZE for query plan analysis, identifying sequential scans and inefficient joins, rewriting queries for index utilization, understanding the query optimizer's cost model, and diagnosing slow queries in PostgreSQL and MySQL.

databasesgosql
0
20
Perf Resource HintsA

> Use preload, prefetch, preconnect, dns-prefetch, modulepreload, fetchpriority, and 103 Early Hints to inform the browser about resources needed soon — eliminating discovery latency and accelerating critical resource delivery.

documentationjavascriptgo
0
20
Perf Responsive ImagesA

> Master responsive image delivery — srcset for resolution switching, sizes for viewport-aware selection, the picture element for art direction, automated responsive image generation, and strategies to serve the smallest image that looks sharp on every device.

developmentjavascriptjava
0
20
Perf Server Side CachingA

> Design and implement server-side caching strategies — cache-aside, read-through, write-through, and write-behind patterns with Redis and Memcached, multi-tier caching architectures, serialization optimization, and distributed cache consistency.

businessjavascriptgo
0
20
Perf Server Side RenderingA

> Master server-side rendering performance — SSR versus CSR trade-off analysis, hydration cost and mitigation, streaming SSR with React 18, selective hydration for interactive islands, React Server Components, and SSR caching strategies for optimal TTFB and TTI.

developmentjavascripttypescript
0
20
Perf Service Worker CachingA

> Master Service Worker caching — lifecycle management (install, activate, fetch), caching strategies (cache-first, network-first, stale-while-revalidate), offline support, precaching critical assets, runtime caching with Workbox, background sync for offline writes, and cache versioning for safe updates.

businesstypescriptshell
0
20
Perf Static GenerationA

> Master static site generation — build-time rendering for instant page loads, incremental static regeneration for dynamic content, on-demand revalidation, hybrid rendering strategies mixing static and dynamic pages, and framework-specific patterns for Next.js, Astro, and Gatsby.

developmentjavascripttypescript
0
20
Perf Streaming RenderingA

> Master streaming rendering — React Suspense-based streaming SSR, chunked transfer encoding, out-of-order HTML delivery, shell-first rendering, progressive page assembly, and error handling for streamed content to achieve the fastest possible Time to First Byte and progressive content delivery.

developmenttypescriptgo
0
20
Perf Style CalculationA

> Understand CSS selector matching, style invalidation, and recalculation costs — how browsers resolve computed styles for every visible element, why some selectors are orders of magnitude more expensive than others, and how to keep style recalculation under 4ms per frame.

developmentjavascriptgo
0
20
Perf Svg OptimizationA

> Master SVG optimization — automated minification with SVGO, inline versus external delivery trade-offs, SVG sprite sheet systems, accessibility patterns, rendering performance for complex vector graphics, and icon system architecture.

designjavascripttypescript
0
20
Perf Tree ShakingA

> Master tree shaking and dead code elimination — ESM static analysis requirements, sideEffects configuration, barrel file pitfalls, library authoring for tree-shakability, and debugging why unused code survives bundling.

developmentjavascripttypescript
0
20
Perf Web WorkersA

> Master Web Workers for off-main-thread computation — dedicated workers for CPU-intensive tasks, Comlink for ergonomic worker communication, SharedArrayBuffer for zero-copy data sharing, worker pooling for throughput, and integration patterns with React and bundlers.

developmentjavascripttypescript
0
20
Pre Merge BriefA

> The harness pointed at the human who clicks merge. A thin wrapper over `harness pre-merge-brief` that composes a senior-facing accountability brief — the diff summary, the multi-persona review verdict (from `review-ci --json`), the curated **Signal status** snapshot, the outcome-eval result, and a derived **"👀 Worth your eyes"** section — and posts it as a single sticky PR comment (upsert by marker). All composition and degradation logic lives in the command; this skill orchestrates invoca...

businessbashnode
0
20
Prisma Client QueriesA

> Query data with Prisma Client findUnique/findMany, create/update/delete, upsert, select, include

databasestypescriptnode
0
20
Prisma Filtering SortingA

> Filter and sort Prisma queries with where, AND/OR/NOT, orderBy, and cursor/offset pagination

databasestypescriptsql
0
20
Prisma MigrationsA

> Manage database schema evolution with prisma migrate dev/deploy/reset and migration history

databasesbashsql
0
20
Prisma Performance PatternsA

> Optimize Prisma queries with select, findUnique index hits, batching, and avoiding N+1

databasestypescriptgo
0
20
Prisma Raw QueriesA

> Execute type-safe raw SQL with $queryRaw, $executeRaw, and Prisma.sql template tag

databasesjavascripttypescript
0
20
Prisma Relations PatternA

> Model one-to-one, one-to-many, many-to-many, and self-relations with @relation in Prisma

databasesgosql
0
20
Prisma Schema DesignA

> Design Prisma schemas with datasource, generator, models, field types, and field attributes

databasestypescriptgo
0
20
Prisma Seeding PatternA

> Seed databases idempotently with prisma/seed.ts, --seed flag, and environment branching

databasestypescriptgo
0
20
Prisma Soft DeleteA

> Implement soft deletes in Prisma with middleware or $extends query extensions and deletedAt pattern

businesstypescriptsql
0
20
Prisma TransactionsA

> Execute atomic operations with Prisma $transaction, interactive transactions, and nested writes

databasestypescriptsql
0
20
Prisma Type GenerationA

> Use generated Prisma types like XxxCreateInput, XxxWhereInput, $Enums, and validator utilities

toolstypescriptgo
0
20
Product AdvisorA

> Turn a client diagram + conversation into a Business Requirements Document and a resolved gap-list, then seed the harness pipeline. The pre-inception front door: gather requirements with AI, feed them in, and let the existing flow continue as it does today.

businessgoapi
0
20
Product RequirementsA

> Turn one picked work item into a durable PRD — user stories, testable acceptance criteria, and prioritization — through a guided interview. The product-management middle between `product-advisor` (BRD) and `harness-brainstorming` (spec). Authors requirements; never authors the spec.

businessgo
0
20
React 2026A

> Modern React patterns for 2025-2026 including React 19, Compiler, and AI-integrated UI

developmenttypescriptreact
0
20
React Client RenderingA

> Render React entirely in the browser for highly interactive single-page applications

developmentjavascripttypescript
0
20
React Compound PatternA

> Build multi-part components that share state implicitly via context

developmenttypescriptreact
0
20
React Concurrent UiA

> Build responsive UIs using React 18 concurrent features and transitions

developmenttypescriptreact
0
20
React Container PresentationalA

> Separate data-fetching containers from stateless presentational components

businesstypescriptreact
0
20
React Context PatternA

> Share state across the component tree without prop drilling using React Context

developmenttypescriptgo
0
20
React Dynamic ImportA

> Load modules on demand to reduce initial bundle size and improve startup performance

developmentjavascripttypescript
0
20
React Hoc PatternA

> Extend component behavior by wrapping in a higher-order component

developmenttypescriptreact
0
20
React Hooks PatternA

> Reuse stateful logic across components via custom hooks

developmenttypescriptgo
0
20
React Islands PatternA

> Hydrate only interactive UI islands, leaving static content as HTML

developmentreactnextjs
0
20
React Memoization PatternA

> Prevent expensive re-renders and recomputations with React memoization APIs

developmenttypescriptreact
0
20
React Progressive HydrationA

> Delay hydration of below-fold or non-critical components to improve TTI

developmenttypescriptreact
0
20
React Provider PatternA

> Make data available to any component in the tree without prop drilling

businesstypescriptreact
0
20
React Render Props PatternA

> Share stateful logic by passing a render function as a prop

developmenttypescriptreact
0
20