com um clique
operating-git
Gitワークフローの詳細なコマンド実行とトラブルシューティング。ステージングの原則は AGENTS.md を参照せよ。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Gitワークフローの詳細なコマンド実行とトラブルシューティング。ステージングの原則は AGENTS.md を参照せよ。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Assists in Kotlin development for the "Customize Word Separators" IntelliJ plugin. Provides advanced expertise in layered architecture responsibility management, WordParser regular expressions, IDE action implementations, and strict naming conventions to ensure the quality of refactoring and feature extensions.
Enforce autonomous technical research and evidence-based implementation. Search for and obtain the latest documentation for IntelliJ Platform SDK, Kotlin, Gradle, and related technologies. Verify consistency with project conventions and use it when proposing implementations.
Executing Spec-Driven Development (SDD) via the Conductor framework. This skill governs track initialization, spec.md/plan.md creation, and the Universal File Resolution Protocol. It mandates strict adherence to phase transition protocols, user manual verification, and checkpointing. Required for all high-level task management and architectural decision-making.
Standardizing the creation and management of GitHub Issues. This skill MANDATES the use of a specific title format (type: Japanese Description) and a body template including Background/Purpose, Tasks, and Goal sections. It ensures consistency in tracking work items and facilitates clear communication of intent and success criteria. Use whenever creating or updating Issues to maintain project transparency.
Handles the creation of GitHub Sub-issues. Use this skill when you need to add existing issues as sub-issues to a parent Epic/Issue. It provides the correct usage of the `sub_issue_write` tool and fallback procedures using GitHub CLI (`gh api`) if the tool fails.
Operates JetBrains IDEs (IntelliJ, etc.) via MCP. Supports project exploration, code reading, structural refactoring, and execution/verification using full IDE capabilities for efficient development.
| 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