LaunchKit · 2026
Back to Skills

This skill provides a simple interface to the Memos API (https://usememos.com/docs/api)

3
1.5k downloads
by @fty4

Setup & Installation

openclaw skills install @fty4/memos

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install memos

Version History

v0.1.1Feb 22, 2026 - Version note by skill developer:

- Clarified configuration requirements: both `MEMOS_URL` and `MEMOS_TOKEN` are now explicitly marked as **REQUIRED** environment variables. - Improved documentation to state that the skill will abort if either variable is missing. - Minor wording and formatting adjustments for clearer instruction and emphasis on required setup.

What This Skill Does

Connects to a self-hosted Memos instance to create, read, list, and delete memos via its API. Requires a running Memos server and a personal access token. All commands return JSON output.

Lets you manage memos without leaving your agent workflow instead of switching to the Memos web UI.

When to use it

  • Saving quick notes during a research session
  • Retrieving a specific memo by ID to reference its content
  • Listing recent memos to review what was captured
  • Deleting outdated or duplicate memos
  • Creating private memos to store sensitive drafts

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Save a note saying 'Follow up on invoice #482' as a private memo

AGENT
  1. 1Call create command with content 'Follow up on invoice #482' and visibility PRIVATE
  2. 2Receive JSON response with memo uid and metadata
  3. 3Format memo URL as {MEMOS_URL}/memos/{uid}
  4. 4Return markdown link to the created memo
OUTPUT

Created [Follow up on invoice #482](https://your-memos-instance.com/memos/ABC123xyz)

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

MEMOS_URL environment variable (base URL of your Memos instance)MEMOS_TOKEN environment variable (personal access token from your Memos account)Self-hosted or accessible Memos instance (https://usememos.com)