What problem does it solve? When an AI agent ships code across many sessions, it becomes hard to answer "what has the agent actually committed?" This Skill retrieves git commits that are linked to agent sessions, so you can audit agent work by branch, repository, or recency without digging through raw git logs. ## Core Features & Use Cases - Filtered Commit Listing: Query agent-linked commits by branch, repository, or a numeric limit (default 100, capped at 500). - Session Context: Each commit is rendered with its linked session id, observation count, and file count so you can trace work back to the agent run that produced it. - Safe REST Fallback: When the memory_commits tool is unavailable, the Skill builds a GET /agentmemory/commits request with URLSearchParams encoding so branch names containing ?, &, or # do not corrupt the query. - Use Case: Ask "show agent commits on main" to get a reverse-chronological list like 9a1b2c3 main 2026-06-07 "rotate refresh tokens" · session 7f3a9c2 (14 obs). ## Quick Start Ask the assistant to show the agent-linked commits on the main branch, optionally with a limit such as "commit-history 5".