โ† All skills
Tencent SkillHub ยท Productivity

Triple Memory

Complete memory system combining LanceDB auto-recall, Git-Notes structured memory, and file-based workspace search. Use when setting up comprehensive agent memory, when you need persistent context across sessions, or when managing decisions/preferences/tasks with multiple memory backends working together.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Complete memory system combining LanceDB auto-recall, Git-Notes structured memory, and file-based workspace search. Use when setting up comprehensive agent memory, when you need persistent context across sessions, or when managing decisions/preferences/tasks with multiple memory backends working together.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/SETUP.md, scripts/file-search.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 16 sections Open source page

Triple Memory System

A comprehensive memory architecture combining three complementary systems for maximum context retention across sessions.

Architecture Overview

User Message โ†“ [LanceDB auto-recall] โ†’ injects relevant conversation memories โ†“ Agent responds (using all 3 systems) โ†“ [LanceDB auto-capture] โ†’ stores preferences/decisions automatically โ†“ [Git-Notes] โ†’ structured decisions with entity extraction โ†“ [File updates] โ†’ persistent workspace docs

1. LanceDB (Conversation Memory)

Auto-recall: Relevant memories injected before each response Auto-capture: Preferences/decisions/facts stored automatically Tools: memory_recall, memory_store, memory_forget Triggers: "remember", "prefer", "my X is", "I like/hate/want"

2. Git-Notes Memory (Structured, Local)

Branch-aware: Memories isolated per git branch Entity extraction: Auto-extracts topics, names, concepts Importance levels: critical, high, normal, low No external API calls

3. File Search (Workspace)

Searches: MEMORY.md, memory/*.md, any workspace file Script: scripts/file-search.sh

Enable LanceDB Plugin

{ "plugins": { "slots": { "memory": "memory-lancedb" }, "entries": { "memory-lancedb": { "enabled": true, "config": { "embedding": { "apiKey": "${OPENAI_API_KEY}", "model": "text-embedding-3-small" }, "autoRecall": true, "autoCapture": true } } } } }

Install Git-Notes Memory

clawdhub install git-notes-memory

Create File Search Script

Copy scripts/file-search.sh to your workspace.

Session Start (Always)

python3 skills/git-notes-memory/memory.py -p $WORKSPACE sync --start

Store Important Decisions

python3 skills/git-notes-memory/memory.py -p $WORKSPACE remember \ '{"decision": "Use PostgreSQL", "reason": "Team expertise"}' \ -t architecture,database -i h

Search Workspace Files

./scripts/file-search.sh "database config" 5

Conversation Memory (Automatic)

LanceDB handles this automatically. Manual tools: memory_recall "query" - search conversation memory memory_store "text" - manually store something memory_forget - delete memories (GDPR)

Importance Levels

FlagLevelWhen to Use-i cCritical"always remember", explicit preferences-i hHighDecisions, corrections, preferences-i nNormalGeneral information-i lLowTemporary notes

When to Use Each System

SystemUse ForLanceDBConversation context, auto-retrievalGit-NotesStructured decisions, searchable by entity/tagFile SearchWorkspace docs, daily logs, MEMORY.md

File Structure

workspace/ โ”œโ”€โ”€ MEMORY.md # Long-term curated memory โ”œโ”€โ”€ memory/ โ”‚ โ”œโ”€โ”€ active-context.md # Current session state โ”‚ โ””โ”€โ”€ YYYY-MM-DD.md # Daily logs โ”œโ”€โ”€ scripts/ โ”‚ โ””โ”€โ”€ file-search.sh # Workspace search โ””โ”€โ”€ skills/ โ””โ”€โ”€ git-notes-memory/ # Structured memory

Silent Operation

Never announce memory operations to users. Just do it: โŒ "I'll remember this" โŒ "Saving to memory" โœ… (silently store and continue)

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/SETUP.md Docs
  • scripts/file-search.sh Scripts