Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

triple-memory-baidu-embedding三重记忆百度嵌入

Agent Skill

用于搭建或维护带检索增强的 RAG 工作流,适合让 Agent 处理知识库问答、向量检索、来源引用和事实核查。它可以辅助整理数据接入、Embedding、向量库、召回参数和回答生成流程。使用时需要确认数据来源、更新频率、召回阈值和引用展示方式,避免把未命中的资料或过期内容包装成确定事实。

总安装

55,251

周安装

2,257

GitHub Stars

1

下载量

17,875
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:triple-memory-baidu-embedding(三重记忆百度嵌入)
来源仓库:https://github.com/xqicxx/triple-memory-baidu-embedding
安装命令:
openclaw skills install triple-memory-baidu-embedding
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install triple-memory-baidu-embedding

简介

完整的记忆系统结合了百度嵌入自动调用、Git-Notes结构化记忆和基于文件的工作区搜索。当设置具有本地隐私的综合代理内存时、当您需要跨会话的持久上下文时,或者当多个内存后端协同工作来管理决策/首选项/任务时,请使用。

SKILL.md

name
triple-memory-baidu-embedding
version
1.0.0
description
Complete memory system combining Baidu Embedding auto-recall, Git-Notes structured memory, and file-based workspace search. Use when setting up comprehensive agent memory with local privacy, when you need persistent context across sessions, or when managing decisions/preferences/tasks with multiple memory backends working together.
metadata
clawdbot
emoji
🧠
requires
skills

Triple Memory System with Baidu Embedding

A comprehensive memory architecture combining three complementary systems for maximum context retention across sessions, with full privacy protection using Baidu Embedding technology.

📋 Original Source & Modifications

Original Source: Triple Memory (by Clawdbot Team) Modified By: [Your Clawdbot Instance] Modifications: Replaced LanceDB with Baidu Embedding DB for enhanced privacy and Chinese language support

Original Triple Memory SKILL.md was adapted to create this version that:

  • Replaces OpenAI-dependent LanceDB with Baidu Embedding DB
  • Maintains the same three-tier architecture
  • Preserves Git-Notes integration
  • Adds privacy-focused local storage

🏗️ Architecture Overview

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

The Three Systems

1. Baidu Embedding (Conversation Memory)

  • Auto-recall: Relevant memories injected before each response using Baidu Embedding-V1 (requires API credentials)
  • Auto-capture: Preferences/decisions/facts stored automatically with local vector storage (requires API credentials)
  • Privacy Focused: All embeddings processed via Baidu API with local storage
  • Chinese Optimized: Better understanding of Chinese language semantics
  • Tools: baidu_memory_recall, baidu_memory_store, baidu_memory_forget (require API credentials)
  • Triggers: "remember", "prefer", "my X is", "I like/hate/want"
  • Note: When API credentials are not provided, this layer is unavailable and the system operates in degraded mode.

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

🛠️ Setup

Install Dependencies

clawdhub install git-notes-memory
clawdhub install memory-baidu-embedding-db

Configure Baidu API

Set environment variables:

export BAIDU_API_STRING='your_bce_v3_api_string'
export BAIDU_SECRET_KEY='your_secret_key'

Create File Search Script

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

📖 Usage

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

Baidu Embedding Memory (Automatic)

Baidu Embedding handles this automatically when API credentials are available. Manual tools:

  • baidu_memory_recall "query" - search conversation memory using Baidu vectors (requires API credentials)
  • baidu_memory_store "text" - manually store something with Baidu embedding (requires API credentials)
  • baidu_memory_forget - delete memories (GDPR, requires API credentials)

In Degraded Mode (without API credentials):

  • System operates using only Git-Notes and File System layers
  • Manual tools are unavailable
  • Auto-recall and auto-capture are disabled

🎯 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 For
Baidu EmbeddingConversation context, auto-retrieval with privacy
Git-NotesStructured decisions, searchable by entity/tag
File 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/
    ├── triple-memory-baidu-embedding/  # Enhanced memory system
    ├── git-notes-memory/  # Structured memory
    └── memory-baidu-embedding-db/  # Vector storage

🔧 Hook Integration

This skill can be integrated with Clawdbot's startup hooks for automatic initialization:

Memory Boot Hook Integration

To ensure the Triple Memory Baidu system starts automatically when the gateway starts:

  1. The memory-boot-loader hook can be configured to run /root/clawd/session-init-triple-baidu.sh
  2. This ensures all three memory layers are initialized on startup
  3. Provides immediate access to Git-Notes, Baidu Embedding, and file-based memory

Configuration

The system can be integrated with the gateway startup sequence to ensure:

  • Git-Notes synchronization on startup
  • Baidu Embedding connection check
  • File-based memory initialization
  • Ready-to-use memory system from the start

🤫 Silent Operation

Never announce memory operations to users. Just do it:

  • ❌ "I'll remember this"
  • ❌ "Saving to memory"
  • ✅ (silently store and continue)

🔄 Migration from Original Triple Memory

  1. Install this skill in your skills/ directory
  2. Configure your Baidu API credentials
  3. Disable original triple-memory if desired
  4. Update your bot configuration to use this memory system
  5. Verify data integrity and performance

📈 Performance Benefits

  • Enhanced Privacy: All vector storage local with Baidu API
  • Better Chinese Support: Baidu Embedding optimized for Chinese
  • Reduced Costs: Potentially lower API costs compared to OpenAI
  • Same Architecture: Maintains proven three-tier design

🤝 Contributing

Based on original Triple Memory system by Clawdbot Team. Contributions welcome to enhance the Baidu Embedding integration.

📄 License

Original license applies with modifications noted above. Credit given to original authors.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.79%
按下载量换算15,514

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills