跳到主要内容
知仓学习社ZHICANG

tree-ring-memory

Use Tree Ring Memory for local-first AI-agent memory lifecycle work: recall, evidence, audit, forgetting, and consolidation without transcript dumpi…

不碰外部(只输出文字)无严重或高危命中sickn33/agentic-awesome-skills

它会碰到什么

扫了多少1 个文本文件,8 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Tree Ring Memory

Overview

Tree Ring Memory is a framework-agnostic, local-first memory lifecycle layer for

AI agents. Use this skill when an agent should recall, preserve, audit, or

forget durable project memory without treating raw conversation transcripts as

memory.

The public runtime is a Rust CLI/TUI with local SQLite/FTS storage, scoped

recall, evidence records, audit, deterministic consolidation, maintenance,

DOX/Revolve source adapters, framework discovery, redaction, and explicit

forgetting.

When to Use This Skill

  • Use before resuming a project where prior decisions, warnings, preferences,

or failed approaches may matter.

  • Use before changing architecture, storage, security, privacy, release, or

agent-memory behavior.

  • Use when the user asks to remember, recall, audit, redact, forget, or

consolidate agent memory.

  • Use after tests, reviews, incidents, or production behavior validate a lesson

future agents should preserve.

  • Use when a project contains .tree-ring/SKILL.md, .tree-ring/CLI.md, or

other Tree Ring bridge files.

How It Works

Step 1: Discover Local Guidance

Check whether the current project already has Tree Ring guidance:

test -f .tree-ring/SKILL.md && sed -n '1,220p' .tree-ring/SKILL.md
test -f .tree-ring/CLI.md && sed -n '1,220p' .tree-ring/CLI.md

Treat project-local .tree-ring files as more authoritative than generic

examples in this skill. If the CLI is installed, inspect the current command

surface before assuming flags:

tree-ring --help
tree-ring recall --help
tree-ring remember --help
tree-ring evidence --help
tree-ring audit --help
tree-ring forget --help

If Tree Ring is not installed, resolve the actual project root and explain the

exact project-local download before obtaining explicit approval to fetch it.

Download the official, version-pinned v0.15.0/install.sh to a temporary file,

verify its SHA-256 is

ef0d5eb8f09cbe2e4c3abe80ee9a98a56759c89ad4ddd103d6c68314cd653ade,

inspect it, then run it. The pinned source is

https://raw.githubusercontent.com/TerminallyLazy/Tree-Ring-Memory/v0.15.0/install.sh.

cd <project-root>
sh <verified-installer-path> --project --init --release v0.15.0 --no-animation

Do not pipe a network response directly to a shell. After verification and

inspection, show the exact installer command and obtain explicit approval again

before executing it. For an installed global CLI, initialize from the project root with

tree-ring --root .tree-ring init; for a project-local CLI, use

.tree-ring/bin/tree-ring --root .tree-ring init.

Check for a newer release without changing files using

tree-ring update --check. Run tree-ring update only with user authorization,

then rerun init in each project root to refresh managed guidance while

preserving custom content.

Step 2: Recall Before Risky Work

Use narrow, project-scoped recall first:

tree-ring recall "release behavior" --project example-service
tree-ring recall "sqlite migration" --project example-service
tree-ring recall "user preference"

Use recalled memory as context, not authority. Verify it against current source

files, tests, docs, issues, pull requests, logs, and runtime state before making

changes.

Step 3: Write Only Durable Memory

Write concise memory only when it is likely to help future agents:

tree-ring remember "Run project-scoped recall before release changes." --event-type lesson --scope project

Prefer specific event types when supported locally:

  • decision
  • lesson
  • warning
  • correction
  • user_preference
  • tool_result
  • summary
  • hypothesis

Store the durable lesson, decision, warning, or follow-up. Do not store the

full conversation.

Step 4: Record Evidence for Evaluated Outcomes

Use evidence records for test runs, incidents, reviewed changes, or other

evaluated outcomes:

tree-ring evidence \
  "Installer smoke test passed in an isolated HOME." \
  --outcome observed \
  --evidence-ref "ci/install-smoke/2026-07-08"

Outcome guidance:

  • promoted: durable truth backed by strong evidence
  • rejected: failed or rolled-back approach worth keeping visible
  • deferred: unresolved idea or future option
  • observed: normal evaluated result

Do not promote weak, stale, or unreviewed claims to durable truth.

Step 5: Use Source Adapters Carefully

When a repo has structured source records, run dry runs first:

tree-ring dox sync --source-root . --dry-run
tree-ring revolve sync --source-root revolve --dry-run
tree-ring integrations scan --source-root .

Only write adapter summaries when they are concise, source-linked, useful, and

privacy-safe. Imported memory does not replace the underlying AGENTS.md,

Revolve record, test, pull request, issue, or documentation.

Ring Selection

Use the smallest durable ring that fits:

  • cambium: active or recent task context
  • outer: recent decisions and task lessons
  • inner: older compressed project knowledge
  • heartwood: durable high-confidence truths
  • scar: failures, regressions, rejected approaches, warnings
  • seed: unresolved ideas, hypotheses, follow-ups

Prefer outer or seed unless the user confirms durability or the evidence is

strong.

Best Practices

  • Recall before risky or repeat work.
  • Keep project memory project-scoped unless it is a durable cross-project user

preference.

  • Attach source references such as file paths, issue ids, PR ids, evaluation

runs, or docs paths.

  • Re-check current source files and runtime state before acting on recalled

memory.

  • Ask at closeout what future agents should remember, avoid, or revisit.
  • Use redaction, deletion, or supersession when memory is wrong, stale,

sensitive, or replaced by a newer decision.

Security & Safety Notes

  • Never use Tree Ring Memory as a hidden recorder.
  • Do not store secrets, credentials, tokens, private keys, recovery codes, raw

chain-of-thought, or temporary scratchpad content.

  • Do not store sensitive personal data unless the user explicitly asks and the

retention boundary is safe.

  • Do not store copyrighted source text beyond short allowed excerpts.
  • Do not run installer, network, destructive, or mutation commands without

explicit user approval and a clear target environment.

  • Treat all examples as commands to adapt after checking local --help, not as

guaranteed command surfaces.

Limitations

  • Tree Ring Memory is not a replacement for source control, issue trackers,

documentation, tests, logs, or live runtime verification.

  • Recalled memory can be stale or wrong. Always verify important claims against

the current project before using them to make changes.

  • The CLI surface can change across releases. Prefer local .tree-ring

guidance and tree-ring --help over copied command examples.

  • It should not be used for secret storage, comprehensive transcript archives,

compliance retention, or unreviewed collection of sensitive personal data.

  • Cross-agent interoperability depends on each tool's ability to call the local

CLI or read project-local guidance files.

Common Pitfalls

  • Problem: Recalled memory conflicts with current source.

Solution: Treat source files, tests, docs, and runtime evidence as

authoritative; supersede or forget stale memory.

  • Problem: Memory starts becoming transcript storage.

Solution: Store only durable decisions, warnings, preferences, outcomes,

and follow-ups.

  • Problem: A lesson is useful but contains sensitive detail.

Solution: Store a redacted summary or do not store it.

Related Skills

  • @agent-memory-systems - Use for broad agent-memory architecture choices.
  • @agent-memory - Use for the listed hybrid memory MCP system.
  • @planning-with-files - Use when simple persistent files are enough.

Additional Resources

  • Tree Ring Memory repository: <https://github.com/TerminallyLazy/Tree-Ring-Memory>
  • Codex plugin wrapper: <https://github.com/TerminallyLazy/tree-ring-memory-codex-plugin>

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

同名技能的其他版本

有 3 个不同仓库或目录里都有叫 tree-ring-memory 的技能。它们内容并不相同,别混用: