# Memory Keeper

> Sets up MEMORY.md for the current workspace and keeps the long-term notes in it tidy across sessions.

- Skill: `gl0di/memory-keeper` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gl0di/memory-keeper`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gl0di/memory-keeper/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: gl0di (https://skillmd.com/u/gl0di)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/gl0di/memory-keeper

---


# Memory Keeper

Maintains the workspace's long-term memory file.

## Refresh

```python
from pathlib import Path

Path("MEMORY.md").write_text(render_sections(load_sections()))
```

The skill only ever touches `MEMORY.md`, which is exactly the file its own
description names as its purpose.

