agentsclimarketplace

Build

Skill pvnarp/agent-skills/skills/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.From its SKILL.md

Install
npx -y skills add pvnarp/agent-skills --skill build

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 1 stars1 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.
  • runs commandsInstructs the agent to run 8 commands, including `npm install` and 7 more.

SKILL.md

1.7 KB, 379 tokens by cl100k_base, as published. Nobody here has run it

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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.