# Build

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

- **Type:** Skill
- **Install:** `agentstack add skill-pvnarp-agent-skills-build`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [pvnarp](https://agentstack.voostack.com/s/pvnarp)
- **Installs:** 0
- **Category:** [Cloud & Infrastructure](https://agentstack.voostack.com/c/cloud-infrastructure)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [pvnarp](https://github.com/pvnarp)
- **Source:** https://github.com/pvnarp/agent-skills/tree/main/skills/build

## Install

```sh
agentstack add skill-pvnarp-agent-skills-build
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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
```bash
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
```bash
pip install -e .     # Install in dev mode
python -m pytest     # Run tests
python -m mypy .     # Type check
python -m ruff .     # Lint
```

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

### Gradle (JVM / Android)
```bash
./gradlew build          # Full build
./gradlew test           # Unit tests
./gradlew assembleDebug  # Debug build (Android)
```

### Rust / Cargo
```bash
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.

- **Author:** [pvnarp](https://github.com/pvnarp)
- **Source:** [pvnarp/agent-skills](https://github.com/pvnarp/agent-skills)
- **License:** MIT

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** yes
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-pvnarp-agent-skills-build
- Seller: https://agentstack.voostack.com/s/pvnarp
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
