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

unibase-membase统一数据库

Agent Skill

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

总安装

56,255

周安装

2,298

GitHub Stars

公开资料未说明

下载量

18,016
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install unibase-membase

简介

使用 Membase 管理代理内存 - 一个分散的加密内存备份和恢复系统。为代理内存提供备份、恢复、列表、差异、状态和清理操作。

SKILL.md

name
membase
description
Manage agent memory with Membase - a decentralized, encrypted memory backup and restore system. Provides backup, restore, list, diff, status, and cleanup operations for agent memories.
license
MIT
metadata
author
Unibase
version
1.0.0
category
memory-management
tags
[backup, encryption, membase, storage, decentralized, memory]
allowed-tools

Membase Memory Management

Membase provides secure, decentralized memory storage for AI agents with end-to-end encryption.

When to Use This Skill

Activate this skill when the user:

  • Asks to backup their memories, conversations, or workspace
  • Wants to restore previous memories or conversations
  • Wants to see available backups
  • Asks to compare different backup versions
  • Wants to check backup status
  • Mentions "membase" or "backup memories"

Overview

All Membase operations go through a single command:

node membase.ts <command> [options]

Available commands:

  • backup - Backup memories to Membase
  • restore - Restore memories from a backup
  • list - List all available backups
  • diff - Compare two backups
  • status - Show backup status and statistics
  • cleanup - Clean up old backups

Configuration

Environment Variables

export MEMBASE_ACCOUNT=your-account-address
export MEMBASE_SECRET_KEY=your-secret-key
export MEMBASE_BACKUP_PASSWORD=your-backup-password
export MEMBASE_ENDPOINT=https://testnet.hub.membase.io

Check if configured:

echo $MEMBASE_ACCOUNT
echo $MEMBASE_SECRET_KEY
echo $MEMBASE_BACKUP_PASSWORD

Commands

1. backup - Backup Memories

Backs up agent memory files (MEMORY.md, memory/**/*.md) to Membase with AES-256-GCM encryption.

Usage:

node membase.ts backup [options]

Options:

  • --password <pwd> or -p <pwd> - Encryption password (required if not in env)
  • --incremental or -i - Only backup changed files since last backup
  • --workspace <path> - Custom workspace directory
  • --no-validate - Skip password strength validation
  • --no-json - Don't output JSON for agent parsing

Example conversation:

User: "Please backup my memories"

You should:

  1. Check for MEMBASE_BACKUP_PASSWORD:
   echo $MEMBASE_BACKUP_PASSWORD
  1. If not set, ask: "Please provide a backup password for encryption (at least 12 characters with uppercase, lowercase, and numbers):"
  1. Run backup:
   cd skills/membase
   node membase.ts backup --password "<password>"
  1. Show result to user:
   [OK] Backup completed
   Backup ID: backup-2026-02-02T10-30-45-123Z
   Files: 15
   Size: 234 KB

   [WARNING]  Save your backup ID and password securely!

Incremental backup (faster):

node membase.ts backup --password "<password>" --incremental

2. restore - Restore Memories

Restores memories from a Membase backup.

Usage:

node membase.ts restore <backup-id> [options]

Options:

  • <backup-id> - The backup ID to restore (required)
  • --password <pwd> or -p <pwd> - Decryption password (required if not in env)
  • --no-json - Don't output JSON for agent parsing

Example conversation:

User: "Restore my memories from backup-2026-02-02T10-30-45-123Z"

You should:

  1. Check for password:
   echo $MEMBASE_BACKUP_PASSWORD
  1. Run restore:
   cd skills/membase
   node membase.ts restore backup-2026-02-02T10-30-45-123Z --password "<password>"
  1. Show result:
   [OK] Restore completed
   Files restored: 15
   Total size: 234 KB
   Location: ~/.openclaw/workspace/

3. list - List Backups

Lists all available backups for this agent.

Usage:

node membase.ts list [options]

Options:

  • --no-json - Don't output JSON for agent parsing

Example conversation:

User: "Show me my backups" or "List my backups"

You should:

cd skills/membase
node membase.ts list

Output will show:

Available backups:

ID                            Timestamp              Files  Size
──────────────────────────────────────────────────────────────────
backup-2026-02-02T10-30-45-123Z 2026-02-02 10:30:45    15     234 KB
backup-2026-02-01T15-20-10-456Z 2026-02-01 15:20:10    12     198 KB

4. diff - Compare Backups

Compares two backups to see what changed.

Usage:

node membase.ts diff <backup-id-1> <backup-id-2> [options]

Options:

  • <backup-id-1> - First backup ID (required)
  • <backup-id-2> - Second backup ID (required)
  • --password <pwd> or -p <pwd> - Decryption password (required if not in env)
  • --no-json - Don't output JSON for agent parsing

Example conversation:

User: "What changed between my last two backups?"

You should:

  1. Get the two most recent backup IDs:
   cd skills/membase
   node membase.ts list
  1. Run diff with the two IDs:
   node membase.ts diff backup-2026-02-02T10-30-45-123Z backup-2026-02-01T15-20-10-456Z --password "<password>"
  1. Show result:
   Added files (2):
     + memory/conversation-new.md
     + memory/notes.md

   Modified files (1):
     ~ MEMORY.md

5. status - Show Status

Shows backup status and statistics.

Usage:

node membase.ts status [options]

Options:

  • --no-json - Don't output JSON for agent parsing

Example conversation:

User: "What's my backup status?" or "Check backup status"

You should:

cd skills/membase
node membase.ts status

Output shows:

[STATS] Backup Status

Local:
  Files: 15
  Size: 234 KB

Remote:
  Backups: 10

Configuration:
  Endpoint: https://testnet.hub.membase.io
  Agent: my-agent
  Workspace: ~/.openclaw/workspace

6. cleanup - Clean Up Old Backups

Lists old backups that could be deleted (Membase doesn't support delete API yet).

Usage:

node membase.ts cleanup [options]

Options:

  • --keep-last <n> - Keep last N backups (default: 10)
  • --dry-run - Show what would be deleted without deleting
  • --no-json - Don't output JSON for agent parsing

Example conversation:

User: "Clean up old backups, keep the last 5"

You should:

cd skills/membase
node membase.ts cleanup --keep-last 5

Note: Will show which backups should be deleted, but user needs to delete manually via Membase Hub UI.

Security Notes

  • All data is encrypted client-side with AES-256-GCM
  • Password is derived using PBKDF2 with 100,000 iterations
  • Your password never leaves the local machine
  • Membase storage is decentralized and zero-knowledge
  • Only you can decrypt your backups

Password Requirements

  • At least 12 characters
  • Must contain uppercase letters
  • Must contain lowercase letters
  • Must contain numbers
  • Recommended: Use a password manager

Error Handling

Missing credentials

If you see "Membase credentials not configured":

# User needs to set environment variables:
export MEMBASE_ACCOUNT=your-account
export MEMBASE_SECRET_KEY=your-key

Missing password

If you see "Backup password is required":

  • Ask user for password
  • Or suggest setting MEMBASE_BACKUP_PASSWORD env var

Invalid password

If you see "Invalid password" or "Decryption failed":

  • User provided wrong password
  • Ask for correct password

No backups found

If list shows "No backups found":

  • No backups exist yet
  • Suggest creating first backup

Network error

If connection fails:

  • Check internet connection
  • Verify MEMBASE_ENDPOINT is correct
  • Try again later

Tips for Agents

  1. Always check for password first before asking user
  2. Show the backup ID clearly so user can save it
  3. Parse JSON output if available (between ---JSON_OUTPUT--- and ---END_JSON---)
  4. Be clear about security - emphasize that password is required for restore
  5. Suggest incremental backups for speed after first backup
  6. Remember backup IDs from list command to help user with restore/diff

Examples

Complete backup workflow

# 1. Check status
node membase.ts status

# 2. First backup (full)
node membase.ts backup --password "MySecure123Pass"

# 3. Later: incremental backup
node membase.ts backup --password "MySecure123Pass" --incremental

# 4. List all backups
node membase.ts list

# 5. Compare recent backups
node membase.ts diff backup-id-1 backup-id-2 --password "MySecure123Pass"

# 6. Restore if needed
node membase.ts restore backup-id-1 --password "MySecure123Pass"

Troubleshooting

Command not found

Make sure you're in the skills/membase directory:

cd skills/membase
pwd  # Should show .../skills/membase

Module not found

The lib folder needs to be linked to compiled source:

cd skills/membase
ln -sf ../../dist/lib lib

Permission denied

Make membase.ts executable:

chmod +x membase.ts

Learn More

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.39%
按下载量换算17,185

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills