Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

git-bisect-debugginggit 二分调试

Agent Skill

git-bisect-debugging 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

512

周安装

22

GitHub Stars

11

下载量

180
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:git-bisect-debugging(git 二分调试)
来源仓库:https://github.com/sjungling/claude-plugins
仓库路径:skills/git-bisect-debugging
安装命令:
npx skills add https://github.com/sjungling/claude-plugins --skill git-bisect-debugging
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/sjungling/claude-plugins --skill git-bisect-debugging

简介

git-bisect-debugging 用于二分查找 Git 提交历史中的问题引入点,帮助定位导致错误的提交。

  • 适用于需要回溯代码变更、排查缺陷来源或验证修复效果的场景。
  • 通过交互式二分流程逐步缩小问题提交范围,支持自动化与手动结合使用。
  • 需确保本地仓库完整且可访问,操作可能涉及命令执行和文件读写权限。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Git Bisect Debugging

Overview

Systematically identify which commit introduced a bug or regression using git bisect. Binary search through commit history to find the exact commit that introduced the issue. Main agent orchestrates, subagents execute verification at each step.

Announce at start: "I'm using git-bisect-debugging to find which commit introduced this issue."

Quick Reference

PhaseKey ActivitiesOutput
1. Setup & VerificationIdentify good/bad commits, verify clean stateConfirmed commit range
2. Strategy SelectionChoose automated/manual/hybrid approachTest script or verification steps
3. ExecutionRun bisect with subagentsFirst bad commit hash
4. Analysis & HandoffShow commit details, analyze root causeRoot cause understanding

Limitations (By Design)

This skill focuses on straightforward scenarios. It does NOT handle:

  • Complex merge commit issues (would need --first-parent)
  • Flaky/intermittent test failures (would need statistical approaches)
  • Build system failures across many commits (would need advanced skip strategies)

For these scenarios, manual git bisect with user guidance is recommended.

Critical Rules

These are non-negotiable. No exceptions for time pressure, production incidents, or "simple" cases:

  1. ANNOUNCE skill usage at start
  2. CREATE TodoWrite checklist immediately (copy from "The Process" below)
  3. VERIFY safety checks in Phase 1 -- working directory must be clean, good commit must be verified good, bad commit must be verified bad. If any check fails, abort and fix before proceeding.
  4. USE AskUserQuestion for strategy selection in Phase 2 -- present all 3 approaches, do not default to automated without asking
  5. LAUNCH subagents for verification in Phase 3 -- never run verification in main context; each commit tested in isolated subagent via Task tool
  6. HANDOFF to systematic-debugging in Phase 4 -- after finding the bad commit, investigate root cause, not just what changed

If tempted to skip any rule: STOP. Follow the 4-phase workflow exactly. Skipping safety checks, skipping TodoWrite, defaulting to automated, running tests in main context, or stopping after finding the commit are all violations.

The Process

Copy this checklist to track progress:

Git Bisect Progress:
- [ ] Phase 1: Setup & Verification (good/bad commits identified)
- [ ] Phase 2: Strategy Selection (approach chosen, script ready)
- [ ] Phase 3: Execution (first bad commit found)
- [ ] Phase 4: Analysis & Handoff (root cause investigation complete)

Phase 1: Setup & Verification

Purpose: Ensure git bisect is appropriate and safe to run.

Steps:

  1. Verify prerequisites:

- Verify the current directory is a git repository - Verify working directory is clean (git status) - If uncommitted changes exist, abort and ask user to commit or stash

  1. Identify commit range:

- Ask user for good commit (where it worked) - Suggestions: last release tag, last passing CI, commit from when it worked - Commands to help: git log --oneline, git tag, git log --since="last week" - Ask user for bad commit (where it is broken) - Usually: HEAD or a specific commit where issue is confirmed - Calculate estimated steps: ~log2(commits between good and bad)

  1. Verify the range:

- Checkout bad commit and verify issue exists - Checkout good commit and verify issue does not exist - If reversed, offer to swap them - Return to original branch/commit

  1. Safety checks:

- Warn if range is >1000 commits (ask for confirmation) - Verify good commit is ancestor of bad commit - Note current branch/commit for cleanup later

Output: Confirmed good commit hash, bad commit hash, estimated steps

Phase 2: Strategy Selection

Purpose: Choose the most efficient bisect approach.

Assessment: Determine whether an automated test script can deterministically identify good vs bad.

MANDATORY: Use AskUserQuestion to present three approaches:

  1. Automated -- test script runs automatically (best for: test failures, crashes, deterministic behavior)
  2. Manual -- user verifies each commit (best for: UI/UX changes, subjective issues)
  3. Hybrid -- script + manual confirmation (best for: mostly automated with judgment calls)

If automated or hybrid selected:

Write a test script following the template at ./scripts/bisect-test-template.sh. Key guidelines:

  • Make it deterministic (no random data, use fixed seeds)
  • Make it fast (runs ~log2(N) times)
  • Exit codes: 0 = good, 1 = bad, 125 = skip
  • Include build/setup (each commit might need different deps)
  • Test ONE specific thing, not the entire suite

If manual selected:

Write specific verification steps for the subagent with concrete actions and expected outcomes. Avoid vague instructions like "see if it works."

Output: Selected approach, test script or verification steps

Phase 3: Execution

Architecture: Main agent orchestrates bisect, subagents verify each commit in isolated context.

For detailed subagent prompt templates and error handling patterns, see ./references/execution-patterns.md.

Execution summary:

  1. Run git bisect start <bad> <good>
  2. Loop: launch subagent via Task tool to verify current commit -> report good/bad/skip -> run git bisect good|bad|skip -> update progress
  3. Run git bisect reset to cleanup
  4. Return to original branch/commit

Output: First bad commit hash, bisect log showing the path taken

Phase 4: Analysis & Handoff

Purpose: Present findings and analyze root cause.

  1. Present the identified commit: Found first bad commit: <hash> Author: <author> Date: <date> <commit message> Files changed: <list from git show --stat>
  2. Show how to view details: View full diff: git show <hash> View file at that commit: git show <hash>:<file>
  3. Handoff to root cause analysis:

- Announce: "Now that the breaking commit is identified at <hash>, using systematic-debugging to analyze why this change caused the issue." - Use superpowers:systematic-debugging skill to investigate - Focus analysis on the changes in the bad commit - Identify the specific line/change that caused the issue - Explain WHY it broke (not just WHAT changed)

Output: Root cause understanding of why the commit broke functionality

Additional Resources

  • ./references/execution-patterns.md -- Subagent prompt templates and error handling
  • ./references/troubleshooting.md -- Common patterns, troubleshooting, and example workflows
  • ./scripts/bisect-test-template.sh -- Test script template for automated bisect

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.73%
按下载量换算54

windsurf

24.45%
按下载量换算44

trae

17.51%
按下载量换算32

OpenCode

10.64%
按下载量换算19

Codex

7.17%
按下载量换算13

Antigravity

3.12%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills