Ship with Confidence
Individual git operations skills: smart commits, structured PRs with custom templates, and semantic versioning with changelogs. Or use /ship-sdlc to run the full pipeline in one command.
PLAN
REVIEW
Want to run commit, review, version, and PR as one automated flow? See /ship-sdlc — the full orchestration workflow.
Individual Skills
Each pipeline step is a standalone skill. Use them independently when you don't need the full pipeline.
Commit with /commit-sdlc
Stashes unstaged changes, analyzes the staged diff alongside recent commit history to detect the project's commit style, then generates a matching commit message. You review and approve before the commit executes. The stash is restored after.
Open PR with /pr-sdlc
Analyzes all branch commits and the full diff to generate a structured PR description. Uses an 8-section default template or your custom template from /setup-sdlc --pr-template. Handles multi-account GitHub setups automatically.
Release with /version-sdlc
Detects the version source file, analyzes conventional commits since the last tag to infer the bump type (major/minor/patch), and presents a release plan for approval. On approval: bumps the version file, creates an annotated git tag, and pushes to origin.
One-Time Setup
Run /setup-sdlc --pr-template once per
project to create a custom PR description template at .claude/pr-template.md.
It scans your existing PR conventions, proposes a tailored template, and lets you refine it
interactively. Once saved, /pr-sdlc uses
it automatically for all future PRs.