# Send UseMemos 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. 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.
```
### 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "usememos-api",
    "name": "UseMemos",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/minstn/usememos-api",
    "canonicalUrl": "https://clawhub.ai/minstn/usememos-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/usememos-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usememos-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "scripts/list_memos.py",
      "scripts/upload_and_link_attachment.py",
      "scripts/upload_attachment.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "usememos-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T13:21:54.202Z",
      "expiresAt": "2026-05-17T13:21:54.202Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usememos-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usememos-api",
        "contentDisposition": "attachment; filename=\"usememos-api-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "usememos-api"
      },
      "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-api"
    },
    "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-api",
    "downloadUrl": "https://openagent3.xyz/downloads/usememos-api",
    "agentUrl": "https://openagent3.xyz/skills/usememos-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/usememos-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/usememos-api/agent.md"
  }
}
```
## Documentation

### Setup

Requires environment variables in .env:

USEMEMOS_URL — Instance URL (e.g., http://localhost:5230)
USEMEMOS_TOKEN — Access token from Settings > My Account

### Scripts

ScriptUsageDescriptioncreate_memo.py<content> [visibility]Create a memo (visibility: PRIVATE/PROTECTED/PUBLIC)list_memos.py[limit] [tag]List recent memos (default: 10)search_memos.py<query> [limit]Search memos by contentupload_attachment.py<filepath> [filename] [type]Upload a file attachmentupload_and_link_attachment.py<memo_id> <filepath> [filename] [type]Upload and link attachment to a memomemo_comments.py<list|add|delete> [args...]Manage comments on a memo

All scripts are in scripts/ and run with python3 scripts/<script>.

### Examples

# Create a memo with tags
python3 scripts/create_memo.py "Meeting notes from standup #work"

# List recent memos
python3 scripts/list_memos.py 5

# Search memos
python3 scripts/search_memos.py "website redesign"

# Upload attachment standalone
python3 scripts/upload_attachment.py photo.jpg "sale_photo.jpg" "image/jpeg"

# Create memo then attach a file
python3 scripts/create_memo.py "Sale: Stromer Charger #eBike #income"
# Use the memo ID from output:
python3 scripts/upload_and_link_attachment.py <memo_id> charger_photo.jpg

# Add a comment to a memo
python3 scripts/memo_comments.py add <memo_id> "Looks great!"

# List comments on a memo
python3 scripts/memo_comments.py list <memo_id>

# Delete a comment
python3 scripts/memo_comments.py delete <comment_id>

### Notes

Memo IDs are short IDs like 3UZ7uBbHsLEAwdYE5HKhjd (not memos/3UZ7uBbHsLEAwdYE5HKhjd)
Tags use #tag syntax inline in memo content
Default MIME type for attachments is image/jpeg; pass the type explicitly for other files

### API Reference

See references/api.md for endpoint documentation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: minstn
- Version: 1.0.2
## 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-05-10T13:21:54.202Z
- Expires at: 2026-05-17T13:21:54.202Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/usememos-api)
- [Send to Agent page](https://openagent3.xyz/skills/usememos-api/agent)
- [JSON manifest](https://openagent3.xyz/skills/usememos-api/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/usememos-api/agent.md)
- [Download page](https://openagent3.xyz/downloads/usememos-api)