Openclaw Skills for Dawn Memory Architecture v7.1 creates a local, layered memory system for agents with truth hierarchy, WAL safety, and semantic search.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install dawn-memory-arch-v7
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install dawn-memory-arch-v7 using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Dawn Memory Architecture v7.1 is an Openclaw Skills package for building durable long-term agent memory with a strictly local storage model. It combines a central MEMORY.md index, structured JSON facts, session and learning logs, and a local vector database so an agent can retrieve, update, and promote knowledge without relying on external APIs.
The core value is disciplined memory management: keep high-trust facts in the right layer, preserve history separately from decision-making, and use write-ahead logging plus automated promotion rules to prevent data loss and memory bloat. Openclaw Skills users get a reproducible architecture for context management, truth hierarchy, and offline semantic recall.
MEMORY.md as the central navigation index and loads the current system status, key conclusions, and promoted memories.memory/core/*.json for stable facts such as identity, preferences, strategies, lessons, and profile data.memory/sessions/, while daily notes, learnings, and error logs are stored in separate folders to keep decision memory clean.session-state.json first so changes are not lost on crash.working-buffer.md to preserve the active thread.MEMORY.md based on score, repetition, or explicit user request.MEMORY.md, memory/core/, memory/sessions/, memory/daily/, memory/learnings/, memory/archive/, scripts/memory/, scripts/analysis/, and state.db.mkdir -p workspace/memory/core workspace/memory/sessions workspace/memory/daily workspace/memory/learnings workspace/memory/archive workspace/scripts/memory workspace/scripts/analysis
touch workspace/MEMORY.md workspace/session-state.json workspace/HEARTBEAT.md workspace/state.db
# Example bootstrap tasks
python scripts/memory/dawn_boot_sync.py
python scripts/memory/dawn_schema_validate.py
python scripts/memory/dawn_state_db_upgrade.py
python scripts/memory/dawn_money_flow.py
python scripts/memory/dawn_factor_scoring.py
MEMORY.md is always read on startup, session-state.json is written before replies when needed, and context summaries trigger automatically at 60% usage.| Layer | Path | Purpose | Notes |
|---|---|---|---|
| P0 | state.db |
Single source of truth for live positions and portfolios | Updated automatically after each trade |
| P1 | memory/core/*.json |
Structured cache for stable facts | Manual + auto validation |
| P2 | memory/sessions/*.md |
Session history | Not used for decision-making |
| P3 | memory/learnings/*.md |
Post-mortem lessons and error notes | Recorded after the fact |
MEMORY.md: central index, max 200 lines or 25KB.identity.json: identity and persona facts.lessons.json: learned rules and outcomes.preferences.json: user preferences and constraints.profile.json: expanded profile system introduced in v7.1.strategies.json: strategic guidance and decision rules.session-state.json: WAL cache for crash-safe writes.working-buffer.md: context fuse summary when usage is high.HEARTBEAT.md: periodic task checklist.core: high-trust structured facts.sessions: chronological history, not authoritative.daily: day-by-day operational notes.learnings: retrospective improvements and mistakes.archive: packaged historical snapshots.scripts/memory: operational maintenance jobs.scripts/analysis: analysis and scoring utilities.Openclaw Skills implementation should treat lower layers as support data, never as the authoritative source for live decisions.
core/*.json changes.Loading
Project Delivery Engine helps AI agents reliably manage long-running projects with persistent state, structured handoffs, and independent review.

Openclaw Deal Scout automates Gmail deal triage, CRM logging, alerts, and approved replies through a local MCP gateway.

A headless command-line skill that checks USCIS case status by receipt number using Selenium and undetected-chromedriver.

Openclaw Skills for DHX Tech turns BOMs, part numbers, and sourcing requests into real-time inventory checks, cross-references, and procurement-ready recommendations.

ai-content-creator-assistant generates multiple platform-adapted content drafts from one topic, then delivers them through a compliant, payment-verified Openclaw Skills workflow.

Requirement Processor standardizes how Openclaw Skills turns unclear feature requests into validated, phased implementation plans and reusable project documentation.








































