Skip to main content

Agent skills

ProdVerdict ships two thin Cursor agent skills — setup and pre-PR verify. Deterministic checks only; no LLM in the evaluation path.

Skills

SkillTriggersWhat it does
prodverdict-setup"Set up ProdVerdict", "install prodverdict", billing driftBootstrap config, workflow, MCP, rule, skills
prodverdict-verify"Verify before PR", "run prodverdict checks"Doctor + check all loop until pass

Source: examples/skills/ in the public SDK.

Works even when the repo has no prodverdict.yml yet:

npx skills add prodv-dev/prodverdict-sdk@prodverdict-setup -g -y
npx skills add prodv-dev/prodverdict-sdk@prodverdict-verify -g -y

Then tell your agent: "Set up ProdVerdict for this repo."

Browse skills: skills.sh

Project install (automatic on bootstrap)

npx prodverdict setup --yes copies both skills into .cursor/skills/ so the whole team gets them:

.cursor/skills/prodverdict-setup/SKILL.md
.cursor/skills/prodverdict-verify/SKILL.md

Skip with --skip-skills.

Relationship to other agent wiring

MechanismWhen it applies
Global skillsBefore any repo files exist
Project skills (bootstrap copy)Shared via git in .cursor/skills/
Cursor rule (prodverdict-agent.mdc)In-repo contract reference after setup
Local MCPTool calls: bootstrap_prodverdict, doctor, check_*

Skills are the pre-setup entry point. After bootstrap, the cursor rule and MCP tools take over for day-to-day checks.

Docs