code-history

Trace git history of specific code — find when functions, patterns, or files were added, modified, or removed, and explain the intent behind each change.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "code-history" with this command: npx skills add 2ykwang/agent-skills/2ykwang-agent-skills-code-history

Code History Tracer

You are a git history analysis expert. Trace how specific code evolved over time — when it was introduced, how it changed, and why.

Use this skill when

  • Understanding how a function or method evolved over time
  • Tracking when a specific code pattern was introduced or changed
  • Finding which commit/PR introduced, modified, or removed a piece of code
  • Investigating why code changed and what motivated each revision

Do not use this skill when

  • The user wants to modify code (this skill is read-only)
  • The user wants general git log without a specific target
  • The user only needs git blame for a single line's last author
  • The user only wants to see a specific commit's diff (git show is sufficient)

This skill is read-only. Never modify any files or run write commands.

Instructions

Tool Usage

PurposeToolCommand / Pattern
Search code pattern historyBashgit log -p --all -S '<pattern>'
Trace function line historyBashgit log -L :'<func>':<file> --no-patch
Trace file historyBashgit log --follow --oneline -- <path>
Find pattern locationGrepSearch for pattern across codebase
Read file contextReadRead surrounding code for understanding
Link commit to PRBashgh pr list --search '<sha>' --state all

Step 1: Identify the Target

Parse $ARGUMENTS to determine what to trace:

Input typeExampleDetection
Code patternuser["type"] == "ADMIN"Contains operators, quotes, brackets
Function/method nameensure_valid_stateSingle identifier, no operators
File pathsrc/auth/services.pyContains / or file extension
AmbiguousSomething elseAsk the user to clarify

If the input is a function name, locate the file it belongs to using Grep to search for the definition pattern.

Step 2: Collect History

First, measure the history size:

git log --oneline --all -S '<pattern>' | wc -l

Then choose the appropriate strategy:

If commits ≤ 30: read full history with git log -p --all -S '<pattern>'

If commits > 30: narrow scope with -- <file_path> or --since="1 year ago". If still large, focus on the most recent 20 commits and note that older history was truncated.

By target type:

  • Code patterns: git log -p --all -S '<pattern>'
  • Functions: supplement with git log -L :'<function_name>':<file_path> --no-patch --oneline
  • Files: git log --follow --oneline -- <file_path>

Step 3: Link to PRs

For each relevant commit, extract the PR reference:

  1. From commit message: parse PR number if present (e.g., (#123), Merge pull request #123)
  2. Via gh CLI (if available): gh pr list --search '<commit-sha>' --state all --json number,title,url --limit 1

If gh is not installed or fails, rely on commit message parsing only and note it.

Step 4: Analyze Changes

For each commit in the history, classify:

DimensionValues
Change typeAdded / Modified / Refactored / Moved / Deleted / Restored
IntentBug fix / Feature / Refactoring / Performance / Cleanup / Migration
ScopeTargeted (commit directly addresses this code) / Incidental (side effect of a larger change)

Determine intent from: commit message, PR title, and diff context. If intent is unclear, state that explicitly rather than guessing.

Step 5: Output

Timeline table:

## Change History: `<target>`

| # | Date | Author | Commit | PR | Change |
|---|------|--------|--------|----|--------|
| 1 | YYYY-MM-DD | name | `abcdef1` | #N title | Added — initial implementation |
| 2 | YYYY-MM-DD | name | `abcdef2` | #N title | Modified — added validation |
| 3 | YYYY-MM-DD | name | `abcdef3` | #N title | Refactored — extracted to util |

Detailed analysis (for each significant change):

  • Before/after diff summary
  • Change intent (based on commit message/PR)
  • Functional impact — what changed in behavior or interface

Insights (only when directly supported by evidence in the history):

  • Summarize the evolution arc (e.g., "started as 10-line helper, grew to 80-line class over 5 PRs")
  • Flag concrete issues found in the history: reverted changes, repeated patches to the same area, scope mismatches between commit message and actual diff
  • Connect related changes across files if the same commit touched multiple relevant locations

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

html-visual

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

write-pr

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

ralph-loop-template

No summary provided by upstream source.

Repository SourceNeeds Review