Skip to main content
prints the commit’s subject and body, including trailers, followed by its session note. It reads the session id from the trailer and looks up refs/notes/gitvow/<session-id>. Equivalent git commands, once gitvow install has set notes.displayRef:

Reading a note

Read it in this order. The plan tells you what the agent thought it was doing; compare it to the diff. Attribution tells you who wrote what: agent_share is the fraction of lines added in the commit that match the agent’s last written version of each file, and the per-file human counts say how much a person changed after the agent. A share of 1.0 means the commit is exactly what the agent produced; a low share on a file the agent touched means a person reworked it before committing. Step and turns tell you how deep into a session the change was made; a step 12 commit after 300 tool calls deserves a closer look than a step 1 commit after ten. Attribution works by recording the blob id of each file right after the agent writes it, then diffing that blob against the committed one. It is exact for what the agent wrote through its editing tools; edits the agent makes through shell commands are not attributed to it.

In a pull request

GitHub does not display git notes. The gitvow action posts every session note on the pull request as a comment and job summary. Locally: git fetch origin 'refs/notes/gitvow/*:refs/notes/gitvow/*' then gitvow show <sha>.

Finding sessions