dev-api/SKILL.md
Use when designing, building, documenting, or maintaining RESTful APIs in this project. Enforces the project's style guide, response envelopes, pagination, field naming, and release readiness.
npx skillsauth add paulund/ai dev-apiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
snake_case for all JSON field names, query parameters, and error detail keys.Z (YYYY-MM-DDTHH:MM:SSZ).{
"data": [ ... ],
"meta": { "total": 120, "page": 2 },
"links": { "next": "...", "prev": "..." }
}
{
"error": {
"code": 422,
"message": "Validation failed",
"details": { "field_name": ["Error message"] }
}
}
page and per_page query params. Enforce sensible defaults and a max limit./v1/, /v2/). Confirm with the user before introducing breaking changes./getUsers) or camelCase in URLs.| Topic | Reference | Load When | |-------|-----------|-----------| | OpenAPI Specification | references/openapi-specification.md | Writing, updating, or validating an OpenAPI spec | | Pre-Release Checklist | references/pre-release-checklist.md | Before releasing a new API or major endpoint |
development
Use when the user wants to run the project's lint + types + build sequence as a gate before pushing, opening a PR, or merging. Invoked by chained dev skills between phases. Trigger phrases - "/quality-gate", "run the quality gate", "check it builds".
tools
Use when the user wants to verify a PR's feature works at runtime by booting the dev server, exercising the affected UI via Chrome DevTools MCP, and posting a screenshot summary back to the PR. Idempotent — skips if `verified` or `verify-failed` is already on the PR. Trigger phrases - "/pr-verify", "verify this PR", "runtime check the pr".
testing
Use when the user wants a security-focused review pass on a PR with findings actioned as commits on the same branch. Trigger phrases - "/pr-security-review", "security review and fix".
testing
Use when the user wants to open a pull request for an already-pushed branch that implements a specific issue. Idempotent — returns the existing PR if one is already open for the branch. Trigger phrases - "/pr-open", "open the pr", "create pr for this branch".