
Session History
Pull a truthful timeline of recent Claude Code sessions on this project via agentmemory MCP when you need continuity after a break.
Install
npx skills add https://github.com/rohitg00/agentmemory --skill session-historyWhat is this skill?
- User-invocable skill for "what did we do last time" and session history requests
- Calls `memory_sessions` MCP with `limit: 20` for a meaningful window
- Formats reverse-chronological timeline with session id prefix, status, observations, summaries
- Explicit rule: never fabricate sessions—only MCP-returned data
- Troubleshooting path when agentmemory MCP is missing (plugin list, restart, /mcp)
Adoption & trust: 1.2k installs on skills.sh; 21.8k GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Microsoft Foundrymicrosoft/azure-skills
Azure Aimicrosoft/azure-skills
Azure Hosted Copilot Sdkmicrosoft/azure-skills
Lark Eventlarksuite/cli
Running Claude Code Via Litellm Copilotxixu-me/skills
Setup Matt Pocock Skillsmattpocock/skills
Journey fit
Primary fit
Session recall is project-management continuity during Build when you resume work and need context without guessing. PM subphase covers tracking what was decided and done across working sessions—not writing feature code itself.
Common Questions / FAQ
Is Session History safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Session History
Fetch recent session history using the `memory_sessions` MCP tool (provided by the agentmemory server that this plugin wires up automatically via `.mcp.json`). Pass `limit: 20` to get a meaningful window. Present the returned sessions in reverse chronological order: - Show the session ID (first 8 chars), project, start time, and status - For each session with observations, show the key highlights (type + title) - Note the total observation count per session - If a session summary exists, surface the title and the key decisions Format as a clean timeline. **Do NOT make up sessions** — only show what the MCP tool actually returned. If `memory_sessions` isn't available, the stdio MCP shim didn't start — tell the user to: 1. Run `/plugin list` in Claude Code and confirm `agentmemory` shows as enabled. 2. Restart Claude Code (the plugin's `.mcp.json` is only read on startup). 3. Check `/mcp` to see whether the `agentmemory` MCP server is connected.