ワンクリックで
operating-git
Gitワークフローの詳細なコマンド実行とトラブルシューティング。ステージングの原則は AGENTS.md を参照せよ。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Gitワークフローの詳細なコマンド実行とトラブルシューティング。ステージングの原則は AGENTS.md を参照せよ。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Plans a track, generates track-specific spec documents and updates the tracks file
Scaffolds the project and sets up the Conductor environment
Execute a pre-implementation investigation workflow modeled on feature-dev Phase 1-4 (Discovery, Codebase Exploration, Clarifying Questions, Architecture Design). Use this when requirements are ambiguous, architecture decisions are needed, or external validation (Win32 API, Rust crates, EmEditor SDK) is required before coding in Conductor tracks.
Executes the tasks defined in the specified track's plan
Analyzing GitHub Pull Request review comments and managing follow-up tasks. This skill utilizes GraphQL to efficiently fetch review comments and categorizes them into critical fixes, future improvements, or out-of-scope items. Mandatory when a PR has received feedback to systematically address reviewer suggestions and ensure all necessary changes are tracked in Conductor.
Facilitating the creation of Draft Pull Requests on GitHub using the GitHub CLI (gh). This skill guides the collection of branch diffs, issue context via GraphQL, and the generation of structured PR titles and bodies in Japanese. Mandatory when the current task is ready for review as a draft to ensure all necessary context and issue links are included.
| name | operating-git |
| description | Gitワークフローの詳細なコマンド実行とトラブルシューティング。ステージングの原則は AGENTS.md を参照せよ。 |
本スキルは、Git 操作の具体的な手順と、ミスを防ぐための確認フローを提供する。基本的な行動原則(git add . の禁止等)については AGENTS.md を最優先で遵守せよ。
意図しないファイルの混入を防ぐため、以下の手順を習慣化すること。
# 1. 変更内容の確認
git status
git diff
# 2. ファイルを個別にステージング (AGENTS.md 遵守)
git add path/to/file1 path/to/file2
# 3. ステージングされた内容の最終監査
git diff --staged
コミットメッセージの作成については referencing-commit-convention スキル、および AGENTS.md の規約に従うこと。
git add . してしまった場合直ちに以下のコマンドでステージングを解除せよ。
git reset
プッシュ前であれば、修正後に amend を検討せよ。
git add <forgotten_file>
git commit --amend --no-edit