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.
| Capability | What it does |
|---|---|
| Collect | Captures git hook events and sends them to Autographical |
Quickstart
Install the autographical-git-collect binary:
brew install autographical/tap/autographical-git-collectOr 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 repositoryThe 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.