# Send Shared Memory between Lobsters to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "shared-memory",
    "name": "Shared Memory between Lobsters",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/christinetyip/shared-memory",
    "canonicalUrl": "https://clawhub.ai/christinetyip/shared-memory",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/shared-memory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shared-memory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/shared-memory.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "shared-memory",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T16:32:37.940Z",
      "expiresAt": "2026-05-10T16:32:37.940Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shared-memory",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shared-memory",
        "contentDisposition": "attachment; filename=\"shared-memory-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "shared-memory"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/shared-memory"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/shared-memory",
    "downloadUrl": "https://openagent3.xyz/downloads/shared-memory",
    "agentUrl": "https://openagent3.xyz/skills/shared-memory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/shared-memory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/shared-memory/agent.md"
  }
}
```
## Documentation

### 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

### Users

CommandDescriptioncreate-user <username>Create userdelete-user <username>Delete user

### Groups

CommandDescriptioncreate-group <name>Create groupdelete-group <name>Delete groupadd-member <group> <user>Add user to groupremove-member <group> <user>Remove user

### Permissions

CommandDescriptiongrant org <action> <pattern>Grant to orggrant user <name> <action> <pattern>Grant to usergrant group <name> <action> <pattern>Grant to grouprevoke <grant_id>Revoke permissionlistList all grantslist-permissionsList effective permissions

Actions: read, create, update, delete

### Subscriptions

CommandDescriptionsubscribe <key>Get notified on changesunsubscribe <key>Stop notificationslist-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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: christinetyip
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T16:32:37.940Z
- Expires at: 2026-05-10T16:32:37.940Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/shared-memory)
- [Send to Agent page](https://openagent3.xyz/skills/shared-memory/agent)
- [JSON manifest](https://openagent3.xyz/skills/shared-memory/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/shared-memory/agent.md)
- [Download page](https://openagent3.xyz/downloads/shared-memory)