From github
Enforces development requirements: isolated worktrees, TDD workflow, conventional atomic commits, and protected PR process with review and CI.
How this command is triggered — by the user, by Claude, or both
Slash command
/github:requirementsresolve-issues/references/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Requirements ## Worktree and TDD Workflow - Use isolated worktrees for development and follow the protected PR workflow. - Apply a TDD cycle (red → green → refactor) with appropriate sub-agent support. - Reference resolved issues in commits and PR descriptions using auto-closing keywords. ## Commit Message Standards - **Use atomic commits for logical units of work**: Each commit should represent one complete, cohesive change. - Title: entirely lowercase, <50 chars, imperative mood (e.g., "add", "fix", "update"), conventional commits format (feat:, fix:, docs:, refactor:, test:, chore:...
npx claudepluginhub fradser/dotclaude --plugin github/git-workflowOrchestrates git workflow from code review and quality gates through commit, push, and PR creation to target branch. Supports flags: --skip-tests, --draft-pr, --no-push, --squash, --conventional, --trunk-based.
/feature-flow-wOrchestrates git worktree workflow for features: creates isolated worktree/branch from staged changes or issue number, lints/tests/commits, creates MR. Supports --skip flags and modes.
/commitPerforms systematic git commits by creating atomic commits with conventional commit messages via a dedicated workflow skill.
/tddStarts TDD workflow: ensures main branch, creates feature branch, follows Red-Green-Refactor cycle, keeps notes, commits changes, pushes to GitHub, and creates PR.
/start-issueFetches GitHub issue details, auto-detects bug or feature, sets up git branch or worktree, runs TDD workflow with coverage and security checks, commits changes, and creates PR.