Agent skills
ProdVerdict ships two thin Cursor agent skills — setup and pre-PR verify. Deterministic checks only; no LLM in the evaluation path.
Skills
| Skill | Triggers | What it does |
|---|---|---|
prodverdict-setup | "Set up ProdVerdict", "install prodverdict", billing drift | Bootstrap 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.
Global install (recommended before first setup)
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
| Mechanism | When it applies |
|---|---|
| Global skills | Before 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 MCP | Tool 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
- AI agent setup — bootstrap flow and agent JSON
- Cursor setup — MCP config