← ClaudeAtlas

knowledge-dreamlisted

Periodic knowledge consolidation for AI coding agents. Synthesize scattered project learnings into durable, well-organized memory files. 4-phase process: Orient → Gather → Consolidate → Prune. Inspired by Claude Code's autoDream engine. Use when project memory is stale, after a burst of work, or as a recurring maintenance pass.
VictorGjn/agent-skills · ★ 1 · AI & Automation · score 70
Install: claude install-skill VictorGjn/agent-skills
# Knowledge Dream Synthesize scattered project learnings into durable knowledge — inspired by Claude Code's autoDream memory consolidation engine. ## Concept AI agents accumulate context across sessions: decisions made, patterns discovered, bugs fixed, architecture choices. Without consolidation, this knowledge scatters and decays. The Dream is a periodic pass that gathers recent signal and writes it into persistent, well-organized files that future sessions can orient from quickly. ## Where Memory Lives Memory is just markdown files in your project. No special infrastructure needed. ``` your-project/ .claude/ memory/ ← Agent memory lives here (Claude Code convention) MEMORY.md ← Index: what's known, pointers to topic files architecture.md decisions.md patterns.md team-conventions.md docs/ ← Or here, if you prefer project docs CLAUDE.md ← Project-level context (Claude Code reads this automatically) ``` **Any directory works.** The skill doesn't depend on a specific path. Pick a convention: - `.claude/memory/` — Claude Code's native memory dir - `docs/knowledge/` — if you want it in project docs - `.ai/memory/` — generic, works with any agent - `CLAUDE.md` / `AGENTS.md` — single-file for small projects ## The 4-Phase Process ### Phase 1: Orient Scan the current knowledge landscape before changing anything. ``` 1. List the memory directory — what topic files exist? 2. Read the index file (MEM