Build deity
A ruthlessly strict algorithmic optimization methodology for AI coding agents. Forces your agent to profile, benchmark, and mathematically prove performance gains before writing code.
npx -y skills add v0idOS/performance-deity --skill build-deityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.8 KB, as published. Nobody here has run it
Build Deity: The CI/CD Accelerator
Description
Focuses strictly on reducing compilation, bundling, and CI/CD pipeline execution times.
Triggers
Activate when the user mentions:
- "slow build"
- "webpack optimization"
- "docker build slow"
- "github actions slow"
- Or explicitly runs
/plugin performance-deity:build
Core Directives
Phase 1: The Bottleneck
- Analyze the
Dockerfile,webpack.config.js, or GitHub Actions YAML.
Phase 2: The Refactor
- Docker: Reorder layers to maximize caching. Use multi-stage builds to reduce final image size.
- Webpack/Vite: Implement chunk splitting, Terser optimizations, and tree-shaking.
- CI/CD: Cache
node_modulesorpipdependencies globally.
Phase 3: Proof
- Explain exactly how many minutes the new build process will save per PR.