What problem does it solve? Teams working in a GitHub-hosted repository need consistent discipline around task tracking, branch naming, commit formats, PR creation, and merge order. This Skill encodes the full delivery workflow as enforceable rules so an AI agent creates tasks, branches, commits, and pull requests exactly the way the repository requires, with guards catching violations before they reach the remote. ## Core Features & Use Cases - Task and branch pairing: Creates a GitHub issue and board card, then derives the branch name in the form RT-<number>-<slug> so every PR traces back to a tracked task. - Delivery guards: Refuses commits to the main branch, PRs from branches without task numbers, force pushes on stacked branches, and destructive commands like reset --hard on dirty trees. - Board and PR automation: Ships scripts/board.sh to add issues to the GitHub Projects board and move their Status column, plus reference forms for PR bodies and changelog entries. - Use Case: An agent picks up task RT-88, creates the branch RT-88-add-select-button from the epic branch, commits with a conventional-commit subject, pushes as the machine account, and opens a draft PR whose body links the task with Closes #88. ## Quick Start Ask the agent to create a task and branch for a new piece of work, then commit, push, and open a pull request following this repository's delivery rules.