memory

Solid

Two-layer memory system with Dream-managed knowledge files.

AI & Automation 43,466 stars 7685 forks Updated today MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
86
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Memory ## Structure - `SOUL.md` — Bot personality and communication style. **Managed by Dream.** Do NOT edit. - `USER.md` — User profile and preferences. **Managed by Dream.** Do NOT edit. - `memory/MEMORY.md` — Long-term facts (project context, important events). **Managed by Dream.** Do NOT edit. - `memory/history.jsonl` — append-only JSONL, not loaded into context. Prefer the built-in `grep` tool to search it. ## Search Past Events `memory/history.jsonl` is JSONL format — each line is a JSON object with `cursor`, `timestamp`, `content`. - For broad searches, start with `grep(..., path="memory", glob="*.jsonl", output_mode="count")` or the default `files_with_matches` mode before expanding to full content - Use `output_mode="content"` plus `context_before` / `context_after` when you need the exact matching lines - Use `fixed_strings=true` for literal timestamps or JSON fragments - Use `head_limit` / `offset` to page through long histories - Use `exec` only as a last-resort fallback when the built-in search cannot express what you need Examples (replace `keyword`): - `grep(pattern="keyword", path="memory/history.jsonl", case_insensitive=true)` - `grep(pattern="2026-04-02 10:00", path="memory/history.jsonl", fixed_strings=true)` - `grep(pattern="keyword", path="memory", glob="*.jsonl", output_mode="count", case_insensitive=true)` - `grep(pattern="oauth|token", path="memory", glob="*.jsonl", output_mode="content", case_insensitive=true)` ## Important - **Do NOT edit ...

Details

Author
HKUDS
Repository
HKUDS/nanobot
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category