Close the active backlog task (detected from branch name), commit all changes, push to remote, and open a pull request. Use when the user says "close task and ship it", "close task commit push pr", or invokes /close-task-commit-push-pr.
git statusgit diff HEADgit branch --show-currentgit rev-parse --verify main 2>/dev/null && echo main || echo mastergit log --oneline -10Close the active backlog task, commit all changes, push, and open a pull request.
feature/task-113-split-css-modules → task-113).Close the task before committing so the task file changes are included in the commit and PR.
mcp__backlog__task_view to read the task details (title, acceptance criteria).mcp__backlog__task_edit to:
DonefinalSummary that concisely describes what was implementedmcp__backlog__task_complete to move the task to the completed folder.Before committing, analyze git status and git diff HEAD to identify logically distinct groups of changes. Group by feature or concern — for example:
Print a short commit plan (list of planned commits with the files in each) so the grouping is visible.
git add -A; never stage .env or credential files).Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>main or master, create a new feature branch first (use a descriptive name based on the changes).-u to set upstream tracking.gh pr create targeting the main branch.## Summary
<1-3 bullet points describing the changes>
## Test plan
- [ ] <testing checklist items>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
mcp__backlog__task_edit to append the PR URL/number to the finalSummary.git commit --amend --no-edit then git push --force-with-lease.-i).