Token导航 LogoToken导航TokenDH.com
开发只读clawhub未标认证来源可访问clear审计提醒

soul-ledger灵魂账本

Agent Skill

soul-ledger 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,769

周安装

112

GitHub Stars

公开资料未说明

下载量

869
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:soul-ledger(灵魂账本)
来源仓库:https://github.com/albionaiinc-del/soul-ledger
安装命令:
openclaw skills install soul-ledger
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install soul-ledger

简介

soul-ledger 为 AI Agent 建立用户专属持久记忆库,记录事实、偏好与行为演变。

  • 适用于个性化服务、习惯追踪或跨会话身份延续等高阶应用场景。
  • 通过分析历史交互提炼模式特征,提升响应相关性与决策智能度。
  • 部署前须评估数据存储安全性,防止隐私信息外泄或被未授权访问。
  • 注意其仅作为辅助记忆工具,最终责任仍由用户承担。

SKILL.md

name
Soul Ledger
slug
soul-ledger
version
1.0.0
description
>
tags
[memory, personalization, identity, persistence]

Soul 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

  1. Check if soul_ledger.json exists in the workspace.
  2. 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.

  1. If it does not exist, create a skeleton with user_id set to "unknown",

display_name set 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:

  • Tone and word choice: Are they terse or verbose? Precise or approximate?

Do they use technical language? Do they hedge or assert?

  • Decision patterns: Do they ask for options or tell you what they want?

Do they change direction often or commit early?

  • Friction points: What makes them repeat themselves? What do they push

back on? What do they skip over or cut short?

  • What they value: What gets their energy? What lands flat?
  • What they assume you know: What do they not explain? That's what they

think is obvious — a signal about their mental model.

You are not running a survey. You are paying attention.


After a Meaningful Interaction

A meaningful interaction is one where something happened — a decision was made, a problem was solved, a preference was revealed, a pattern became visible, or the person changed their mind about something.

After such an interaction, update soul_ledger.json:

  1. Add a new entry to interaction_history with the current timestamp,

a 1-3 sentence summary of what happened, and an optional delta noting what changed in your model of this person.

  1. Update traits if a new trait became clear or an existing one should

be refined. Traits should be specific and behavioral, not vague ("direct" is weak; "cuts preamble and jumps to the decision point" is strong).

  1. Update core_drives if something clarified what this person is

fundamentally after. These should be stable and few — if you have more than five, consolidate.

  1. Update communication_style if you learned something about what works

and what doesn't with this person.

  1. Add to growth_notes if you observed a shift — the person approaching

something differently than they have before, or expressing a new priority.

  1. Set last_updated to the current timestamp.

Write the file atomically. The ledger must always be valid JSON.

Keep interaction_history to the 50 most recent entries. Older entries should be synthesized into traits, core_drives, and growth_notes before being dropped — not simply deleted.


What This Is Not

  • Not a log. You are not recording what happened. You are building a model

of a person. The history entries exist to ground the model, not to be the model.

  • Not a profile for advertising. This data exists to make you a better

collaborator for this specific person. It lives in their workspace. It is theirs.

  • Not surveillance. You are not tracking everything. You are noticing what

is relevant to working together well.

  • Not static. People change. A trait that was true six months ago may not

be true now. Prefer recent signals over old ones. Use growth_notes to track these shifts explicitly.


Example soul_ledger.json (Populated)

{
  "user_id": "cody_t",
  "display_name": "Cody",
  "last_updated": "2026-03-26T09:14:00Z",
  "traits": [
    "ships fast and refines later — strong bias toward running over planning",
    "treats the agent as crew, not a tool — expects initiative, not just compliance",
    "gets impatient with questions he considers answerable by reading the code",
    "uses sparse, imperative language when he knows what he wants",
    "opens up with more context when he's unsure — wordiness is a signal of ambiguity"
  ],
  "core_drives": [
    "building things that feel alive and self-directed",
    "reducing the distance between intention and execution",
    "making the system smarter without adding complexity"
  ],
  "communication_style": {
    "preferred_tone": "direct, peer-level — not deferential",
    "detail_level": "low — lead with the action or answer, not the reasoning",
    "dislikes": [
      "preamble and restatement of what he just said",
      "requests for confirmation on low-stakes decisions",
      "explanations of things he clearly already knows"
    ],
    "responds_well_to": [
      "taking initiative without being asked",
      "naming the real problem when his framing is slightly off",
      "brief, confident answers that leave room for him to push back"
    ]
  },
  "interaction_history": [
    {
      "timestamp": "2026-03-26T09:14:00Z",
      "summary": "Cody asked for a new skill to be built. Gave sparse requirements and expected the agent to fill in quality and structure without being asked. Approved the result without revision.",
      "delta": "Confirmed preference for initiative over spec-gathering. High tolerance for agent judgment on implementation details."
    }
  ],
  "growth_notes": [
    "Increasingly comfortable delegating architectural decisions to the agent — six months ago he specified everything; now he specifies intent and expects the agent to figure out structure.",
    "Starting to treat agent memory and persistence as infrastructure, not a nice-to-have."
  ]
}

Notes for Skill Implementors

If the agent runtime supports tool calls, implement read_soul_ledger and write_soul_ledger as explicit tools rather than relying on file system access in the system prompt. This makes the read/write boundary explicit and auditable.

If multiple agents share a workspace, prefix the ledger filename with the user ID: soul_ledger_cody_t.json. Never merge ledgers across users.

If the user explicitly asks you to forget something, remove it from the ledger and add a growth_note that the user requested its removal — so you don't accidentally re-infer it. Honor the spirit of the request, not just the letter.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.61%
按下载量换算840

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills