Source-declared outputs
- HTTP timing and response headers;
- provider freshness timestamp;
- queue or job state;
affaan-m/ECC
Use for latency-sensitive systems such as realtime dashboards, market data, streaming agents, execution gateways, queues, caches, or HFT-like infrastructure where freshness and p95 latency matter.
npx skills add https://github.com/affaan-m/ECC --skill "skills/latency-critical-systems"Source checked Jul 28, 2026·Refresh due Oct 26, 2026
Reorganized from the pinned upstream SKILL.md
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.
npx skills add https://github.com/affaan-m/ECC --skill "skills/latency-critical-systems"The pinned source supports a structured brief, but not an expanded tutorial. Only detected inputs, outputs, and sections are shown.
288 source words · 5 usable sections
Source-declared outputs
Source workflow
Sections are extracted automatically from the pinned SKILL.md and link back to the source.
Use live readbacks when a deployed surface exists:
Do not collapse everything into "fast." Track:
Write the path from user/event to final visible state:
1. Remove unnecessary round trips. 2. Cache stable reads with freshness metadata. 3. Batch small calls and writes. 4. Move compute closer to the data or the user. 5. Split hot and cold paths. 6. Apply backpressure before queues grow unbounded. 7. Use streaming only when it impro…
Source checklist
The source section “Verification” has been checked.
The source section “Split The Metrics” has been checked.
The source section “Map The Hot Path” has been checked.
The source section “Optimization Order” has been checked.
Source output checked: HTTP timing and response headers;
Source output checked: provider freshness timestamp;
FAQ
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.
The source record exposes this install command: npx skills add https://github.com/affaan-m/ECC --skill "skills/latency-critical-systems". Inspect the command and pinned source before running it.
Quality breakdown
Based on traceable docs and repository signals; stars are not treated as quality.
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.