What problem does it solve? Committing work is only half the job in a trunk-based repository; this Skill enforces a complete delivery workflow that takes approved changes from a working tree all the way to a merged pull request on origin/main, so nothing is left sitting on a side branch. ## Core Features & Use Cases - Scoped Commit Planning: Gathers changes via git status, runs a code review gate, and presents a file list plus a conventional commit message (feat, fix, refactor, docs, style, test, chore) for explicit user approval. - Trunk-Based Delivery: Never commits directly on main; creates a short-lived branch or an isolated worktree on shared checkouts, pushes, opens a pull request with gh, and merges with squash once local tests pass. - Local Test Gate and Cross-Agent Review: Runs the repository's test-local script before opening the pull request and requires a review from a different agent family (default Codex) instead of waiting on slow continuous integration. - Use Case: After finishing a bug fix, invoke /commit to have the change reviewed, committed with a standards-compliant message, pushed, merged to main, and the checkout parked back on a clean main branch. ## Quick Start Ask the assistant to commit the changes from this session using the /commit workflow and approve the proposed commit plan when presented.