> ticket decomposition, branch strategy, and PR sequencing. Use when breaking a PRD into tickets or designing the branch/PR sequence.
npx skills add https://github.com/borghei/Claude-Skills --skill spec-to-repo
A delivery-focused skill that bridges product spec to repository work.
Where PRD-writing skills focus on what to build, this skill focuses on
how to break it down for execution — the ticket decomposition,
branch strategy, PR sequencing, and acceptance criteria that make a
spec actually ship.
Before generating the repo plan, confirm these inputs. If any is unknown or vague, ASK — do not assume:
Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
prd_to_tickets_decomposer.py with the user stories + technicalnotes to surface a candidate ticket tree (epic → tickets → subtasks)
with size estimates and dependencies.
python3 spec-to-repo/scripts/prd_to_tickets_decomposer.py \
--input prd.json --format markdown
pr_scope_analyzer.py to flag oversized PRs, missing tests,missing telemetry, and risky merges.
python3 spec-to-repo/scripts/pr_scope_analyzer.py \
--input pr_plan.json --format markdown
git branch --list).branch_naming_validator.py to flag non-conformant names.python3 spec-to-repo/scripts/branch_naming_validator.py \
--input branches.txt --format markdown
| Size | Effort | Description |
|------|--------|-------------|
| XS | < 0.5 day | Trivial; usually skip ticketing |
| S | 0.5–1 day | One simple change |
| M | 1–3 days | Single feature, well-scoped |
| L | 3–5 days | Multi-day work; should split if possible |
| XL | > 5 days | Always split — too big for confident estimate |
A ticket that's L or XL almost always hides a missing decomposition. Push
back on yourself.
Epic — large product feature ("Notifications v2")
├── Story — user-facing capability ("As a user I can mute by channel")
│ ├── Ticket — one engineering work item (backend, frontend, infra)
│ │ └── Subtask — atomic step (optional)
Most orgs:
Best ticket: ships a small user-visible improvement end-to-end.
When you can't slice vertically (e.g., backend is weeks before frontend):
For a multi-PR feature:
Each PR < 400 lines if possible. Reviewability collapses above 400.
Per ticket:
Per epic:
references/spec-to-ticket-decomposition.md — patterns for breaking specs into ticketsreferences/branch-strategy-for-features.md — branching, feature flags, dark-launchreferences/pr-discipline-and-conventions.md — PR size, review, definition-of-doneproduct-team/agile-product-owner — sprint planning, prioritizationengineering/feature-flags-architect — flag strategyengineering/observability-designer — SLO / telemetryc-level-advisor/vpe-advisor — broader delivery contextproject-management/ skills — ticket / sprint management toolingGuide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
Take borghei/spec-to-repo from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.