plugins marketplace
← All plugins

optimization-suite

v1.0.0

Surgical implementation plus measured performance, dependency, modernization, and benchmark workflows.

CodexAgent Plugins5 skills

by Lev NikolaevichMIT534updated 2 days ago

Source

git clone https://github.com/levnikolaevich/claude-code-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/optimization-suite/ inside the repository.

Layout

plugins/optimization-suite/
├── .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

ln-31-performance-optimizerskills/ln-31-performance-optimizer/SKILL.md

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.

ln-32-dependency-upgraderskills/ln-32-dependency-upgrader/SKILL.md

Upgrades dependencies across package managers with breaking-change research and rollback-safe verification. Use for dependency maintenance; not general code modernization.

ln-33-code-modernizerskills/ln-33-code-modernizer/SKILL.md

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.

ln-34-benchmark-comparatorskills/ln-34-benchmark-comparator/SKILL.md

Compares tools or implementations through reproducible A/B workloads, correctness oracles, and controlled measurements. Use to choose alternatives; not to optimize a known bottleneck.

ln-35-surgical-change-implementerskills/ln-35-surgical-change-implementer/SKILL.md

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

plugins/optimization-suite/.codex-plugin/plugin.json
{
  "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."
    ]
  }
}
plugins/optimization-suite/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "optimization-suite"
}