Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Analyze code changes and detect intent drift using pr-to-spec CLI
Convert code changes into structured, agent-consumable specs with intent drift detection.
Analyze current branch changes vs main and output a structured spec.
pr-to-spec scan --branch main --json
Use --diff N to scan last N commits, or --staged for staged changes only.
Scan current changes AND check for drift against declared intent.
pr-to-spec check --json
Returns exit code 3 if drift is detected, 2 if high-risk, 0 if clean.
Declare what this change is supposed to do.
pr-to-spec intent set --goal "Add rate limiting to API" --scope "src/middleware/**" --forbid "src/db/**" --max-risk medium
Show the current intent declaration.
pr-to-spec intent show --json
All --json output is wrapped in the agent protocol envelope:
{
"version": 1,
"command": "check",
"status": "drift_detected",
"exit_code": 3,
"signals": [...],
"spec": {...},
"intent": {...}
}
| Code | Meaning |
|---|---|
| 0 | Clean — no issues |
| 1 | Error |
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill pr-to-specHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.