packages/forge/src/skills/soleri-dream/SKILL.md
Triggers: "dream", "consolidate memory", "clean up memory", "memory cleanup", "dream status". Automatic memory consolidation: dedup, archive stale, resolve contradictions.
npx skillsauth add adrozdenko/soleri soleri-dreamInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Runs a full "dream" pass over the vault: dedup, archive stale entries, resolve contradictions, and produce a summary report. Inspired by how REM sleep consolidates biological memory.
Announce at start: "Running a dream pass — consolidating vault memory."
| Command | What it does |
| --------------- | --------------------------------------------------------- |
| /dream | Run a full dream pass (forces, bypasses gate) |
| /dream status | Show dream state: last dream, sessions since, eligibility |
YOUR_AGENT_dream op:dream_status
Report current state to user as a table:
| Field | Value | | ----------------------------- | ------------------------ | | Sessions since last dream | {sessionsSinceLastDream} | | Last dream | {lastDreamAt or "Never"} | | Total dreams | {totalDreams} | | Gate eligible | {gateEligible} |
If user explicitly asked to dream (manual /dream), force it:
YOUR_AGENT_dream op:dream_run
params: { force: true }
If auto-triggered (session start), respect the gate:
YOUR_AGENT_dream op:dream_run
params: { force: false }
If the response contains skipped: true, inform the user:
"Dream skipped — {reason}. Use /dream to force a run."
Format the dream report as a table:
| Metric | Value | | -------------------------- | --------------------- | | Duration | {durationMs}ms | | Duplicates found | {duplicatesFound} | | Stale entries archived | {staleArchived} | | Contradictions found | {contradictionsFound} | | Total dreams | {totalDreams} | | Timestamp | {timestamp} |
YOUR_AGENT_core op:brain_build_intelligence
Rebuild brain intelligence with the freshly consolidated vault data.
If the dream report includes entries with relative date references ("today", "yesterday", "last week"), normalize them. Search for entries containing relative dates and update to absolute ISO dates:
YOUR_AGENT_vault op:search_intelligent
params: { query: "today OR yesterday OR last week OR last month", limit: 20 }
For each entry with relative dates, update content to replace relative references with absolute dates based on the entry's capturedAt timestamp.
YOUR_AGENT_memory op:session_capture
params: {
summary: "Dream pass completed: {duplicatesFound} duplicates, {staleArchived} stale archived, {contradictionsFound} contradictions found"
}
Auto-dream triggers automatically on session start when BOTH conditions are met:
Manual /dream always runs immediately (force=true).
To enable periodic auto-dream (runs every 24h after 5+ sessions):
YOUR_AGENT_core op:curator_schedule_start
params: {
intervalHours: 24,
minSessions: 5
}
To disable:
YOUR_AGENT_core op:curator_schedule_stop
Inspired by Claude Code's AutoDream feature and the neuroscience of REM sleep. During sleep, the brain consolidates short-term memories into long-term storage, prunes irrelevant connections, and resolves conflicts. The /dream skill does the same for the vault.
testing
Triggers: "terse mode", "be brief", "less tokens", "fewer tokens", "compress output", "caveman", or invokes /terse. Token-efficient responses with full technical accuracy.
tools
Triggers: "compress this file", "compress CLAUDE.md", "compress memory", "shrink this", "reduce tokens in file", or invokes /compress. Compresses natural language files to save input tokens.
testing
Triggers: "release", "bump version", "publish packages", "cut a release", "version bump", "npm publish". Bumps monorepo versions, commits, tags, pushes to trigger CI release. Use deliver-and-ship for quality gates.
development
Triggers: "implement X", "build Y", "fix Z", "add feature", or any work task needing planning + execution. Full orchestration loop: plan, execute, complete with vault context and brain recs.