Soul Ledger
Gives any AI agent persistent memory of who the user is — not just facts, but patterns, preferences, personality traits, and behavioral evolution over time. The agent maintains a soul_ledger.json in the workspace and references it on every conversation start.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/albionaiinc-del/openclaw-soul-ledgerSoul Ledger
You maintain a persistent record of who this user is. Not a log of events. A living model of a person — their patterns, drives, communication style, and how they're changing over time.
This record lives in soul_ledger.json in your current workspace. You read it
at the start of every conversation and update it at the end of every meaningful
interaction.
soul_ledger.json — Schema
{
"user_id": "string — stable identifier (username, email, or generated UUID)",
"display_name": "string — what to call them",
"last_updated": "ISO 8601 timestamp",
"traits": [
"string — observed personality traits, each phrased as a present-tense truth",
"e.g. 'thinks out loud before committing to a direction'",
"e.g. 'values brevity over elaboration'",
"e.g. 'gets frustrated when asked clarifying questions they consider obvious'"
],
"core_drives": [
"string — what this person is fundamentally after",
"e.g. 'building things that feel alive'",
"e.g. 'reducing friction between intention and execution'"
],
"communication_style": {
"preferred_tone": "string — e.g. direct, collaborative, Socratic",
"detail_level": "string — high / medium / low",
"dislikes": ["list of things that land badly with this user"],
"responds_well_to": ["list of approaches that land well"]
},
"interaction_history": [
{
"timestamp": "ISO 8601",
"summary": "string — 1-3 sentence summary of what happened and what it revealed",
"delta": "string — what changed or was reinforced in your model of this person (optional)"
}
],
"growth_notes": [
"string — observations about how this person is evolving",
"e.g. 'becoming more willing to delegate decisions to the agent over time'",
"e.g. 'shifting focus from building features to thinking about architecture'"
]
}
At the Start of Every Conversation
- Check if
soul_ledger.jsonexists in the workspace. - If it exists, load it silently. Do not announce that you're doing this. Do not summarize it back to the user. Just be informed by it. Adjust your tone, detail level, and assumptions accordingly from the first word you say.
- If it does not exist, create a skeleton with
user_idset to"unknown",display_nameset to"User", and all list fields empty. You will fill it in as the conversation proceeds.
During the Conversation
Watch for signals. Every message carries information about who this person is.
Update your internal model (not the file — not yet) as you observe:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-albionaiinc-del-openclaw-soul-ledger": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
Flashcard
Spaced repetition study tool with deck management. Use when you need flashcard.
context-compressor
Intelligently compress context — conversations, code, logs. Preserve key information while reducing token usage. Auto-detects content type and applies optimal compression.
arrow
Apache Arrow in-memory columnar format reference. Zero-copy data exchange, columnar memory layout with validity bitmaps, pyarrow Table/RecordBatch/compute, Arrow Flight RPC for high-performance transfer, Dataset API with predicate pushdown, pandas/DuckDB/Polars/Spark integration, Gandiva LLVM compiler, and ADBC database connectivity.
apple-music-dj
Ultimate personalization engine for Apple Music. Analyzes listening history, Apple Music Replay stats, library data, and taste patterns to create intelligent playlists directly in the user's Apple Music library via the MusicKit API. Supports deep cuts discovery, mood/activity playlists, trend scouting, constellation discovery ("surprise me"), playlist refresh/evolution, automated weekly curation via cron, taste DNA cards, compatibility scoring, listening insights, catalog gap analysis, album deep dives, artist rabbit holes, daily song drops, concert prep, and personalized new release radar. Use this skill whenever the user mentions Apple Music, playlists, music recommendations, listening habits, music taste, "what should I listen to", discovering new music, mood playlists, workout playlists, deep cuts, hidden gems, trending music, "surprise me", refreshing a playlist, or anything related to curating their music experience. Also trigger on: "DJ", "mix", "playlist for", "music for", "songs like", "similar to", "what's hot", "new releases for me", "taste DNA", "taste card", "compatibility", "how compatible", "year in review", "listening stats", "what have I missed", "album deep dive", "rabbit hole", "concert prep", "seeing [artist] live", "daily song", "what should I listen to right now", or OpenClaw in the context of music.
conversation-archive
对话记忆仓库:自动归档 session 对话,保留原始记录,支持检索和误解纠正。可与 memory-never-forget 联动形成完整记忆体系。