원클릭으로
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