AgentStack
SKILL verified MIT Self-run

Build

skill-pvnarp-agent-skills-build · by pvnarp

Helps build, run, test, and deploy the project. Provides common commands, environment checks, and release checklists. Use when building, deploying, or troubleshooting build issues.

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

Install

$ agentstack add skill-pvnarp-agent-skills-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 Used
  • 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

Build & Deploy

Common Commands

Adapt these to the project's actual build system. Detect from the project root which applies:

Node.js / npm / yarn / pnpm

npm install          # Install dependencies
npm run build        # Production build
npm run dev          # Development server
npm test             # Run tests
npm run lint         # Lint check

Python / pip / poetry

pip install -e .     # Install in dev mode
python -m pytest     # Run tests
python -m mypy .     # Type check
python -m ruff .     # Lint

Go

go build ./...       # Build all
go test ./...        # Test all
go vet ./...         # Static analysis

Gradle (JVM / Android)

./gradlew build          # Full build
./gradlew test           # Unit tests
./gradlew assembleDebug  # Debug build (Android)

Rust / Cargo

cargo build          # Debug build
cargo build --release # Release build
cargo test           # Run tests
cargo clippy         # Lint

Pre-Build Checks

  1. Correct runtime/SDK version installed?
  2. Dependencies up to date? (lock file matches)
  3. Environment variables set? (check .env.example)
  4. Required services running? (DB, Redis, etc.)

Release Checklist

  • [ ] All tests pass
  • [ ] No new warnings
  • [ ] Version bumped appropriately
  • [ ] Changelog updated (if maintained)
  • [ ] Debug/dev code removed
  • [ ] Environment config set for production
  • [ ] Build artifact tested on staging
  • [ ] Secrets not hardcoded

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.