Skip to main content

Extract and analyze git commit history with support for filtering by trailers, date ranges, and AI-powered summarization for changelogs

Project description

git-history-extraction

A tool to extract and filter git commit history, making it easy to pipe to AI tools for changelog generation and summaries.

Features

  • Extract git commits with metadata (SHA, date, files, message)
  • Filter commits by time range or starting commit
  • Extract and filter git trailers (e.g., Co-authored-by, User-Facing)
  • Output in simple text or JSON format
  • Pipe output to AI tools (OpenAI, Gemini, Claude) for automated summarization

Installation

Using uv (Recommended)

No installation needed! The tool can be run directly:

uv run git-history-extraction --help

Install as Package

pip install git-history-extraction

Usage

Basic Examples

Extract commits from the last 24 hours (default):

git-history-extraction

Extract commits from the last 7 days:

git-history-extraction --since "7 days ago"

Extract commits from a specific repository:

git-history-extraction --repo /path/to/repo --since "1 week ago"

Output Formats

Simple text format (default):

git-history-extraction --since "1 day ago"

JSON format for piping to other tools:

git-history-extraction --since "1 day ago" --format json

TOON format (compact, LLM-optimized):

git-history-extraction --since "1 day ago" --format toon

Commit Range Selection

By time range:

git-history-extraction --since "2024-01-01"

From a specific commit to HEAD:

git-history-extraction --since-commit abc1234

Git Trailers

Extract specific trailers only (case-insensitive):

git-history-extraction --since "1 week ago" --trailers "co-authored-by,reviewed-by"

Piping to AI Tools for Summarization

This tool extracts and formats git history, making it easy to pipe to AI tools for summarization. The tool itself does not perform AI summarization—it prepares the data so you can use your preferred AI tool.

The tool enables you to extract targeted slices of git history for different audiences. For example, use git trailers like User-Facing: to mark end-user changes, then extract and pipe them to AI for changelogs or internal notifications.

Creating Structured Git Trailers with AI

Combine with aiautocommit to automatically generate git trailers during commits. This creates a structured history that can be easily filtered and summarized for different audiences.

Example custom commit prompt for aiautocommit:

# IMPORTANT: Your Instructions

You are an expert software developer. Generate a commit message from the `git diff` output below using these rules:

## 1. Subject Line

- Use a conventional commit prefix:
  - `feat`: New features
  - `fix`: Bug fixes, including user-visible design or style fixes.
  - `docs`: Changes only to internal documentation (e.g., `.md`, `.rst`) or code comments.
  - `style`: Formatting, linting, or code style changes in code files.
  - `refactor`: Code structure improvements (no behavior changes).
  - `build`: Updates to build scripts or configs (e.g., `Makefile`, `Justfile`, `Dockerfile`, `package.json`).
  - `deploy`: Deployment script or IAC updates.
  - `test`: Changes to tests
- Add optional scope in parentheses when changes affect a specific module (e.g., `feat(auth): add login`)
- Limit to 50 characters after the prefix and scope.
- Use imperative mood (e.g., "improve layout").
- Describe the intent or outcome (e.g., "prevent text overflow" not "add break-all").
- Be specific about the change ("validate email format" not "improve validation").

## 2. Extended Commit Message

- Include only if changes have non-obvious implications, fix complex bugs, or introduce breaking changes.
- Separate from subject with one blank line.
- Use markdown bullets focusing on **why** the change was needed and **what impact** it has.
- Mention side effects, user impact, or important trade-offs.

## 3. User-facing Changes

If the change is something that a end-user (not internal admin!) would see, include a `User-facing:` git trailer with a sentence
or two explaining, to the user, what they would see differently because of this change.

## 4. General Guidelines

- Prioritize the purpose of changes over listing tools or properties used.
- Keep concise; avoid obvious or verbose details.
- Always generate a message based on the diff, even with limited context.

## 5. Scopes

Optional scopes (e.g., `feat(api):`):

- `match`: frontend or backend changes tied
- `site`: content, additional pages, etc for the static site content
- `internal-admin`: internal admin changes (including CMS)

With this setup, commits automatically get User-facing: trailers. You can then extract and summarize them:

# Extract only user-facing changes from the last sprint
git-history-extraction --since "last monday" --trailers "User-facing" | \
  gemini -i "Create a user-friendly changelog from these changes"

Using with Gemini CLI

Extract user-facing changes and generate a non-technical summary:

git-history-extraction --repo . --since "last monday" \
  --trailers "User-Facing" | \
  gemini -i "This is a compressed git history identifying user-facing changes. \
Can you write a 1-2 sentence overview of the changes, with a list of bullets \
identifying changes. This is for a non-technical internal audience, letting \
them know what the development team has done. Separate into 'new' and 'fixed' \
sections. Include a 'Updates Since' with the date of the first commit in the \
history. Remove fluff, keep it concise and information dense."

Using the OpenAI Playground Script (Optional)

An optional playground script is included that demonstrates OpenAI integration:

# Generate summary with OpenAI
git-history-extraction --since "1 week ago" --format json | \
  uv run playground/summarize_commits.py

# Preview the prompt without calling OpenAI
git-history-extraction --since "1 week ago" --format json | \
  uv run playground/summarize_commits.py --dump-prompt

Requirements:

  • OPENAI_API_KEY environment variable
  • The script uses GPT-4o-mini by default

This is just an example—you can pipe to any AI tool you prefer. See playground/README.md for more details.

Output Format

Simple Format

Each commit is displayed with:

  • Commit: SHA hash
  • Date: ISO 8601 timestamp
  • Files: Comma-separated list of changed files
  • Message: Commit body with trailers removed

JSON Format

Array of commit objects:

[
  {
    "sha": "abc123...",
    "date": "2024-10-31T08:00:00-06:00",
    "body": "commit message with trailers",
    "files": ["file1.py", "file2.md"]
  }
]

TOON Format

TOON (Token-Oriented Object Notation) is a compact, human-readable format designed for LLM contexts. It achieves 30-60% fewer tokens than equivalent JSON while maintaining readability:

sha: abc123...
date: "2024-10-31T08:00:00-06:00"
body: "commit message with trailers"
files[2]: file1.py,file2.md

TOON format is particularly useful when piping git history to AI tools, as it reduces token usage and associated costs.

Options

Option Description Default
--since TEXT ISO date/time or relative time "24 hours ago"
--since-commit TEXT Start from specific commit (overrides --since) None
--repo DIRECTORY Path to git repository . (current directory)
--trailers TEXT Comma-separated trailer keys to extract None (show all)
--format [simple|json|toon] Output format simple

How It Works

  • Uses git log with custom formatting for efficient single-pass extraction
  • Parses commit metadata, body, and file changes in one command
  • Intelligently extracts git trailers from commit messages
  • No per-commit subprocess calls for optimal performance

Development

The main logic lives in git_history_extraction/__init__.py. The tool is structured as a Python package with:

  • main.py: Entry point script
  • git_history_extraction/: Core module with extraction logic
  • playground/: Optional AI summarization scripts

Running Tests

pytest

Limitations

  • Large commit ranges may generate significant output; consider narrowing the time range
  • This tool extracts and formats data only—AI summarization requires external tools
  • Git must be available in PATH

Requirements

  • Python >= 3.9
  • git
  • uv (recommended) or pip

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

git_history_extraction-0.4.0.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

git_history_extraction-0.4.0-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file git_history_extraction-0.4.0.tar.gz.

File metadata

File hashes

Hashes for git_history_extraction-0.4.0.tar.gz
Algorithm Hash digest
SHA256 b3b2772215b5b2678f90efb4f24af82090cf7dd6c070db31277dcbc169bb972d
MD5 95d8ff94a15e1b6e2fcd565a6b544aeb
BLAKE2b-256 380e895b19ea7e69d8befe0e8b8fa2cee4c68712223ae591329784d3a3d6c940

See more details on using hashes here.

File details

Details for the file git_history_extraction-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for git_history_extraction-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 880f42d54e0917082f524af2805e92e80f42eacf88e21a59496412e1c86d8d7c
MD5 17b2af432549110c1951e6bc13caed36
BLAKE2b-256 13c6de97279201cf8ec366b34148102f19ceed23ff1217ec920c284b9e0c10f2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page