---
name: Hipocampus Flush
slug: hipocampus-flush
category: AI Engineering
description: Hipocampus Flush dumps the current session context to the daily raw log through a subagent. Use it before compaction when you want to persist what happened in the session.
github: "https://github.com/kevin-hs-sohn/hipocampus/tree/main/skills/flush"
language: JavaScript
stars: 206
forks: 10
install: "npx degit https://github.com/kevin-hs-sohn/hipocampus/tree/main/skills/flush ~/.claude/skills/flush"
installs_to: ~/.claude/skills/flush
source_path: skills/flush/SKILL.md
collection_size: 8
category_size: 3101
collection_url: "https://dirskills.com/collections/kevin-hs-sohn/hipocampus"
added: 2026-09-05T05:29:02.908Z
last_synced: 2026-09-05T05:29:02.908Z
canonical_url: "https://dirskills.com/skills/hipocampus-flush"
---

# Hipocampus Flush

Hipocampus Flush dumps the current session context to the daily raw log through a subagent. Use it before compaction when you want to persist what happened in the session.

**Install:**

```bash
npx degit https://github.com/kevin-hs-sohn/hipocampus/tree/main/skills/flush ~/.claude/skills/flush
```

## README

# Hipocampus Memory Flush

Dump current session context to the daily raw log. Use when you want to persist what happened in this session without waiting for End-of-Task Checkpoint or context compression.

For full compaction (needs-summarization processing, tree propagation, qmd reindex), run hipocampus:compaction skill after this.

## Steps

### 1. Compose session summary

Gather a summary of everything discussed in this session so far. For each topic:
```markdown
## [Topic Name]
- request: what the user asked
- analysis: what you researched/analyzed
- decisions: choices made with rationale
- outcome: what was done, files changed
- references: knowledge/ files, external sources
```

### 2. Dispatch subagent

**Dispatch a subagent** with the session summary and this task:

> Hipocampus memory flush. Append the following structured log to memory/YYYY-MM-DD.md (today's date). Then run `hipocampus compact` to propagate through the tree.
>
> [paste session summary here]

The subagent writes the files and runs compact. The main session stays clean.

### 3. Report

Confirm the flush completed:
- Topics flushed
- Subagent status
