Source profileQuality 68/100

affaan-m/ECC/skills/latency-critical-systems/SKILL.md

latency-critical-systems

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.

Source repository stars
234,327
Declared platforms
0
Static risk flags
0
Last source update
2026-07-27
Source checked
2026-07-28

Decision brief

What it does—and where it fits

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.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/affaan-m/ECC --skill "skills/latency-critical-systems"
    Safe inspection promptEditorial

    Inspect the Agent Skill "latency-critical-systems" from https://github.com/affaan-m/ECC/blob/4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38/skills/latency-critical-systems/SKILL.md at commit 4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Verification

      Use live readbacks when a deployed surface exists:

      HTTP timing and response headers;provider freshness timestamp;queue or job state;
    2. 02

      Split The Metrics

      Do not collapse everything into "fast." Track:

      p50, p95, and p99 latency;throughput;freshness age;
    3. 03

      Map The Hot Path

      Write the path from user/event to final visible state:

      Write the path from user/event to final visible state:Then measure each segment separately.
    4. 04

      Optimization Order

      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…

      Remove unnecessary round trips.Cache stable reads with freshness metadata.Batch small calls and writes.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score68/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars234,327SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    affaan-m/ECC
    Skill path
    skills/latency-critical-systems/SKILL.md
    Commit
    4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Latency Critical Systems

    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.

    Split The Metrics

    Do not collapse everything into "fast." Track:

    • p50, p95, and p99 latency;
    • throughput;
    • freshness age;
    • queue depth;
    • cache hit rate;
    • provider/API response time;
    • browser render time;
    • correctness under load;
    • failure and retry behavior.

    Map The Hot Path

    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.

    Optimization Order

    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 improves freshness or user experience.
    8. Add canaries for stale data, degraded providers, and bad cache state.

    Verification

    Use live readbacks when a deployed surface exists:

    • HTTP timing and response headers;
    • provider freshness timestamp;
    • queue or job state;
    • edge/cache state;
    • browser verification for actual UI freshness;
    • logs around retries and degraded mode.

    For market-data or execution-adjacent paths, also verify orderbook age, VWAP assumptions, provider status, and kill-switch behavior before calling the path ready.

    Guardrails

    • Do not optimize latency by dropping required validation.
    • Do not hide stale data behind fast cache hits.
    • Do not claim millisecond behavior from client labels without measurement.
    • Do not run live orders, destructive migrations, or customer-impacting deploys without an explicit approval gate.
    • Keep secrets and private payloads out of logs and benchmark artifacts.