{
  "schemaVersion": "1.0",
  "item": {
    "slug": "memos",
    "name": "Memos",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/fty4/memos",
    "canonicalUrl": "https://clawhub.ai/fty4/memos",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/memos",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memos",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "memos.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. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/memos"
    },
    "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/memos",
    "agentPageUrl": "https://openagent3.xyz/skills/memos/agent",
    "manifestUrl": "https://openagent3.xyz/skills/memos/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/memos/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": "Purpose",
        "body": "This skill provides a simple interface to the Memos API (https://usememos.com/docs/api). It lets you create, read, delete, and list memos from OpenClaw."
      },
      {
        "title": "How it works",
        "body": "The skill is implemented in Python and uses the requests library.\nIt requires two environment variables:\n\nMEMOS_URL – REQUIRED. Base URL of your Memos instance (e.g., https://demo.usememos.com).\nMEMOS_TOKEN – REQUIRED. Personal access token for authentication.\n\n\nIf either MEMOS_URL or MEMOS_TOKEN is not set, the skill will abort with a clear error."
      },
      {
        "title": "Commands",
        "body": "CommandDescriptionUsage examplecdcreate <content> [visibility]Create a new memo. visibility defaults to PUBLIC (options: PRIVATE, PROTECTED, PUBLIC). The tag #openclaw is appended automatically.openclaw skill-run create \"Hello world\" \"PUBLIC\"get <id>Retrieve a memo by its ID. ID can be in format memos/123 or just 123.openclaw skill-run get 123delete <id> [force]Delete a memo. Optional force (true/false) will delete even if it has associated data.openclaw skill-run delete 123 truelist [pageSize]List memos with pagination. pageSize defaults to 20 (max 1000).openclaw skill-run list 50"
      },
      {
        "title": "Direct Python Usage",
        "body": "You can also run the commands directly with Python:\n\n# Create a memo\npython3 skills/memos/memos.py create \"My memo content\" \"PUBLIC\"\n\n# Get a memo by ID\npython3 skills/memos/memos.py get j9THXDmYtueosTTeHcC5NA\n\n# Delete a memo\npython3 skills/memos/memos.py delete j9THXDmYtueosTTeHcC5NA\n\n# Delete with force\npython3 skills/memos/memos.py delete j9THXDmYtueosTTeHcC5NA true\n\n# List memos (default 20)\npython3 skills/memos/memos.py list\n\n# List with custom page size\npython3 skills/memos/memos.py list 50\n\nAll commands return JSON output on success and JSON error messages on stderr when errors occur."
      },
      {
        "title": "Referencing Memos in OpenClaw",
        "body": "When you create or retrieve a memo, the API returns a memo object with a uid field. To reference a memo in OpenClaw's output, format it as a markdown link:\n\n[memo description](https://demo.usememos.com/memos/{uid})\n\nExample:\nIf the API returns {\"uid\": \"ABC123xyz\", \"name\": \"memos/ABC123xyz\", ...}, reference it as:\n\nCreated [your memo](https://demo.usememos.com/memos/ABC123xyz)\n\nThe URL format is: {MEMOS_URL}/memos/{uid} where uid is extracted from the response."
      },
      {
        "title": "Error handling",
        "body": "The skill includes comprehensive error handling:\n\nAPI Errors: Returns detailed error messages including HTTP status codes and API response details\nNetwork Errors: Handles timeouts (30s default) and connection failures\nValidation: Validates parameters before making API calls (e.g., visibility options, pageSize range)\nExit codes: Returns 0 on success, 1 on error when run from command line\nError output: All errors are output as JSON to stderr for easy parsing\n\nExample error responses:\n\n{\n  \"error\": \"Memos API Error\",\n  \"message\": \"HTTP 404: Not Found - Memo not found\",\n  \"status_code\": 404\n}"
      },
      {
        "title": "Extending the skill",
        "body": "Add new commands by following the pattern of existing ones.\nIf the Memos API adds new endpoints, you can create corresponding functions.\n\nNOTE: This skill is meant for personal use; never share your MEMOS_TOKEN publicly."
      }
    ],
    "body": "SKILL.md for the Memos skill\nPurpose\n\nThis skill provides a simple interface to the Memos API (https://usememos.com/docs/api). It lets you create, read, delete, and list memos from OpenClaw.\n\nHow it works\nThe skill is implemented in Python and uses the requests library.\nIt requires two environment variables:\nMEMOS_URL – REQUIRED. Base URL of your Memos instance (e.g., https://demo.usememos.com).\nMEMOS_TOKEN – REQUIRED. Personal access token for authentication.\nIf either MEMOS_URL or MEMOS_TOKEN is not set, the skill will abort with a clear error.\nCommands\nCommand\tDescription\tUsage example\tcd\ncreate <content> [visibility]\tCreate a new memo. visibility defaults to PUBLIC (options: PRIVATE, PROTECTED, PUBLIC). The tag #openclaw is appended automatically.\topenclaw skill-run create \"Hello world\" \"PUBLIC\"\t\nget <id>\tRetrieve a memo by its ID. ID can be in format memos/123 or just 123.\topenclaw skill-run get 123\t\ndelete <id> [force]\tDelete a memo. Optional force (true/false) will delete even if it has associated data.\topenclaw skill-run delete 123 true\t\nlist [pageSize]\tList memos with pagination. pageSize defaults to 20 (max 1000).\topenclaw skill-run list 50\t\nDirect Python Usage\n\nYou can also run the commands directly with Python:\n\n# Create a memo\npython3 skills/memos/memos.py create \"My memo content\" \"PUBLIC\"\n\n# Get a memo by ID\npython3 skills/memos/memos.py get j9THXDmYtueosTTeHcC5NA\n\n# Delete a memo\npython3 skills/memos/memos.py delete j9THXDmYtueosTTeHcC5NA\n\n# Delete with force\npython3 skills/memos/memos.py delete j9THXDmYtueosTTeHcC5NA true\n\n# List memos (default 20)\npython3 skills/memos/memos.py list\n\n# List with custom page size\npython3 skills/memos/memos.py list 50\n\n\nAll commands return JSON output on success and JSON error messages on stderr when errors occur.\n\nReferencing Memos in OpenClaw\n\nWhen you create or retrieve a memo, the API returns a memo object with a uid field. To reference a memo in OpenClaw's output, format it as a markdown link:\n\n[memo description](https://demo.usememos.com/memos/{uid})\n\n\nExample: If the API returns {\"uid\": \"ABC123xyz\", \"name\": \"memos/ABC123xyz\", ...}, reference it as:\n\nCreated [your memo](https://demo.usememos.com/memos/ABC123xyz)\n\n\nThe URL format is: {MEMOS_URL}/memos/{uid} where uid is extracted from the response.\n\nError handling\n\nThe skill includes comprehensive error handling:\n\nAPI Errors: Returns detailed error messages including HTTP status codes and API response details\nNetwork Errors: Handles timeouts (30s default) and connection failures\nValidation: Validates parameters before making API calls (e.g., visibility options, pageSize range)\nExit codes: Returns 0 on success, 1 on error when run from command line\nError output: All errors are output as JSON to stderr for easy parsing\n\nExample error responses:\n\n{\n  \"error\": \"Memos API Error\",\n  \"message\": \"HTTP 404: Not Found - Memo not found\",\n  \"status_code\": 404\n}\n\nExtending the skill\nAdd new commands by following the pattern of existing ones.\nIf the Memos API adds new endpoints, you can create corresponding functions.\n\nNOTE: This skill is meant for personal use; never share your MEMOS_TOKEN publicly."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/fty4/memos",
    "publisherUrl": "https://clawhub.ai/fty4/memos",
    "owner": "fty4",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/memos",
    "downloadUrl": "https://openagent3.xyz/downloads/memos",
    "agentUrl": "https://openagent3.xyz/skills/memos/agent",
    "manifestUrl": "https://openagent3.xyz/skills/memos/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/memos/agent.md"
  }
}