# Send Memos 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": "usememos",
    "name": "Memos",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/sinhong2011/usememos",
    "canonicalUrl": "https://clawhub.ai/sinhong2011/usememos",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/usememos",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usememos",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "usememos",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:20:57.316Z",
      "expiresAt": "2026-05-07T03:20:57.316Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usememos",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usememos",
        "contentDisposition": "attachment; filename=\"usememos-0.1.9.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "usememos"
      },
      "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/usememos"
    },
    "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/usememos",
    "downloadUrl": "https://openagent3.xyz/downloads/usememos",
    "agentUrl": "https://openagent3.xyz/skills/usememos/agent",
    "manifestUrl": "https://openagent3.xyz/skills/usememos/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/usememos/agent.md"
  }
}
```
## Documentation

### What it does

Provides full CRUD operations on a self-hosted Memos instance through 5 MCP
tools. Agents can create quick notes, search existing memos, update content
or visibility, and delete memos they no longer need.

### Inputs needed

For creating: content (required), visibility (optional, defaults to PRIVATE)
For listing: filter expression (optional), page size (optional)
For get/update/delete: memo ID (required)

### openclaw-memos-mcp MCP server

This skill requires the openclaw-memos-mcp MCP server to be running. Before
using any memos_* tool, check if the tools are available. If not, tell the
user they need to add the MCP server to their configuration:

{
  "mcpServers": {
    "memos": {
      "command": "npx",
      "args": ["openclaw-memos-mcp"],
      "env": {
        "MEMOS_API_URL": "http://localhost:5230",
        "MEMOS_TOKEN": "<your-access-token>"
      }
    }
  }
}

Tell the user to:

Replace MEMOS_API_URL with their Memos instance URL
Get an access token from Memos: Settings > Access Tokens > Create
Replace <your-access-token> with the token
Restart their MCP client after saving the configuration

### Creating a memo

Call memos_create with the content and optional visibility.

content: Markdown text. Supports #hashtags which Memos auto-extracts as tags.
visibility: PRIVATE (default), PROTECTED (logged-in users), or PUBLIC (everyone).

### Listing memos

Call memos_list to browse or search memos.

pageSize: Number of results (default 20).
pageToken: For pagination, use the nextPageToken from a previous response.
filter: CEL filter expression. Examples:

tag == "work" — memos tagged #work
visibility == "PUBLIC" — public memos only
creator == "users/1" — memos by a specific user

### Reading a specific memo

Call memos_get with the memo ID. The ID is the part after memos/ in the
resource name (e.g., if the name is memos/abc123, the ID is abc123).

### Updating a memo

Call memos_update with the memo ID and the fields to change. Only specify
fields you want to update — unspecified fields remain unchanged.

content: New Markdown content
visibility: New visibility level
pinned: true to pin, false to unpin

### Deleting a memo

Call memos_delete with the memo ID. This is irreversible. Always confirm
with the user before deleting.

### Guardrails

Default visibility to PRIVATE — never create public memos unless explicitly asked
Validate content is non-empty before creating
Confirm with the user before deleting any memo
On 401/403 errors, tell the user to check their MEMOS_TOKEN
On connection errors, tell the user to check their MEMOS_API_URL
When listing returns empty results, suggest the user check their filter or confirm the Memos instance has data
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sinhong2011
- Version: 0.1.9
## 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-04-30T03:20:57.316Z
- Expires at: 2026-05-07T03:20:57.316Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/usememos)
- [Send to Agent page](https://openagent3.xyz/skills/usememos/agent)
- [JSON manifest](https://openagent3.xyz/skills/usememos/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/usememos/agent.md)
- [Download page](https://openagent3.xyz/downloads/usememos)