# Load Memory

> Load Crabshell project memory into the current Codex conversation. Use when the user asks to load memory, resume context, or inspect saved project notes.

- Skill: `zipperbagcoffee/load-memory-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add zipperbagcoffee/load-memory-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zipperbagcoffee/load-memory-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ZipperBagCoffee (https://skillmd.com/u/zipperbagcoffee)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/zipperbagcoffee/load-memory-2

---


# Load Memory

Resolve `{SKILL_DIR}` to the directory containing this `SKILL.md`, resolve
`{PROJECT_ROOT}` to the active project root, then run the bundled script by its
absolute path while keeping the active project as the target:

```bash
node "{SKILL_DIR}/scripts/codex-memory.js" load --project-dir="{PROJECT_ROOT}"
```

Read the output and use it as project context. Do not claim the memory was loaded unless the command produced the relevant memory text or explicitly reported that no memory exists.

Useful options:

```bash
node "{SKILL_DIR}/scripts/codex-memory.js" load --tail-lines=120 --project-dir="{PROJECT_ROOT}"
node "{SKILL_DIR}/scripts/codex-memory.js" status --project-dir="{PROJECT_ROOT}"
```

