Install
$ agentstack add skill-v0idos-performance-deity-build ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Execute all three phases in order.
Phase 1 — Bottleneck
Analyze whichever config file applies:
Dockerfilewebpack.config.js/vite.config.ts.github/workflows/*.yml
Identify the single step that consumes the most wall-clock time.
Phase 2 — Fix
Docker:
- Reorder layers: least-changing first (OS deps, runtime), most-changing last (app code).
- Use multi-stage builds: compile in a full image, copy only the output artifact into a minimal runtime image (e.g.
alpine).
Webpack / Vite:
- Enable code splitting and tree-shaking.
- Enable
TerserPluginwithparallel: true. - Set
cache: { type: 'filesystem' }for persistent build caching.
GitHub Actions:
- Cache
node_modulesusingactions/cachekeyed on the hash ofpackage-lock.json. - Cache
pippackages keyed on the hash ofrequirements.txt. - Add
concurrency:groups to cancel in-progress runs on force-push.
Phase 3 — Report
State: "This change will save approximately X minutes per PR run" with explicit reasoning.
| Step | Before | After | Saved | |---|---|---|---| | Dependency install | Xmin | Ymin | Zmin | | Build / compile | Xmin | Ymin | Zmin | | Total pipeline | Xmin | Ymin | Zmin |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: v0idOS
- Source: v0idOS/performance-deity
- License: MIT
- Homepage: https://v0idos.github.io/performance-deity/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.