{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/shared-memory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shared-memory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/shared-memory.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/shared-memory",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Shared Memory",
        "body": "Share memories from your knowledge base with other users. Manage users, groups, and fine-grained permissions on namespaces."
      },
      {
        "title": "Quick Start",
        "body": "# Create user and group\n{baseDir}/scripts/shared-memory.sh create-user mark\n{baseDir}/scripts/shared-memory.sh create-group family\n{baseDir}/scripts/shared-memory.sh add-member family mark\n\n# Grant access\n{baseDir}/scripts/shared-memory.sh grant group family read christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family update christine/shared/"
      },
      {
        "title": "Namespace Organization",
        "body": "<username>/\n├── private/    # Only this user\n├── shared/     # Shared with others\n└── public/     # Read-only to others\n\nGrant access to mark/shared/ → all shared content\nGrant access to mark/shared/recipes/ → just recipes"
      },
      {
        "title": "Users",
        "body": "CommandDescriptioncreate-user <username>Create userdelete-user <username>Delete user"
      },
      {
        "title": "Groups",
        "body": "CommandDescriptioncreate-group <name>Create groupdelete-group <name>Delete groupadd-member <group> <user>Add user to groupremove-member <group> <user>Remove user"
      },
      {
        "title": "Permissions",
        "body": "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\n\nActions: read, create, update, delete"
      },
      {
        "title": "Subscriptions",
        "body": "CommandDescriptionsubscribe <key>Get notified on changesunsubscribe <key>Stop notificationslist-subscriptionsList subscriptions"
      },
      {
        "title": "Example: Family Sharing",
        "body": "# Create user for partner\n{baseDir}/scripts/shared-memory.sh create-user mark\n\n# Create family group\n{baseDir}/scripts/shared-memory.sh create-group family\n{baseDir}/scripts/shared-memory.sh add-member family mark\n\n# Grant mutual access to shared/ namespaces\n{baseDir}/scripts/shared-memory.sh grant group family read christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family create christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family update christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family read mark/shared/\n{baseDir}/scripts/shared-memory.sh grant group family update mark/shared/"
      },
      {
        "title": "Troubleshooting",
        "body": "If commands fail, first check if an Ensue API key is configured:\n\necho $ENSUE_API_KEY\ngrep -A2 'ensue-learning-memory' ~/.clawdbot/clawdbot.json\n\nIf no API key found, tell user to get a free key at https://www.ensue-network.ai/login and configure in ~/.clawdbot/clawdbot.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"ensue-learning-memory\": {\n        \"apiKey\": \"their-api-key-here\"\n      }\n    }\n  }\n}\n\nIf key exists but commands fail, the key may be invalid - have user generate a new one."
      }
    ],
    "body": "Shared Memory\n\nShare memories from your knowledge base with other users. Manage users, groups, and fine-grained permissions on namespaces.\n\nQuick Start\n# Create user and group\n{baseDir}/scripts/shared-memory.sh create-user mark\n{baseDir}/scripts/shared-memory.sh create-group family\n{baseDir}/scripts/shared-memory.sh add-member family mark\n\n# Grant access\n{baseDir}/scripts/shared-memory.sh grant group family read christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family update christine/shared/\n\nNamespace Organization\n<username>/\n├── private/    # Only this user\n├── shared/     # Shared with others\n└── public/     # Read-only to others\n\n\nGrant access to mark/shared/ → all shared content Grant access to mark/shared/recipes/ → just recipes\n\nCommands\nUsers\nCommand\tDescription\ncreate-user <username>\tCreate user\ndelete-user <username>\tDelete user\nGroups\nCommand\tDescription\ncreate-group <name>\tCreate group\ndelete-group <name>\tDelete group\nadd-member <group> <user>\tAdd user to group\nremove-member <group> <user>\tRemove user\nPermissions\nCommand\tDescription\ngrant org <action> <pattern>\tGrant to org\ngrant user <name> <action> <pattern>\tGrant to user\ngrant group <name> <action> <pattern>\tGrant to group\nrevoke <grant_id>\tRevoke permission\nlist\tList all grants\nlist-permissions\tList effective permissions\n\nActions: read, create, update, delete\n\nSubscriptions\nCommand\tDescription\nsubscribe <key>\tGet notified on changes\nunsubscribe <key>\tStop notifications\nlist-subscriptions\tList subscriptions\nExample: Family Sharing\n# Create user for partner\n{baseDir}/scripts/shared-memory.sh create-user mark\n\n# Create family group\n{baseDir}/scripts/shared-memory.sh create-group family\n{baseDir}/scripts/shared-memory.sh add-member family mark\n\n# Grant mutual access to shared/ namespaces\n{baseDir}/scripts/shared-memory.sh grant group family read christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family create christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family update christine/shared/\n{baseDir}/scripts/shared-memory.sh grant group family read mark/shared/\n{baseDir}/scripts/shared-memory.sh grant group family update mark/shared/\n\nTroubleshooting\n\nIf commands fail, first check if an Ensue API key is configured:\n\necho $ENSUE_API_KEY\ngrep -A2 'ensue-learning-memory' ~/.clawdbot/clawdbot.json\n\n\nIf no API key found, tell user to get a free key at https://www.ensue-network.ai/login and configure in ~/.clawdbot/clawdbot.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"ensue-learning-memory\": {\n        \"apiKey\": \"their-api-key-here\"\n      }\n    }\n  }\n}\n\n\nIf key exists but commands fail, the key may be invalid - have user generate a new one."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/christinetyip/shared-memory",
    "publisherUrl": "https://clawhub.ai/christinetyip/shared-memory",
    "owner": "christinetyip",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}