ワンクリックで
branch-finishing
Apply when closing out a feature branch — pre-merge checklist, rebase, CI verification, cleanup, and post-merge steps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Apply when closing out a feature branch — pre-merge checklist, rebase, CI verification, cleanup, and post-merge steps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Git-versioned agent memory — agents that never make the same mistake twice.
Apply when generating ideas, exploring solution space, or facilitating divergent thinking before committing to an approach.
Apply when writing or refactoring code. Generic rules to prevent the most common review comments — function length, naming, error handling, security, and tooling.
Apply when designing database schemas, writing migrations, or reviewing table structure. Covers naming, keys, indexes, constraints, nullability, and migration safety.
Apply when diagnosing a bug, reproducing a failure, or performing root cause analysis. Covers systematic isolation, binary search, logging strategy, and hypothesis-driven investigation.
Apply when writing or reviewing Dockerfiles, docker compose files, or container build pipelines. Covers layer caching, multi-stage builds, security hardening, and compose conventions.
| name | branch-finishing |
| description | Apply when closing out a feature branch — pre-merge checklist, rebase, CI verification, cleanup, and post-merge steps. |
| license | MIT |
| version | 1.0.0 |
| tokens_target | 1400 |
| triggers | ["finish branch","pre-merge checklist","branch cleanup"] |
| loads_after | ["git-conventions"] |
| supersedes | [] |
Purpose: Ensures every feature branch is cleanly rebased, reviewed, and merged without introducing regressions or leaving stale local state behind.
git diff main...HEAD and read every changed line; catch debug prints, commented-out code, and accidental file inclusions yourself first.wip:, fixup!, or tmp: commits so the branch history is clean; use git rebase -i to consolidate.Closes #NNN or Fixes #NNN in the PR body so the linked issue auto-closes on merge; never leave issues open manually after a successful merge.CHANGELOG.md (or the project's equivalent) before marking the PR ready for review.gh pr ready <number> to convert from draft; do not rely on reviewers noticing a draft PR that was silently updated.git push origin --delete <branch> or enable auto-delete in repository settings; stale remote branches pollute the branch list.git branch -d <branch> to keep the local workspace clean.main locally and run the test suite once to confirm the integrated state is green; do not assume CI on the PR branch is sufficient.git rebase to maintain a linear history unless the team explicitly requires merge commits.skills/git-conventions/SKILL.mdskills/review-deployment/SKILL.md