tjboudreaux/cc-engineering-skills · Archived

eng-performance

Guard latency, memory, battery, bandwidth, and gas/compute budgets by measuring before and after every change.

First seen May 26, 2026

Installation

$ npx skills add tjboudreaux/cc-engineering-skills --skill eng-performance

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tjboudreaux/cc-engineering-skills · top by installs.

npx skills add tjboudreaux/cc-engineering-skills

Browse all from tjboudreaux/cc-engineering-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,632 B
  • docs SUMMARY.md 133 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 11 installs

SKILL.md

Performance and Efficiency Awareness

Intent

  • Treat budgets (frame time, network round-trips, server CPU, on-chain gas) as first-class requirements.
  • Prevent regressions by profiling early, not after user complaints.

Inputs

  1. Existing SLAs/budgets per platform (FPS, TTI, API latency, contract gas caps).
  2. Representative workloads, datasets, replays, or load scripts.
  3. Tooling: profilers, flamegraphs, shader analyzers, gas estimators, Lighthouse, etc.

Workflow

  1. Establish baseline

- Capture metrics for the current implementation under realistic load/device tiers.

  1. Design with budgets

- Choose data structures, rendering strategies, and contract patterns aligned with constraints. - Consider caching, pagination, batching, and compression aggressively.

  1. Measure iteratively

- After each significant change, run targeted benchmarks or simulations. - Track results in the PR/issue; highlight deltas and why they are acceptable.

  1. Optimize where it matters

- Focus on user-facing bottlenecks; avoid premature micro-optimizations. - For web3, minimize storage writes and external calls; for mobile, monitor battery/thermal impact.

Verification

  • Benchmarks or profiling output attached, showing no regression (or justified improvements).
  • Budgets documented; alarms/alerts configured if applicable.
  • For regressions that cannot be fixed immediately, open a follow-up issue with owner, impact, and mitigation.