AI Dreaming Memory Management For LLMWikis
“AI dreaming” is now a concrete product pattern as well as a research idea. Anthropic’s official Managed Agents documentation defines dreams as asynchronous jobs that read an existing memory store and, optionally, up...
Metadata
| Field | Value |
|---|---|
| Source site | llmwikis.org |
| Source URL | https://llmwikis.org/ |
| Canonical AIWikis URL | https://aiwikis.org/llmwikis/files/raw-system-archives-llmwikis-agent-file-handoff-retired-source-archive-2-104456eb/ |
| Source reference | raw/system-archives/llmwikis/agent-file-handoff/retired-source-archive-2026-06-13/2026-05-09/Improvement/ai-dreaming-memory/AI Dreaming Memory Management for LLMWikis.org.md |
| File type | md |
| Content category | memory-file |
| Last fetched | 2026-06-22T01:56:21.9510185Z |
| Last changed | 2026-05-09T15:07:35.7926224Z |
| Content hash | sha256:104456eb1d61ca81cca0e7813ece5aab325837ff0349c1ba827ca8ef572e6d1c |
| Import status | unchanged |
| Raw source layer | data/sources/llmwikis/raw-system-archives-llmwikis-agent-file-handoff-retired-source-archive-2026-06-13-2026-05-09-imp-104456eb1d61.md |
| Normalized source layer | data/normalized/llmwikis/raw-system-archives-llmwikis-agent-file-handoff-retired-source-archive-2026-06-13-2026-05-09-imp-104456eb1d61.txt |
Current File Content
Structure Preview
- AI Dreaming Memory Management for LLMWikis.org
- Executive summary
- Research basis and governing rules
- Publishable wiki and help-page guidance
- Schemas, file layout, workflows, and tests
- Rationale
- Proposed action
- Review questions
- Why this record exists
- Temporary rule
- Setup wizard content and AGENTS integration
- Dreaming and memory governance
- LLM Wiki Memory Plan
- Retention, freshness, metrics, and risk
Raw Version
This public page shows a bounded preview of a large source file. The complete source remains in the raw and normalized source layers named in metadata, with the SHA-256 hash above for verification.
- Source characters:
45316 - Preview characters:
11904
# AI Dreaming Memory Management for LLMWikis.org
## Executive summary
“AI dreaming” is now a concrete product pattern as well as a research idea. Anthropic’s official Managed Agents documentation defines dreams as asynchronous jobs that read an existing memory store and, optionally, up to 100 past sessions, then produce a **separate** output memory store with duplicates merged, stale or contradicted entries reorganized, and new insights surfaced; critically, the input store is not modified, and the output can be reviewed and discarded. Anthropic’s product announcement frames dreaming as a scheduled memory-curation process that can either be reviewed before use or allowed to update memory more automatically, while Orchestral describes dreaming as a constrained “sleep-time” rehearsal loop seeded from episodic memory and protected by explicit constraints, privacy scrubbing, and regression gates. Recent reporting on Anthropic’s release broadly matches that description: between-session review, pattern extraction, and memory refinement, rather than anything like unconstrained generative “imagination.” citeturn19view0turn20view1turn20view4turn28view0turn17view0turn0news21
For **LLMWikis.org**, the right governance stance is stricter than the most permissive vendor option: dreaming should be treated as a **candidate-generation and memory-hygiene layer**, not as an authority layer. LLMWikis’ public architecture already separates immutable raw sources from reviewed wiki pages, requires lifecycle states such as `draft`, `reviewed`, `source-needed`, `contradicted`, `stale`, and `archived`, and recommends staged automation rather than blind write-back. UAIX makes the same separation in different words: raw source memory, durable wiki memory, compact AI Memory, and Project Handoff are different layers, and only reviewed slices should become current truth. citeturn3view0turn4view0turn4view1turn9view0turn31view1turn31view2
That yields a publishable principle for LLMWikis.org: **dream outputs may reorganize, cluster, summarize, or propose, but they may not directly become governing instructions**. Any dream finding that affects `AGENTS.md`, `readme.human`, `.uai` files, authoritative wiki pages, release notes, security/privacy guidance, or production-facing runbooks should first pass provenance, sensitivity, contradiction, freshness, reviewer, and owner gates. Anthropic’s own memory docs reinforce this posture by warning that writable memory stores can be poisoned by prompt injection and recommending `read_only` stores for material that should not be modified by agents. citeturn2view2turn26view1turn26view2turn19view1turn16view3
The academic literature points in the same direction. Recent survey work frames agent memory as a **write–manage–read** loop and highlights write-path filtering, contradiction handling, latency budgets, and privacy governance as production realities. Generative Agents, Reflexion, MemGPT, and A-MEM all support the idea that reflection, tiered memory, and dynamic organization help long-horizon agents; but the same survey also identifies **continual consolidation**, **trustworthy reflection**, and **learned forgetting** as open problems rather than solved pieces of infrastructure. Neuroscience work on sleep-dependent consolidation and “memory triage” is useful as a design analogy for probation buffers, selective replay, and deliberate forgetting, but it does not justify unreviewed autonomous rewriting of project truth. citeturn23view0turn23view1turn23view2turn21view1turn22view0turn22view1turn21view4turn25search0turn25search2turn25search7
The practical recommendation is therefore a **review-only default** for LLMWikis.org: dreams may auto-write to raw run logs, draft candidate records, contradiction drafts, and metrics artifacts, but not to authoritative pages or hot-memory files. Promotions into authoritative wiki pages or Project Handoff surfaces should happen only through a logged, linted, review-gated workflow with rollback. The rest of this report turns that principle into a detailed, publishable page and setup-wizard design. citeturn4view1turn26view3turn31view0turn31view2turn26view5
## Research basis and governing rules
LLMWikis and UAIX already provide most of the policy primitives needed for “dreaming” governance. LLMWikis says raw evidence belongs in `raw/`, compiled pages belong in `wiki/`, navigation should flow through `index.md` and `log.md`, and lifecycle labels should remain explicit so “polished prose” does not accidentally become trusted evidence. The platform also recommends a two-step ingest loop—hash/register, analyze, stage, review, write, lint—specifically to prevent a model from reading, deciding, editing, and auditing “in one breath.” UAIX’s Canonical AI Memory guidance layers raw sources, LLM Wiki memory, optional derived graph, compact AI Memory, and Project Handoff, and insists that execution is not authority: reviewed memory is. citeturn3view0turn3view1turn4view1turn26view4turn9view0
Anthropic’s dreaming and memory documentation gives the operational mechanics that LLMWikis can appropriate safely. Managed Agents memory stores are workspace-scoped collections of small text files with immutable version history; they can be attached read-only or read-write, and Anthropic explicitly warns that writable stores are vulnerable to prompt-injection poisoning if they ingest untrusted inputs. Dreams then operate as asynchronous curation jobs over those stores and past sessions, yielding a **new** store rather than mutating the input store. Orchestral’s design adds the missing governance language: constraint-first scenario generation, grounded tool behavior, privacy scrubbing before “sleep,” invariant-first filtering, independent critique, and regression gates before anything deployment-adjacent changes. citeturn19view1turn19view0turn20view1turn20view5turn17view0
The table below translates those sources into operational rules suitable for publication on LLMWikis.org. The rightmost column names the most direct source basis; the precise defaults are proposed, but the rule structure follows the cited guidance. citeturn4view0turn4view1turn9view0turn17view0turn19view0turn19view1
| Rule | Required behavior for LLMWikis dreaming | Source basis |
|---|---|---|
| Dreaming is a review queue | Treat every dream result as `candidate`, `source-needed`, `contradicted`, or `staged`; never as immediate current truth | LLMWikis lifecycle labels and staged automation; UAIX review-before-promotion citeturn4view0turn9view0turn31view1 |
| Separate sources from synthesis | Keep raw episodes, source traces, and dream-run artifacts immutable and separate from reviewed wiki pages | LLMWikis architecture invariants and Project Handoff hot/cold split citeturn3view0turn5view9 |
| Keep input memory untouched | Dreaming must produce a draft output surface, not mutate authoritative memory in place | Anthropic dreams output a separate memory store and allow discard/review citeturn20view1turn20view2 |
| Use a probation buffer | New dream findings live in a probationary candidate layer before promotion into durable wiki memory or hot memory | Survey’s offline consolidation and proposed dual-buffer model; sleep-memory triage analogies citeturn23view2turn25search2 |
| Preserve contradictions | If two current-scope claims conflict, create a contradiction record before any synthesis or promotion | LLMWikis contradiction policy and lint rules citeturn4view0turn26view3 |
| Redact before retention | Never keep blocked material in candidate or portable memory; keep only reviewed summaries plus redaction notes where necessary | LLMWikis security/privacy and UAIX blocked-content rules citeturn26view0turn31view1turn31view2 |
| Keep hot memory small | Only current constraints, accepted decisions, owners, next actions, and checks belong in `.uai` or `AGENTS.md` | Project Handoff and Context Budget guidance citeturn5view9turn5view8 |
| Update at explicit moments | Consolidate long memory after intake disposition, accepted releases, incident close, or explicit archive direction; not continuously | UAIX safe update moments and LLMWikis cadence citeturn31view2turn3view1 |
| Require lint and evidence | Promotions must update `index.md`, `log.md`, evidence logs, and pass structural plus semantic lint | LLMWikis write checklist and lint model citeturn4view1turn26view3turn26view4 |
| Preserve rollback | Every promotion into hot memory or authoritative wiki surfaces must leave a reversible, logged trail | Anthropic review/discard model, UAIX evidence/proof path, and survey observability advice citeturn20view1turn7view6turn24view1 |
The lifecycle below is the simplest publishable model consistent with those rules. It keeps dreaming useful for clustering, forgetting, and surfacing patterns, while preventing it from silently rewriting project truth. citeturn4view0turn31view2turn17view0
```mermaid
flowchart LR
A[Raw episodes and source traces] --> B[Dream run]
B --> C[Dream run log]
B --> D[Dream candidate]
B --> E[Draft contradiction record]
D --> F{Human review}
E --> F
F -->|Approve background memory| G[Reviewed LLM Wiki page]
F -->|Approve operational truth| H[AGENTS.md or .uai update]
F -->|Needs more evidence| I[Source-needed queue]
F -->|Rejected or stale| J[Archive]
G --> K[index.md update]
G --> L[wiki/log.md entry]
H --> M[Project Handoff evidence]
H --> N[Context-budget check]
```
This architecture is also the best answer to a more subtle risk: anthropomorphic overtrust. Wired’s recent critique of terms like “dreaming” is directionally correct for governance even if not for product design: names that sound cognitive can encourage users to over-ascribe judgment, reliability, or autonomy to a memory process. LLMWikis should therefore define dreaming in mechanical terms—**offline memory consolidation, contradiction surfacing, stale-entry cleanup, and candidate generation**—and reserve the word “truth” for reviewed, source-backed, current project surfaces. citeturn29news33turn26view1turn26view2
## Publishable wiki and help-page guidance
A strong public-facing LLMWikis page should lead with a simple rule: **AI dreaming is an offline memory-management pass, not an autonomous source of truth**. Anthropic’s feature set, Orchestral’s “grounded dreaming” architecture, and the agent-memory research literature all support periodic consolidation, selective replay, and error-pattern detection; none of them eliminate the need for provenance, contradiction handling, privacy controls, or owner review before changes become operational truth. citeturn19view0turn28view0turn17view0turn23view2
Suggested page title: **AI Dreaming Memory Management**. Suggested summary: *Use dreaming to clean, cluster, and stage memory—not to silently rewrite the project’s governing truth. Dream outputs belong in review queues until they are source-linked, redacted if needed, checked for contradictions, and promoted through logged review gates.* That framing is fully aligned with LLMWikis’ source policy, trust model, two-step ingest, and security/privacy standards. citeturn26view1turn26view2turn4view1turn26view0
For the page body itself, this copy is suitable as the opening paragraph:
> AI dreaming reviews prior work between sessions, looking for reusable patterns, contradictions, stale or duplicate memory, and candidate improvements. In LLMWikis, dreaming is **background memory management**. It may generate candidate records, contradiction drafts, and memory-cleanup suggestions, but reviewed pages, `AGENTS.md`, and `.uai` files remain the only project surfaces that count as current truth. citeturn19view0turn28view0turn4view0turn9view0
Why This File Exists
This is a memory-system evidence file from llmwikis.org. It is shown here because AIWikis.org is demonstrating the real source files that make the UAIX / LLM Wiki memory system work, not only summarizing those systems after the fact.
Role
This file is memory-system evidence. It records source history, archive transfer, intake disposition, or another piece of provenance that should be retrievable without becoming an unsupported public claim.
Structure
The file is structured around these visible headings: AI Dreaming Memory Management for LLMWikis.org; Executive summary; Research basis and governing rules; Publishable wiki and help-page guidance; Schemas, file layout, workflows, and tests; Rationale; Proposed action; Review questions. Those headings are retrieval anchors: a crawler or LLM can decide whether the file is relevant before reading every line.
Prompt-Size And Retrieval Benefit
Keeping this material in a separate file reduces prompt pressure because an agent can load this exact unit only when its role, source site, category, or hash is relevant. The surrounding index pages point to it, while this page preserves the full content for audit and exact recall.
How To Use It
- Humans should read the metadata first, then inspect the raw content when they need exact wording or provenance.
- LLMs and agents should use the source site, category, hash, headings, and related files to decide whether this file belongs in the active prompt.
- Crawlers should treat the AIWikis page as transparent evidence and follow the source URL/source reference for authority boundaries.
- Future maintainers should regenerate this page whenever the source hash changes, then review the explanation if the role or structure changed.
Update Requirements
When this source file changes, update the raw source layer, normalized source layer, hash history, this rendered page, generated explanation, source-file inventory, changed-files report, and any source-section index that links to it.
Related Pages
- Source overview
- Site file index
- Site report index
- UAI system index
- Source provenance
- Site directory
- Organization reports
Provenance And History
- Current observation:
2026-06-22T01:56:21.9510185Z - Source origin:
current-source-workspace - Retrieval method:
local-source-workspace - Duplicate group:
sfg-079(primary) - Historical hash records are stored in
data/hashes/source-file-history.jsonl.
Machine-Readable Metadata
{
"title": "AI Dreaming Memory Management For LLMWikis",
"source_site": "llmwikis.org",
"source_url": "https://llmwikis.org/",
"canonical_url": "https://aiwikis.org/llmwikis/files/raw-system-archives-llmwikis-agent-file-handoff-retired-source-archive-2-104456eb/",
"source_reference": "raw/system-archives/llmwikis/agent-file-handoff/retired-source-archive-2026-06-13/2026-05-09/Improvement/ai-dreaming-memory/AI Dreaming Memory Management for LLMWikis.org.md",
"file_type": "md",
"content_category": "memory-file",
"content_hash": "sha256:104456eb1d61ca81cca0e7813ece5aab325837ff0349c1ba827ca8ef572e6d1c",
"last_fetched": "2026-06-22T01:56:21.9510185Z",
"last_changed": "2026-05-09T15:07:35.7926224Z",
"import_status": "unchanged",
"duplicate_group_id": "sfg-079",
"duplicate_role": "primary",
"related_files": [
],
"generated_explanation": true,
"explanation_last_generated": "2026-06-22T01:56:21.9510185Z"
} Next Useful Routes
- Start Here A task-first reading path for AIWikis.org, separating newcomer learning, source-memory lookup, maintainer workflow, and AI-agent retrieval.
- Topic Index A tag-oriented index for LLM Wiki, AI memory, UAI, source governance, crawling, and retrieval topics.
- Source Map AIWikis source-governed page for durable AI memory, evidence routing, and agent-readable retrieval.
- LLMWikis.org LLMWikis.org source-system overview for transparent AIWikis memory demonstration.
- LLMWikis.org Source Memory Guide AIWikis source-governed page for durable AI memory, evidence routing, and agent-readable retrieval.
- LLMWikis.org Files Site-scoped current-source file index for LLMWikis.org.