Tech News
← Back to articles

If AI writes code, should the session be part of the commit?

read original related products more articles

git-memento is a Git extension that records the AI coding session used to produce a commit.

It runs a commit and then stores a cleaned markdown conversation as a git note on the new commit.

Goal

Create commits with normal Git flow ( -m or editor).

or editor). Attach the AI session trace to the commit ( git notes ).

). Keep provider support extensible (Codex first, others later).

Produce human-readable markdown notes.

Command

Initialize per-repository memento settings:

git memento init git memento init codex git memento init claude

... continue reading