End-to-end ship flow: messy working tree → clean commit chunks → pushed
branch → open PR.
This skill is pure composition — it only invokes capability-layer skills.
-
Plan the chunks. Invoke /identify-commits. It reads the working
tree, proposes the smallest coherent commit chunks, and waits for the
user to approve or edit the plan. Capture the approved plan.
-
(Conditional) Create branch. If you are not on a feature branch,
invoke /branch to create one. The branch name should reflect the
overall intent of the change, not the individual commit chunks.
-
Commit each chunk. For each chunk in the approved plan, in order:
/commit <chunk.files...>
The capability skill stages the listed files, writes a
Conventional-Commits message, and invokes commit-vcs to create the
commit. Collect the commit hash it reports.
-
Open the PR. Invoke /pr. It refuses if we're on main, pushes
the branch, renders the PR body from
docs/harness/vcs/pr-template.md, and invokes pr-vcs to open the PR.
-
Report. Print one line per commit (<hash> <subject>) followed
by the PR URL from /pr.