optimization-suite
v1.0.0Surgical implementation plus measured performance, dependency, modernization, and benchmark workflows.
by Lev NikolaevichMIT534updated 2 days ago
Source
git clone https://github.com/levnikolaevich/claude-code-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/optimization-suite/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── plugin.json├── skills/ln-31-performance-optimizer/SKILL.md├── skills/ln-32-dependency-upgrader/SKILL.md├── skills/ln-33-code-modernizer/SKILL.md├── skills/ln-34-benchmark-comparator/SKILL.md└── skills/ln-35-surgical-change-implementer/SKILL.md
Skills5
Optimizes a measured latency, throughput, memory, CPU, or I/O problem through profiling and keep-or-discard experiments. Use for a known bottleneck; not unbiased A/B comparison.
Upgrades dependencies across package managers with breaking-change research and rollback-safe verification. Use for dependency maintenance; not general code modernization.
Modernizes a bounded capability by removing obsolete custom mechanisms or reducing bundle and maintenance cost. Use for proven modernization value; not routine upgrades or tuning.
Compares tools or implementations through reproducible A/B workloads, correctness oracles, and controlled measurements. Use to choose alternatives; not to optimize a known bottleneck.
Implements a bounded product-code change through the smallest complete root-cause solution. Use for scoped delivery; not for planning, review, audit, upgrades, modernization, or tuning.
Manifests2
{
"name": "optimization-suite",
"version": "1.0.0",
"description": "Surgical implementation plus measured performance, dependency, modernization, and benchmark workflows.",
"author": {
"name": "Lev Nikolaevich",
"email": "levnikolaevich.com@gmail.com",
"url": "https://github.com/levnikolaevich"
},
"homepage": "https://github.com/levnikolaevich/claude-code-skills",
"repository": "https://github.com/levnikolaevich/claude-code-skills",
"license": "MIT",
"keywords": [
"optimization",
"performance",
"dependencies",
"modernization",
"benchmarking"
],
"skills": "./skills/",
"interface": {
"displayName": "Optimization Suite",
"shortDescription": "Measured code optimization",
"longDescription": "Deliver minimal complete changes and optimize code through bounded scope, reproducible evidence, and keep-or-discard decisions.",
"developerName": "Lev Nikolaevich",
"websiteURL": "https://github.com/levnikolaevich/claude-code-skills",
"category": "Productivity",
"capabilities": [
"Interactive",
"Write"
],
"defaultPrompt": [
"Implement or optimize this bounded change through the smallest evidence-backed solution."
]
}
}{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "optimization-suite"
}