Caching

Caching strategies and implementation

Showing 385-408 of 593 skills
DaleStudy

react

by DaleStudy

"React 성능 최적화 및 베스트 프랙티스 스킬. Vercel Engineering 가이드 기반, 프레임워크 비종속. 다음 상황에서 사용: (1) React 컴포넌트(.tsx, .jsx) 작성 또는 수정 시, (2) 상태 관리, hooks, 리렌더링 최적화 작업 시, (3) 비동기 데이터 페칭 또는 Suspense 패턴 작업 시, (4) 번들 사이즈 최적화 또는 코드 스플리팅 시, (5) 'react', 'useState', 'useEffect', 'useMemo', 'useCallback', 'memo', 'Suspense', 'lazy' 키워드가 포함된 작업 시"

Caching 4 6mo ago
xbklairith

pattern-recognition

by xbklairith

Use when identifying chart patterns or setups - recognizes candlestick patterns (head and shoulders, double top/bottom, triangles), documents pattern library with entry/exit criteria. Activates when user says "what pattern is this", "is this a flag", "document this setup", mentions pattern names, or uses /trading:pattern command.

Analytics 3 9mo ago
xbklairith

market-analysis

by xbklairith

Use when analyzing markets or interpreting charts - applies technical indicators (RSI, MACD, Moving Averages), identifies support/resistance, analyzes multi-timeframe trends, checks fundamentals and sentiment. Activates when user says "analyze BTC", "what's the trend", "check this chart", mentions ticker symbols, or uses /trading:analyze command.

Analytics 3 9mo ago
macaron-software

market-data

by macaron-software

Market data aggregation from multiple free providers (yfinance, ECB, Finnhub). Use when building or modifying the market data pipeline. Covers real-time stock/ETF quotes, ISIN-ticker resolution, ECB FX rates (EUR/USD/GBP), historical OHLCV data, instrument metadata enrichment, dividend calendars, and multi-currency portfolio valuation.

Caching 8 6mo ago
ilude

container-workflow

by ilude

Guidelines for containerized projects using Docker, Dockerfile, docker-compose, container, and containerization. Covers multi-stage builds, security, signal handling, entrypoint scripts, and deployment workflows.

Caching 8 8mo ago
sheepmao

doc-to-markdown

by sheepmao

Use when converting Word documents (.doc/.docx) to clean Markdown with images extracted to a separate folder for readability and AI compatibility

Caching 8 7mo ago
xinbenlv

codereview-performance

by xinbenlv

Performance and scalability analysis specialist. Identifies algorithmic inefficiencies, N+1 queries, memory leaks, and concurrency issues. Use when reviewing loops, database queries, file I/O, or high-concurrency code.

Caching 8 7mo ago
mrevanzak

effect-ts-resources

by mrevanzak

Use when managing resource lifecycles (DB connections, file handles, sockets) where cleanup must be guaranteed despite failures, interruptions, or potential resource leaks.

Caching 8 7mo ago
hieutrtr

fastapi-patterns

by hieutrtr

FastAPI framework mechanics and advanced patterns. Use when configuring middleware, creating dependency injection chains, implementing WebSocket endpoints, customizing OpenAPI documentation, setting up CORS, building authentication dependencies (JWT validation, role-based access), implementing background tasks, or managing application lifespan (startup/shutdown). Does NOT cover basic endpoint CRUD or repository/service patterns (use python-backend-expert) or testing (use pytest-patterns).

API Dev 8 7mo ago
imoonwander

moon-clean-skill

by imoonwander

Clean up disk space and uninstall macOS apps safely — disk usage checkup, app bundle and leftover review, system/app caches, dev junk (node_modules/Xcode/Docker/package-manager caches), large-file discovery, and dedup/leftover cleanup of agent skills directories; always checks and confirms before deleting. Use when the user says "disk full", "clean my mac", "free up space", "clear cache", "uninstall/remove an app", "my computer is slow, clean it up", or in Chinese "磁盘满了""清理电脑/Mac""释放空间""清理缓存""卸载/删除应用或软件""skills 太乱了清理一下", or when the system warns about low storage.

Caching 2 2mo ago
conflux-fans

conflux-rust-integration-test

by conflux-fans

Create or update pytest-based integration tests for conflux-rust, including adding new test modules under integration_tests/tests, using ConfluxTestFramework and pytest fixtures (network, cw3/ew3, accounts, internal_contracts), customizing framework_class and fixtures, and running/debugging tests with pytest and xdist options.

Caching 2 7mo ago
Agentient

nextjs-app-router-data-fetching

by Agentient

Data fetching patterns for Next.js 14+ App Router including async Server Components and Server Actions. PROACTIVELY activate for: (1) fetching data in Server Components, (2) implementing Server Actions for mutations, (3) configuring caching and revalidation. Triggers: "fetch data", "server action", "revalidate"

Caching 2 7mo ago
manastalukdar

cache-strategy

by manastalukdar

Implement caching strategies for HTTP, service workers, and memoization

API Dev 1 7mo ago
truongnat

performance-audit

by truongnat

Audit and optimize application performance across frontend, backend, and database layers. Identifies bottlenecks, provides actionable optimization recommendations, and measures improvements. Use when the app feels slow, Lighthouse scores are low, or API response times exceed targets.

Caching 7 6mo ago
corygabrielsen

orthogonalize-pr

by corygabrielsen

Identify and separate orthogonal (independent) change sets within a decomposed PR. Creates branches for each set that could theoretically be reviewed or merged separately.

Caching 1 6mo ago
manastalukdar

commit

by manastalukdar

Analyze changes and create meaningful conventional commits with pre-commit quality checks

Caching 1 7mo ago
TianyiLi

vercel-react-only-best-practices

by TianyiLi

React performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React code to ensure optimal performance patterns. Triggers on tasks involving React components, data fetching, bundle optimization, or performance improvements.

Caching 1 7mo ago
rockcookies

turborepo

by rockcookies

Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines, dependsOn, caching, remote cache, the "turbo" CLI, --filter, --affected, CI optimization, environment variables, internal packages, monorepo structure/best practices, and boundaries. Use when user: configures tasks/workflows/pipelines, creates packages, sets up monorepo, shares code between apps, runs changed/affected packages, debugs cache, or has apps/packages directories.

Caching 1 6mo ago
tankpkg

@tank/system-design

by tankpkg

Practical system design for production distributed systems. Covers scalability patterns (load balancing, horizontal scaling, CDN, auto-scaling), data layer design (database selection, replication, sharding, consistency models, CAP theorem applied), caching strategies (cache-aside, write-through, invalidation, stampede prevention), messaging and async patterns (queues vs streams, event-driven architecture, CQRS, saga pattern, delivery guarantees), reliability (circuit breakers, bulkheads, retries, rate limiting, timeouts, chaos engineering), service architecture (monolith vs microservices, API gateway, service mesh, distributed transactions), and capacity planning (back-of-envelope estimation, SLOs/SLIs, monitoring, distributed tracing). Synthesizes Kleppmann (Designing Data-Intensive Applications), Vitillo (Understanding Distributed Systems), Newman (Building Microservices), Ford et al. (Software Architecture: The Hard Parts), Nygard (Release It!), Petrov (Database Internals), Richards & Ford (Fundamentals of Software Architecture), and Beyer et al. (Site Reliability Engineering). Trigger phrases: "system design", "distributed systems", "scalability", "load balancing", "horizontal scaling", "vertical scaling", "database sharding", "database replication", "caching strategy", "cache invalidation", "message queue", "event-driven", "Kafka", "RabbitMQ", "pub/sub", "circuit breaker", "rate limiting", "bulkhead", "retry strategy", "microservices", "monolith", "API gateway", "service mesh", "CAP theorem", "eventual consistency", "strong consistency", "CQRS", "event sourcing", "saga pattern", "back-of-envelope", "SLO", "SLI", "capacity planning", "distributed tracing", "back pressure", "cache stampede", "thundering herd", "how should I scale", "which database", "when to use microservices"

Caching 1 6mo ago
manastalukdar

find-todos

by manastalukdar

Locate development tasks and TODO comments across the codebase

Caching 1 7mo ago
manastalukdar

architecture-diagram

by manastalukdar

Generate architecture diagrams in Mermaid, PlantUML, or diagrams.net formats

Caching 1 7mo ago
CK42BB

procedural-landscapes

by CK42BB

Generate procedural 3D landscapes and terrain in Three.js using WebGPU compute shaders with automatic WebGL2 fallback. Covers heightmap generation via FBM noise, ridged multifractal, and domain warping; chunked LOD terrain meshes; slope-based multi-material texturing; procedural water planes; atmospheric sky rendering; and instanced vegetation scattering. Use when building terrain generators, open-world environments, landscape visualizers, flight simulators, or any 3D scene requiring procedural ground surfaces. Triggers: "procedural terrain", "landscape generator", "heightmap", "terrain mesh", "procedural world", "open world", "terrain LOD", "terrain chunks", "noise terrain", "3D landscape".

Caching 7 7mo ago
rakaadi

vercel-react-best-practices

by rakaadi

React performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React code to ensure optimal performance patterns. Triggers on tasks involving React components, data fetching, bundle optimization, or performance improvements.

Caching 1 7mo ago
eyadsibai

context-optimization

by eyadsibai

Use when optimizing agent context, reducing token costs, implementing KV-cache optimization, or asking about "context optimization", "token reduction", "context limits", "observation masking", "context budgeting", "context partitioning"

Caching 7 7mo ago