Overview
These slash commands help automate common git workflows, enforce commit standards, and streamline collaboration through GitHub integration.Issue Analysis & Management
/analyze-issue
by jerseycheeseFetches GitHub issue details to create comprehensive implementation specifications, analyzing requirements and planning structured approach with clear implementation steps.
/fix-github-issue
by jeremymailenAnalyzes and fixes GitHub issues using a structured approach with GitHub CLI for issue details, implementing necessary code changes, running tests, and creating proper commit messages.
/fix-issue
by metabaseAddresses GitHub issues by taking issue number as parameter, analyzing context, implementing solution, and testing/validating the fix for proper integration.
Commit Management
/commit
by evmtsCreates git commits using conventional commit format with appropriate emojis, following project standards and creating descriptive messages that explain the purpose of changes.
/commit-fast
by steadycursorAutomates git commit process by selecting the first suggested message, generating structured commits with consistent formatting while skipping manual confirmation and removing Claude co-Contributorship footer.
Pull Request Management
/create-pr
by toyamarinyonStreamlines pull request creation by handling the entire workflow: creating a new branch, committing changes, formatting modified files with Biome, and submitting the PR.
/create-pull-request
by liam-hqProvides comprehensive PR creation guidance with GitHub CLI, enforcing title conventions, following template structure, and offering concrete command examples with best practices.
/fix-pr
by metabaseFetches and fixes unresolved PR comments by automatically retrieving feedback, addressing reviewer concerns, making targeted code improvements, and streamlining the review process.
Branch & Worktree Management
/create-worktrees
by evmtsCreates git worktrees for all open PRs or specific branches, handling branches with slashes, cleaning up stale worktrees, and supporting custom branch creation for development.
/update-branch-name
by giselles-aiUpdates branch names with proper prefixes and formats, enforcing naming conventions, supporting semantic prefixes, and managing remote branch updates.
Git Hooks
/husky
by evmtsSets up and manages Husky Git hooks by configuring pre-commit hooks, establishing commit message standards, integrating with linting tools, and ensuring code quality on commits.
Best Practices
When using version control slash commands:- Consistent Standards: Use commit commands to enforce conventional commit formats
- Issue Tracking: Link commits and PRs to issues for better traceability
- Review Automation: Leverage PR commands to streamline the review process
- Branch Hygiene: Use branch management commands to maintain clean repository structure
- Pre-commit Checks: Set up git hooks to catch issues before they’re committed