{
  "schemaVersion": "1.0",
  "item": {
    "slug": "supermemory-free",
    "name": "Supermemory Free",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Broedkrummen/supermemory-free",
    "canonicalUrl": "https://clawhub.ai/Broedkrummen/supermemory-free",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/supermemory-free",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=supermemory-free",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "auto_capture.py",
      "install_cron.sh",
      "README.md",
      "search.py",
      "SKILL.md",
      "store.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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/supermemory-free"
    },
    "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/supermemory-free",
    "agentPageUrl": "https://openagent3.xyz/skills/supermemory-free/agent",
    "manifestUrl": "https://openagent3.xyz/skills/supermemory-free/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/supermemory-free/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Supermemory Free — Cloud Knowledge Backup",
        "body": "Backs up important knowledge and insights to Supermemory.ai's cloud using the free tier API.\nUses only /v3/documents (store) and /v3/search (retrieve) — no Pro-only endpoints."
      },
      {
        "title": "Prerequisites",
        "body": "Set in .env\n\nSUPERMEMORY_OPENCLAW_API_KEY=\"sm_...\""
      },
      {
        "title": "supermemory_cloud_store",
        "body": "Store a knowledge string to the cloud.\n\npython3 skills/supermemory-free/store.py \"Your knowledge string here\"\n\n# With optional container tag (namespace/filter)\npython3 skills/supermemory-free/store.py \"knowledge string\" --tag openclaw\n\n# With metadata\npython3 skills/supermemory-free/store.py \"knowledge string\" --tag fixes --source \"session\"\n\n# Output raw JSON\npython3 skills/supermemory-free/store.py \"knowledge string\" --json\n\nWhen to use:\n\nUser asks to \"remember\" something permanently\nImportant configuration/setup knowledge\nResolved problems / solutions discovered\nKey facts you want cross-session persistence for"
      },
      {
        "title": "supermemory_cloud_search",
        "body": "Search the cloud memory for relevant knowledge.\n\npython3 skills/supermemory-free/search.py \"your query\"\n\n# With container tag filter\npython3 skills/supermemory-free/search.py \"your query\" --tag openclaw\n\n# More results\npython3 skills/supermemory-free/search.py \"your query\" --limit 10\n\n# Higher precision (less noise)\npython3 skills/supermemory-free/search.py \"your query\" --threshold 0.7\n\n# Search across ALL tags\npython3 skills/supermemory-free/search.py \"your query\" --no-tag\n\nWhen to use:\n\nLocal memory (MEMORY.md, daily logs) doesn't have the answer\nUser references something from \"a long time ago\"\nCross-session knowledge lookup\n\"Do you remember when...\" queries"
      },
      {
        "title": "Auto-Capture (Cron)",
        "body": "Scans recent session memory logs and automatically pushes high-value insights to Supermemory cloud.\n\n# Run manually\npython3 skills/supermemory-free/auto_capture.py\n\n# Dry run (show what would be captured, no upload)\npython3 skills/supermemory-free/auto_capture.py --dry-run\n\n# Scan last N days (default: 3)\npython3 skills/supermemory-free/auto_capture.py --days 7\n\n# Force re-upload even if already seen\npython3 skills/supermemory-free/auto_capture.py --force\n\n# Verbose mode\npython3 skills/supermemory-free/auto_capture.py --verbose\n\nInstall cron job (runs daily at 2:00 AM UTC):\n\nbash skills/supermemory-free/install_cron.sh\n\nRemove cron job:\n\nbash skills/supermemory-free/install_cron.sh --remove\n\nCheck cron status:\n\nbash skills/supermemory-free/install_cron.sh --status"
      },
      {
        "title": "What Gets Auto-Captured",
        "body": "The auto-capture script identifies \"high-value\" insights from memory logs using these heuristics:\n\nPatternLabelExampleResolved errors / fixesfixFixed: SSL cert error by running...Error contexterrorException: Connection refused on port 5432Configuration pathsconfig/etc/nginx/sites-available/defaultAPI/endpoint infoapiEndpoint: POST /v3/documents for storageUser preferencespreferenceUser prefers Python over Node for scriptsDecisions madedecisionDecided to use PostgreSQL because...Learned factsinsightLearned that cron syntax for...Installs / setupsetupInstalled nginx, configured with...Bullet-point blocksbullet- Key finding: X works better than Y\n\nDeduplication: Already-uploaded items are tracked in .capture_state.json — re-running is safe."
      },
      {
        "title": "Container Tags",
        "body": "Use --tag to namespace your memories:\n\nTagPurposeopenclawGeneral OpenClaw session knowledge (default)fixesBug fixes and solutionsconfigConfiguration and setupuser-prefsUser preferencesprojectsProject-specific knowledge"
      },
      {
        "title": "Files",
        "body": "FilePurposestore.pyCLI tool: upload knowledge to cloudsearch.pyCLI tool: search cloud knowledgeauto_capture.pyCron script: auto-analyze memory logsinstall_cron.shInstall/remove/status of cron job.capture_state.jsonDedup state (auto-generated, gitignore)SKILL.mdThis file_meta.jsonSkill metadata"
      },
      {
        "title": "API Info",
        "body": "Base URL: https://api.supermemory.ai\nStore endpoint: POST /v3/documents\nSearch endpoint: POST /v3/search\nAuth: Bearer token from SUPERMEMORY_OPENCLAW_API_KEY\nFree tier limits: Check https://console.supermemory.ai for current quotas\nNote: Cloudflare-compatible headers included — avoids 1010 access denial errors"
      },
      {
        "title": "Troubleshooting",
        "body": "HTTP 403 / 1010 Access Denied:\nThe scripts include proper User-Agent, Origin, and Referer headers to satisfy Cloudflare. If it recurs, verify the API key is valid at https://console.supermemory.ai.\n\nNo memory files found:\nAuto-capture looks in memory/YYYY-MM-DD.md. Ensure your memory skill is writing daily logs there.\n\nRe-upload everything:\nDelete .capture_state.json or use --force to ignore the dedup state."
      }
    ],
    "body": "Supermemory Free — Cloud Knowledge Backup\n\nBacks up important knowledge and insights to Supermemory.ai's cloud using the free tier API.\nUses only /v3/documents (store) and /v3/search (retrieve) — no Pro-only endpoints.\n\nPrerequisites\n\nSet in .env\n\nSUPERMEMORY_OPENCLAW_API_KEY=\"sm_...\"\n\nTools\nsupermemory_cloud_store\n\nStore a knowledge string to the cloud.\n\npython3 skills/supermemory-free/store.py \"Your knowledge string here\"\n\n# With optional container tag (namespace/filter)\npython3 skills/supermemory-free/store.py \"knowledge string\" --tag openclaw\n\n# With metadata\npython3 skills/supermemory-free/store.py \"knowledge string\" --tag fixes --source \"session\"\n\n# Output raw JSON\npython3 skills/supermemory-free/store.py \"knowledge string\" --json\n\n\nWhen to use:\n\nUser asks to \"remember\" something permanently\nImportant configuration/setup knowledge\nResolved problems / solutions discovered\nKey facts you want cross-session persistence for\nsupermemory_cloud_search\n\nSearch the cloud memory for relevant knowledge.\n\npython3 skills/supermemory-free/search.py \"your query\"\n\n# With container tag filter\npython3 skills/supermemory-free/search.py \"your query\" --tag openclaw\n\n# More results\npython3 skills/supermemory-free/search.py \"your query\" --limit 10\n\n# Higher precision (less noise)\npython3 skills/supermemory-free/search.py \"your query\" --threshold 0.7\n\n# Search across ALL tags\npython3 skills/supermemory-free/search.py \"your query\" --no-tag\n\n\nWhen to use:\n\nLocal memory (MEMORY.md, daily logs) doesn't have the answer\nUser references something from \"a long time ago\"\nCross-session knowledge lookup\n\"Do you remember when...\" queries\nAuto-Capture (Cron)\n\nScans recent session memory logs and automatically pushes high-value insights to Supermemory cloud.\n\n# Run manually\npython3 skills/supermemory-free/auto_capture.py\n\n# Dry run (show what would be captured, no upload)\npython3 skills/supermemory-free/auto_capture.py --dry-run\n\n# Scan last N days (default: 3)\npython3 skills/supermemory-free/auto_capture.py --days 7\n\n# Force re-upload even if already seen\npython3 skills/supermemory-free/auto_capture.py --force\n\n# Verbose mode\npython3 skills/supermemory-free/auto_capture.py --verbose\n\n\nInstall cron job (runs daily at 2:00 AM UTC):\n\nbash skills/supermemory-free/install_cron.sh\n\n\nRemove cron job:\n\nbash skills/supermemory-free/install_cron.sh --remove\n\n\nCheck cron status:\n\nbash skills/supermemory-free/install_cron.sh --status\n\nWhat Gets Auto-Captured\n\nThe auto-capture script identifies \"high-value\" insights from memory logs using these heuristics:\n\nPattern\tLabel\tExample\nResolved errors / fixes\tfix\tFixed: SSL cert error by running...\nError context\terror\tException: Connection refused on port 5432\nConfiguration paths\tconfig\t/etc/nginx/sites-available/default\nAPI/endpoint info\tapi\tEndpoint: POST /v3/documents for storage\nUser preferences\tpreference\tUser prefers Python over Node for scripts\nDecisions made\tdecision\tDecided to use PostgreSQL because...\nLearned facts\tinsight\tLearned that cron syntax for...\nInstalls / setup\tsetup\tInstalled nginx, configured with...\nBullet-point blocks\tbullet\t- Key finding: X works better than Y\n\nDeduplication: Already-uploaded items are tracked in .capture_state.json — re-running is safe.\n\nContainer Tags\n\nUse --tag to namespace your memories:\n\nTag\tPurpose\nopenclaw\tGeneral OpenClaw session knowledge (default)\nfixes\tBug fixes and solutions\nconfig\tConfiguration and setup\nuser-prefs\tUser preferences\nprojects\tProject-specific knowledge\nFiles\nFile\tPurpose\nstore.py\tCLI tool: upload knowledge to cloud\nsearch.py\tCLI tool: search cloud knowledge\nauto_capture.py\tCron script: auto-analyze memory logs\ninstall_cron.sh\tInstall/remove/status of cron job\n.capture_state.json\tDedup state (auto-generated, gitignore)\nSKILL.md\tThis file\n_meta.json\tSkill metadata\nAPI Info\nBase URL: https://api.supermemory.ai\nStore endpoint: POST /v3/documents\nSearch endpoint: POST /v3/search\nAuth: Bearer token from SUPERMEMORY_OPENCLAW_API_KEY\nFree tier limits: Check https://console.supermemory.ai for current quotas\nNote: Cloudflare-compatible headers included — avoids 1010 access denial errors\nTroubleshooting\n\nHTTP 403 / 1010 Access Denied:\nThe scripts include proper User-Agent, Origin, and Referer headers to satisfy Cloudflare. If it recurs, verify the API key is valid at https://console.supermemory.ai.\n\nNo memory files found:\nAuto-capture looks in memory/YYYY-MM-DD.md. Ensure your memory skill is writing daily logs there.\n\nRe-upload everything:\nDelete .capture_state.json or use --force to ignore the dedup state."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Broedkrummen/supermemory-free",
    "publisherUrl": "https://clawhub.ai/Broedkrummen/supermemory-free",
    "owner": "Broedkrummen",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/supermemory-free",
    "downloadUrl": "https://openagent3.xyz/downloads/supermemory-free",
    "agentUrl": "https://openagent3.xyz/skills/supermemory-free/agent",
    "manifestUrl": "https://openagent3.xyz/skills/supermemory-free/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/supermemory-free/agent.md"
  }
}