---
id: gh-agentmemory-hooks
name: "agentmemory-hooks"
url: https://skills.yangsir.net/skill/gh-agentmemory-hooks
author: rohitg00
domain: ai-agent-memory-knowledge
tags: ["agent-memory", "ai-agent", "lifecycle-hooks", "observation-capture", "memory-management"]
install_count: 9200
rating: 4.50 (120 reviews)
github: https://github.com/rohitg00/agentmemory/tree/main/plugin/skills/agentmemory-hooks
---

# agentmemory-hooks

> 此技能通过自动捕获 AI 智能体生命周期中的观察数据，实现记忆的自动化管理。它能帮助开发者理解记忆捕获机制，调试缺失的观察数据，并优化记录内容，从而提升智能体的自主学习和决策能力。

**Stats**: 9,200 installs · 4.5/5 (120 reviews)

## Before / After 对比

### 智能体记忆调试效率

**Before**:

用户需要手动保存智能体的每次操作和观察，或者花费大量时间排查为何智能体记忆缺失，导致开发效率低下且难以准确追踪智能体行为。

**After**:

此技能自动捕获智能体生命周期中的所有观察数据，显著减少手动干预，使开发者能快速定位记忆问题，并优化记录策略，从而大幅提升调试效率和智能体行为的可追溯性。

| Metric | Before | After | Change |
|---|---|---|---|
| 调试时间 | 120分钟 | 10分钟 | -91% |

## Readme

The Claude Code plugin registers lifecycle hooks so memory is captured automatically. You do not have to call `memory_save` for routine work; the hooks observe tool use, prompts, and session boundaries and write observations for you.

## Quick start

Install the plugin and the hooks register themselves:

```bash
/plugin marketplace add rohitg00/agentmemory
/plugin install agentmemory
```

Watch observations land live at `http://localhost:3113`.

## What the hooks do

- Session start and end frame each unit of work and let `handoff` resume it.
- Tool-use hooks capture what changed and why, the raw material for `recall` and `recap`.
- Prompt-submit captures intent. Pre-compact preserves context before the host trims it.
- A post-commit hook links commits to sessions, which powers `commit-context` and `commit-history`.

## Important

- Capture is on by default and is zero-LLM. Turning observations into LLM summaries (`AGENTMEMORY_AUTO_COMPRESS`) and injecting them back into context (`AGENTMEMORY_INJECT_CONTEXT`) are separate opt-ins because they spend tokens.
- If observations are missing, confirm the plugin is enabled and the server is running. See ../_shared/TROUBLESHOOTING.md.

## See also

- agentmemory-config for the capture and injection flags.
- The handoff, recap, and session-history skills consume what these hooks record.

## Reference

The exact registered hook events live in REFERENCE.md, generated from `plugin/hooks/hooks.json`.


---
*Source: https://skills.yangsir.net/skill/gh-agentmemory-hooks*
*Markdown mirror: https://skills.yangsir.net/api/skill/gh-agentmemory-hooks/markdown*