AgentStack
SKILL verified MIT Self-run

Build

skill-v0idos-performance-deity-build · by v0idOS

Reduce CI/CD build times. Analyzes Dockerfiles, Webpack/Vite configs, and GitHub Actions workflows to identify the slowest step and apply targeted caching and build optimizations.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-v0idos-performance-deity-build

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Build? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Execute all three phases in order.

Phase 1 — Bottleneck

Analyze whichever config file applies:

  • Dockerfile
  • webpack.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 TerserPlugin with parallel: true.
  • Set cache: { type: 'filesystem' } for persistent build caching.

GitHub Actions:

  • Cache node_modules using actions/cache keyed on the hash of package-lock.json.
  • Cache pip packages keyed on the hash of requirements.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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.