ソース情報
- リポジトリ
- Hbin77/codex-kit
- ソースの最終更新活動
- 2026年8月7日 04:26
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Hbin77/codex-kit --skill investigateコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | investigate |
| description | Systematically diagnose a bug via structured root cause analysis |
Systematically investigate and diagnose a bug or issue using structured root cause analysis.
Issue: the task/scope the user described when invoking this skill (if none given, ask or infer from context)
N=$(( $(git rev-list --count HEAD) - 1 )); [ $N -gt 5 ] && N=5; if N is 0 (single commit), fall back to inspecting git log --oneline / git show. Then git log --oneline -$N and git diff HEAD~$N.Apply the 5 Whys:
Why did [symptom] happen? → Because [cause 1]
→ Why? Because [cause 2] → ... → Because [root cause]
Identify: Root cause, Contributing factors, Blast radius (what else the same root cause affects).
grep -rn "similar_pattern".## Investigation Report
### Issue
[one-line description]
### Reproduction
[steps]
### Root Cause
[5 Whys result]
### Fix Applied
- [file:line] — [what changed and why]
### Tests Added
- [test file] — [what it covers]
### Prevention
- [recommendations]