ワンクリックで
git
Manage commits, branches, and change history. Use when committing, branching, or managing version control.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage commits, branches, and change history. Use when committing, branching, or managing version control.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create and update AGENTS.md project rules. Use when authoring or amending the cross-tool conventions agents must follow.
Write forward-looking startup instructions for the next session, then reset context to save costs. Use when the context is getting long or before switching focus.
Run pre-release checks, pick the version bump, and cut the release. Use when ready to tag and release.
Create and maintain a specification that states what to build, not how. Use when writing a spec, editing requirements, or defining acceptance criteria.
Run all review dimensions against a diff or a path. Use when reviewing a feature branch before merge, reviewing someone else's PR, or auditing a file path.
Create or update project documentation. Use when creating architecture docs, runtime docs, reference docs, or design documents that explain what the system does.
| name | git |
| description | Manage commits, branches, and change history. Use when committing, branching, or managing version control. |
Commits are save points, branches are sandboxes, history is documentation. Treat them accordingly.
Conventional Commits — type(scope): subject. Types: feat, fix, refactor, chore, docs, test, build, ci, perf. Single-line subject, aim under 50 characters and never over 72. Do not put issue references or links in the subject ((#123), Fixes #123) — those belong in the PR body. Defer to the repo's AGENTS.md or contributing guide if it overrides this.
Separate refactoring from feature work. Separate formatting from behavior changes.
signal-toolkit, not feat/signal-toolkit.--force-with-lease over --force.git -C <path> — always cd into the target first. It hides the real working directory and risks operating on the wrong repo.git fetch --prune to clear stale tracking refs.When exploring uncertain changes, commit early with a clear message. If the approach doesn't work out, you can revert cleanly. Uncommitted work can't be reverted — only lost.
After a set of changes, provide a structured summary: