Guides analysis and optimization of latency-sensitive systems: hot paths, p50/p99 metrics, caching, backpressure, and streaming freshness. Used for real-time or high-throughput engineering.
How this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:latency-critical-systemsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user cares about realtime behavior, hot paths, streaming
Use this skill when the user cares about realtime behavior, hot paths, streaming freshness, or execution speed. This includes HFT-like infrastructure, but the skill is engineering-focused. It does not authorize live trading or financial advice.
Do not collapse everything into "fast." Track:
Write the path from user/event to final visible state:
source event -> provider API -> ingest worker -> queue -> cache -> edge route
-> client stream -> browser render -> user-visible state
Then measure each segment separately.
Use live readbacks when a deployed surface exists:
For market-data or execution-adjacent paths, also verify orderbook age, VWAP assumptions, provider status, and kill-switch behavior before calling the path ready.
npx claudepluginhub aaione/everything-claude-code-zhGuides optimization of latency-sensitive systems: realtime dashboards, market data, streaming agents, queues, caches, or HFT-like infrastructure. Covers metrics split, hot path mapping, optimization order, and verification.
Optimizes end-to-end latency in distributed systems with budgets, geographic routing, protocol tweaks, and measurement techniques for user-facing apps.
Optimizes application performance with profiling-driven methodology. Covers CPU/memory profiling, caching strategies, query optimization, indexing, and load testing for faster apps.