git-workflow
Use when managing Git branches, creating commits, or preparing pull requests
git-commit-summarizer
Summarizes git commits for specified users over a given time period and generates markdown reports
testing-plan-from-history
Use when you need testing instructions for changes in a branch, before manual QA or creating a PR
branch-discipline
Enforce one branch per issue, small focused commits, and clean git history. Use with /branch command.
add-test-coverage
Analyze recent changes and add test coverage for HEAD commit
sync-a-git-branch
Provides fork-aware branch synchronization with automatic remote detection and safe merge handling. Detects fork vs origin repositories, fetches from correct remotes (upstream for forks), and handles fast-forward merges with conflict prevention. Use for 'sync branch', 'pull latest', 'get latest changes', 'sync with upstream', 'update from main'.
parallel-exploration
Use when researching unfamiliar code, multiple modules involved, or external libraries referenced
scaffold-repo
Initialize a new Python repository with correct structure following RAE guidelines
working-on-an-issue
Use when asked to work on, read, or implement a GitHub issue.
requesting-code-review
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
code-review
コードレビュースキル。現在のブランチとリモートオリジンの作成元ブランチとの差分を分析。Use when: コードレビュー、PR前チェック、変更点確認を依頼された時。
premerge-check
プレマージワークフローをローカルで実行してCI/CDチェックを行うスキルです。プルリクエストを作成する前にlint、test、buildをローカル環境で検証したい場合に使用してください。
git-commit
Used when committing staged changes. Generates appropriate commit messages and confirms changes before creating commits.
commit-helper
Generates clear, conventional commit messages from git diffs. Use when writing commit messages or reviewing staged changes.
gh-address-comments
Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.
git-conventional-commits
Apply when writing commit messages to maintain consistent, readable git history that enables automated changelog generation.
finishing-a-development-branch
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
github-tools
Executes GitHub operations via gh CLI wrapper. Use when managing issues, pull requests, workflows, CI runs, projects, releases, cache, labels, or searching repositories and code.