extremely-optimize

Solid

Rebuild code from its performance floor: split hot paths from cold, demolish and re-derive the hot ones first, then grill every remaining inefficiency in the cold ones. Use for a subsystem-wide or repo-wide performance campaign, when another round of patching has stopped paying, or when the user says "make this as fast as possible", "extremely optimize", or "grill every inefficiency".

AI & Automation 34 stars 0 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 85/100

Stars 20%
51
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Extremely-Optimize Patching a slow subsystem keeps the shape that made it slow. Each fix threads through the structure responsible for the cost, so the structure survives the fix and the next fix buys less. This skill stops patching: measure what the work must cost, tear out the implementation that misses it, and rebuild against that number. The number is the **floor** — the work the contract cannot avoid. Bytes that must move at achievable bandwidth. Comparisons the lower bound demands. Round-trips the protocol requires. Every target carries a multiple of its floor, and that multiple, not intuition, decides what gets rebuilt and when to stop. Order is fixed. **Hot** first, because a factor there is the whole win. **Cold** after, because cold code is never free — but it is graded in a different currency, and speed is rarely it. ## Scope Repo-wide is opt-in, never inferred. - A named path, or a target identified in the request, is the whole job. - A bare invocation, or wording that asks for a sweep, profiles the repo's own workload and works the ranked list. A campaign runs one target at a time, each landing as its own atomic commit. Half-rebuilt is the forbidden state: finish a target or revert it. ## Workflow 1. **Pin the workload and the baseline.** Find or write one runnable command that exercises the target with representative input and takes at least a second of wall clock. Run `hyperfine --warmup 3 --min-runs 10 '<cmd>'`. Record median, stddev, min, max. ...

Details

Author
OutlineDriven
Repository
OutlineDriven/odin-claude-plugin
Created
9 months ago
Last Updated
today
Language
Python
License
Apache-2.0

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category