Public collection of agent skills for development workflows.
Each skill is a directory with:
SKILL.md— agent-facing instructions with required frontmatterREADME.md— human-facing overview
| Skill | Purpose | Docs |
|---|---|---|
write-a-prd |
Draft or refine product requirements documents. | README |
prd-to-plan |
Convert a PRD into an implementation plan. | README |
do-work |
Execute an implementation plan in small validated steps. | README |
write-a-skill |
Create or improve an agent skill. | README |
find-skills |
Discover useful skills in a repository. | README |
grill-me |
Stress-test an idea, plan, PRD, or implementation. | README |
handle-coderabbit |
Triage and apply CodeRabbit review comments. | README |
bun-integration-tests |
Scaffold Bun integration test infrastructure for TypeScript apps. | README |
Install one skill by path:
npx skills add https://github.com/Greynner/skills.git --skill utils-skills/write-a-prdReplace the path with the skill you want.
for d in utils-skills/*/; do
uvx --from skills-ref agentskills validate "${d%/}"
done