โ† All skills
Tencent SkillHub ยท Developer Tools

Memos

Manage memos via the Memos API: create, retrieve, delete, and list memos with visibility and pagination support, requiring MEMOS_URL and MEMOS_TOKEN.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage memos via the Memos API: create, retrieve, delete, and list memos with visibility and pagination support, requiring MEMOS_URL and MEMOS_TOKEN.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, memos.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Purpose

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.

How it works

The skill is implemented in Python and uses the requests library. It requires two environment variables: MEMOS_URL โ€“ REQUIRED. Base URL of your Memos instance (e.g., https://demo.usememos.com). MEMOS_TOKEN โ€“ REQUIRED. Personal access token for authentication. If either MEMOS_URL or MEMOS_TOKEN is not set, the skill will abort with a clear error.

Commands

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

Direct Python Usage

You can also run the commands directly with Python: # Create a memo python3 skills/memos/memos.py create "My memo content" "PUBLIC" # Get a memo by ID python3 skills/memos/memos.py get j9THXDmYtueosTTeHcC5NA # Delete a memo python3 skills/memos/memos.py delete j9THXDmYtueosTTeHcC5NA # Delete with force python3 skills/memos/memos.py delete j9THXDmYtueosTTeHcC5NA true # List memos (default 20) python3 skills/memos/memos.py list # List with custom page size python3 skills/memos/memos.py list 50 All commands return JSON output on success and JSON error messages on stderr when errors occur.

Referencing Memos in OpenClaw

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: [memo description](https://demo.usememos.com/memos/{uid}) Example: If the API returns {"uid": "ABC123xyz", "name": "memos/ABC123xyz", ...}, reference it as: Created [your memo](https://demo.usememos.com/memos/ABC123xyz) The URL format is: {MEMOS_URL}/memos/{uid} where uid is extracted from the response.

Error handling

The skill includes comprehensive error handling: API Errors: Returns detailed error messages including HTTP status codes and API response details Network Errors: Handles timeouts (30s default) and connection failures Validation: Validates parameters before making API calls (e.g., visibility options, pageSize range) Exit codes: Returns 0 on success, 1 on error when run from command line Error output: All errors are output as JSON to stderr for easy parsing Example error responses: { "error": "Memos API Error", "message": "HTTP 404: Not Found - Memo not found", "status_code": 404 }

Extending the skill

Add new commands by following the pattern of existing ones. If the Memos API adds new endpoints, you can create corresponding functions. NOTE: This skill is meant for personal use; never share your MEMOS_TOKEN publicly.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • memos.py Scripts