What problem does it solve? Manually saving memory during agent sessions is error-prone and easy to forget, leading to lost context and missing observations. This Skill explains how the agentmemory plugin's lifecycle hooks capture observations automatically across the entire session without manual saves. ## Core Features & Use Cases - Automatic Observation Capture: Hooks registered on 12 lifecycle events (SessionStart, PostToolUse, UserPromptSubmit, PreCompact, and more) record tool use, prompts, and session boundaries with zero LLM cost. - Session Continuity: Session start and end hooks frame each unit of work so the handoff skill can resume it, and a post-commit hook links commits to sessions for commit-context and commit-history. - Debugging Missing Observations: Use it to diagnose why observations are not being recorded by verifying the plugin is enabled and the server is running. - Use Case: After installing the agentmemory plugin, watch observations land live at http://localhost:3113 and tune capture behavior with the AGENTMEMORY_AUTO_COMPRESS and AGENTMEMORY_INJECT_CONTEXT opt-in flags. ## Quick Start Install the agentmemory plugin from the marketplace and confirm that observations appear live at http://localhost:3113 during your next session.