Skip to Content
ConnectGitOverview

Autographical for Git

Autographical integrates with the Git  CLI to capture local git activity — commits, merges, rebases, branch switches, and pushes — and forwards events to Autographical so they correlate with your AI assistant sessions and other developer activity.

CapabilityWhat it does
CollectCaptures git hook events and sends them to Autographical

Quickstart

Install the autographical-git-collect binary:

brew install autographical/tap/autographical-git-collect

Or grab a binary archive from the releases page .

Then register hooks. Two modes:

autographical-git-collect install # every repo on this machine autographical-git-collect install --local # just this repository

The global install writes hook stubs to ~/.local/share/autographical/git-hooks/ and points git config --global core.hooksPath at that directory. The local install writes stubs into the current repo’s .git/hooks/ directly and doesn’t touch any git config. Repo-local hooks in .git/hooks/ continue to fire either way — the collector chains to them after capturing its event.

See Collect for build/install steps, configuration, and what each captured event contains.

Last updated on