← All skills
Tencent SkillHub · Developer Tools

UseMemos

Interact with UseMemos — a lightweight, self-hosted memo hub. Create, search, list memos and upload attachments.

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

Interact with UseMemos — a lightweight, self-hosted memo hub. Create, search, list memos and upload attachments.

⬇ 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
CHANGELOG.md, README.md, SKILL.md, scripts/list_memos.py, scripts/upload_and_link_attachment.py, scripts/upload_attachment.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. 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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

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

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.

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
3 Docs3 Scripts
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • README.md Docs
  • scripts/list_memos.py Scripts
  • scripts/upload_and_link_attachment.py Scripts
  • scripts/upload_attachment.py Scripts