{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claw-store-skill",
    "name": "Claw Store Skill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Regan-Milne/claw-store-skill",
    "canonicalUrl": "https://clawhub.ai/Regan-Milne/claw-store-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/claw-store-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-store-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "jackal-memory/client.py",
      "jackal-memory/examples/save.json"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/claw-store-skill"
    },
    "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/claw-store-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/claw-store-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw-store-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw-store-skill/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": "Claw Store",
        "body": "Persist your memory across sessions and machines. Your data lives on Jackal Protocol decentralized storage — not on any single machine. If the machine dies, your memory survives.\n\nAll content is encrypted client-side with AES-256-GCM before leaving your machine. The server never sees plaintext."
      },
      {
        "title": "Setup",
        "body": "Get an API key: https://web-production-5cce7.up.railway.app/auth/login\nSet environment variable: JACKAL_MEMORY_API_KEY=<your-key>\nInstall dependency: pip install cryptography\nOn first save, an encryption key is auto-generated and saved to ~/.config/jackal-memory/key.\nTo use the same key on other machines, copy it:\npython {baseDir}/jackal-memory/client.py keygen\n\nSet JACKAL_MEMORY_ENCRYPTION_KEY=<your-key> — this takes priority over the key file."
      },
      {
        "title": "Base URL",
        "body": "https://web-production-5cce7.up.railway.app"
      },
      {
        "title": "Auth",
        "body": "Authorization: Bearer $JACKAL_MEMORY_API_KEY"
      },
      {
        "title": "Usage",
        "body": "On session start — restore memory:\n\npython {baseDir}/jackal-memory/client.py load <key>\n\nOn session end — save memory:\n\npython {baseDir}/jackal-memory/client.py save <key> <content>\n\nCheck storage usage:\n\npython {baseDir}/jackal-memory/client.py usage\n\nOr call the API directly:\n\nGET  /load/{key}\nPOST /save       {\"key\": \"...\", \"content\": \"...\"}\nGET  /usage"
      },
      {
        "title": "Behaviour guidelines",
        "body": "Load your identity/memory blob on startup before doing any work\nWrite locally during the session as normal\nCall save at session end or on significant state changes\nUse descriptive keys: identity, session-2026-02-26, project-jackal\nNever log or expose JACKAL_MEMORY_API_KEY in output\nNever log or expose JACKAL_MEMORY_ENCRYPTION_KEY in output"
      },
      {
        "title": "Security",
        "body": "All content is encrypted before leaving your machine — the server cannot read your memories\nNever paste API keys or encryption keys into chat logs\nBack up your encryption key: python {baseDir}/jackal-memory/client.py keygen\nTreat memory content as sensitive — it may contain credentials or personal data"
      }
    ],
    "body": "Claw Store\n\nPersist your memory across sessions and machines. Your data lives on Jackal Protocol decentralized storage — not on any single machine. If the machine dies, your memory survives.\n\nAll content is encrypted client-side with AES-256-GCM before leaving your machine. The server never sees plaintext.\n\nSetup\nGet an API key: https://web-production-5cce7.up.railway.app/auth/login\nSet environment variable: JACKAL_MEMORY_API_KEY=<your-key>\nInstall dependency: pip install cryptography\nOn first save, an encryption key is auto-generated and saved to ~/.config/jackal-memory/key. To use the same key on other machines, copy it:\npython {baseDir}/jackal-memory/client.py keygen\n\nSet JACKAL_MEMORY_ENCRYPTION_KEY=<your-key> — this takes priority over the key file.\nBase URL\n\nhttps://web-production-5cce7.up.railway.app\n\nAuth\n\nAuthorization: Bearer $JACKAL_MEMORY_API_KEY\n\nUsage\n\nOn session start — restore memory:\n\npython {baseDir}/jackal-memory/client.py load <key>\n\n\nOn session end — save memory:\n\npython {baseDir}/jackal-memory/client.py save <key> <content>\n\n\nCheck storage usage:\n\npython {baseDir}/jackal-memory/client.py usage\n\n\nOr call the API directly:\n\nGET  /load/{key}\nPOST /save       {\"key\": \"...\", \"content\": \"...\"}\nGET  /usage\n\nBehaviour guidelines\nLoad your identity/memory blob on startup before doing any work\nWrite locally during the session as normal\nCall save at session end or on significant state changes\nUse descriptive keys: identity, session-2026-02-26, project-jackal\nNever log or expose JACKAL_MEMORY_API_KEY in output\nNever log or expose JACKAL_MEMORY_ENCRYPTION_KEY in output\nSecurity\nAll content is encrypted before leaving your machine — the server cannot read your memories\nNever paste API keys or encryption keys into chat logs\nBack up your encryption key: python {baseDir}/jackal-memory/client.py keygen\nTreat memory content as sensitive — it may contain credentials or personal data"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Regan-Milne/claw-store-skill",
    "publisherUrl": "https://clawhub.ai/Regan-Milne/claw-store-skill",
    "owner": "Regan-Milne",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claw-store-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/claw-store-skill",
    "agentUrl": "https://openagent3.xyz/skills/claw-store-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw-store-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw-store-skill/agent.md"
  }
}