From sd0x-dev-flow
Investigates Git history to track code changes, locate bug introductions, and analyze root causes for files, lines, functions, or keywords.
npx claudepluginhub sd0xdev/sd0x-dev-flow --plugin sd0x-dev-flowThis skill is limited to using the following tools:
- Keywords: code history, git blame, track changes, who wrote this, when was it changed, root cause, code archaeology
Traces latest changes to file ranges or code snippets via git blame and deduplicated entire explain lookups to explain code provenance.
Traces bug introductions in git history, identifies root cause commits using fix analysis and diffs, explains causes, and generates structured post-mortem reports.
Analyzes git history using git log, blame, shortlog to trace code evolution, map contributors, and identify commit patterns for repo archaeology.
Share bugs, ideas, or general feedback.
/git-investigate src/service/xxx.ts:123 # Specific line
/git-investigate processToken # Function name
/git-investigate "error message" # Keyword
Locate code -> git blame -> find commit -> trace history -> analyze changes -> report
| Question | Method |
|---|---|
| Who wrote it? | git blame |
| When was it changed? | git log --follow |
| Why was it changed? | commit message + PR |
| What was missed? | git diff compare original vs problematic version |
| Pattern | Symptom | Root Cause |
|---|---|---|
| Type removed | Enum value deleted | Assumed no longer needed |
| Condition simplified | If conditions reduced | Missed during refactoring |
| Rename | Partially unchanged | Incomplete search-and-replace |
| Boundary ignored | Only handles main flow | Edge cases not considered |
## Git Investigation Report
- **Target**: <file/feature>
- **Timeline**: <commit range>
- **Root cause**: <analysis>
- **Introduced by**: <commit hash + author>
references/commands.md - Git command reference + report templateInput: Who changed this line of code?
Action: git blame -> find commit -> trace PR -> output report
Input: When was this bug introduced?
Action: git log -p -S -> locate introduction point -> analyze cause -> output report