OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add rohitg00/agentmemory --skill commit-history
List recent git commits linked to agent sessions, optionally filtered by branch or repo. Use when the user asks "show agent commits", "what has the agent shipped", "list linked commits", or wants commits with their session context.
npx skills add rohitg00/agentmemory --skill commit-history
The user wants a list of agent-linked commits. Filter args: $ARGUMENTS
Expected output:
Render only the commits the tool returned, newest first. An empty result means the filter matched nothing, not that work is missing.
$ARGUMENTS for branch=<name>, repo=<url-or-fragment>,
limit=<n>. A bare numeric token is the limit. Defaults: no branch, no repo,
limit 100, max 500.memory_commits with the parsed filters.files is present.WRONG (REST fallback): concatenate ?branch= + raw branch name, so a name with
?, &, or # corrupts the query string.
RIGHT: URL-encode every value with URLSearchParams/encodeURIComponent before
appending to GET /agentmemory/commits.
commit-context: drill into one commit's session.recall: search the observations behind a linked session.See ../shared/TROUBLESHOOTING.md if memory_commits is not available.