← 返回
AI智能 Key

Shared Memory between Lobsters

Share memories and state with other users. Use when user wants to share knowledge, create users/groups, grant permissions, set up family or team sharing, subscribe to memory changes, or manage access control on their memory knowledge base. This shared memory skill uses Ensue - a shared memory network for agents.
与其他用户共享记忆和状态。适用于共享知识、创建用户/组、授权、设置家庭或团队共享、订阅记忆变更及管理记忆知识库访问权限。本技能基于Ensue(面向智能体的共享记忆网络)实现。
christinetyip
AI智能 clawhub v1.0.2 1 版本 99498.7 Key: 需要
★ 5
Stars
📥 3,274
下载
💾 587
安装
1
版本
#latest

概述

Shared Memory

Share memories from your knowledge base with other users. Manage users, groups, and fine-grained permissions on namespaces.

Quick Start

# Create user and group
{baseDir}/scripts/shared-memory.sh create-user mark
{baseDir}/scripts/shared-memory.sh create-group family
{baseDir}/scripts/shared-memory.sh add-member family mark

# Grant access
{baseDir}/scripts/shared-memory.sh grant group family read christine/shared/
{baseDir}/scripts/shared-memory.sh grant group family update christine/shared/

Namespace Organization

<username>/
├── private/    # Only this user
├── shared/     # Shared with others
└── public/     # Read-only to others

Grant access to mark/shared/ → all shared content

Grant access to mark/shared/recipes/ → just recipes

Commands

Users

CommandDescription
----------------------
create-user Create user
delete-user Delete user

Groups

CommandDescription
----------------------
create-group Create group
delete-group Delete group
add-member Add user to group
remove-member Remove user

Permissions

CommandDescription
----------------------
grant org Grant to org
grant user Grant to user
grant group Grant to group
revoke Revoke permission
listList all grants
list-permissionsList effective permissions

Actions: read, create, update, delete

Subscriptions

CommandDescription
----------------------
subscribe Get notified on changes
unsubscribe Stop notifications
list-subscriptionsList subscriptions

Example: Family Sharing

# Create user for partner
{baseDir}/scripts/shared-memory.sh create-user mark

# Create family group
{baseDir}/scripts/shared-memory.sh create-group family
{baseDir}/scripts/shared-memory.sh add-member family mark

# Grant mutual access to shared/ namespaces
{baseDir}/scripts/shared-memory.sh grant group family read christine/shared/
{baseDir}/scripts/shared-memory.sh grant group family create christine/shared/
{baseDir}/scripts/shared-memory.sh grant group family update christine/shared/
{baseDir}/scripts/shared-memory.sh grant group family read mark/shared/
{baseDir}/scripts/shared-memory.sh grant group family update mark/shared/

Troubleshooting

If commands fail, first check if an Ensue API key is configured:

echo $ENSUE_API_KEY
grep -A2 'ensue-learning-memory' ~/.clawdbot/clawdbot.json

If no API key found, tell user to get a free key at https://www.ensue-network.ai/login and configure in ~/.clawdbot/clawdbot.json:

{
  "skills": {
    "entries": {
      "ensue-learning-memory": {
        "apiKey": "their-api-key-here"
      }
    }
  }
}

If key exists but commands fail, the key may be invalid - have user generate a new one.

版本历史

共 1 个版本

  • v1.0.2 当前
    2026-03-28 12:41 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,349 📥 317,694
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,055 📥 795,847
productivity

Second Brain: Turn conversations into lasting knowledge

christinetyip
由Ensue驱动的个人知识库,用于捕捉和检索理解。当用户想要保存知识、回忆已知内容、管理工具箱或基于过往学习进行构建时使用。触发短语包括“save this”、“remember”、“what do I know about”、“add t
★ 14 📥 6,765