Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

memos-climemos CLI 搜索

Agent Skill

memos-cli 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,712

周安装

535

GitHub Stars

公开资料未说明

下载量

4,451
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:memos-cli(memos CLI 搜索)
来源仓库:https://github.com/rogeecn/memos-cli
安装命令:
openclaw skills install memos-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install memos-cli

简介

memos-cli 通过 Go CLI 工具实现对备忘录数据的增删改查与标记评论操作。

  • 适用于需要通过命令行高效管理本地或远程备忘录库的场景。
  • 支持全文搜索与高级筛选,提升信息定位效率。
  • 安装命令:openclaw skills install memos-cli,需确认是否调用外部二进制程序。
  • 注意 CLI 版本与 OpenClaw 的兼容性要求。

SKILL.md

name
memos-cli
description
Use when a user needs to read, search, create, update, delete, comment on, tag, or inspect Memos data through this repository's Go CLI, especially when the agent should prefer real project commands over guessing HTTP API calls.

memos-cli — Repository Memos CLI Skill

Install: go install github.com/rogeecn/memos-cli@latest Binary form: memos-cli Primary purpose: Use this repository's Go CLI to perform Memos operations from the terminal.

Overview

This repository contains a Go CLI named memos for common Memos operations.

Agents should prefer this CLI when the user asks to list memos, fetch memo details, search content, apply CEL filters, create or update memos, delete memos, add comments, remove tags, or inspect users. The CLI already handles configuration loading, JSON output, memo formatting, and memo ID normalization behavior implemented in the repo.

When to Use

Use this skill when:

  • The user wants to inspect or modify Memos data from this repository
  • The task should use the repo's real command surface instead of handwritten HTTP requests
  • The user needs terminal output or structured JSON from Memos commands
  • The agent needs a safe preflight check for local config before calling Memos APIs

Do not use this skill when:

  • The user is asking to develop the CLI itself rather than use it
  • The task is purely about source code changes with no need to run Memos commands

Setup

Install the CLI first:

go install github.com/rogeecn/memos-cli@latest

Then run it as a normal installed binary:

memos-cli --help

Use memos-cli as the canonical entrypoint. Do not use go run . in this skill.

Configuration

IMPORTANT FOR AGENTS: Before executing any command that talks to the Memos API, first run:

memos-cli config check

The CLI reads configuration with this precedence:

  1. Shell environment variable
  2. Current directory .env
  3. Missing

Expected variables:

MEMOS_URL=http://localhost:5230
MEMOS_API_KEY=your-api-key
MEMOS_ADMIN_API_KEY=your-admin-api-key
DEFAULT_TAG=cli

Preflight Rules

  • If MEMOS_URL is missing, stop and ask the user for the Memos base URL
  • If MEMOS_API_KEY is missing, stop and ask the user to provide or export it
  • If the task needs user list, also require MEMOS_ADMIN_API_KEY
  • Do not print secret values back to the user
  • Do not suggest editing committed files for secrets; prefer shell env vars or local .env

Output Format

Default: human-readable text

memos-cli memo list
memos-cli memo get <memo-id>

Structured output: --json

Use --json whenever the task needs machine-readable data, IDs for follow-up steps, or filtering with shell tools.

memos-cli --json memo list

Command Reference

Configuration

memos-cli config check

Read Operations

memos-cli memo list
memos-cli memo list --page-size 20
memos-cli memo list --page-token <token>
memos-cli memo get <memo-id>
memos-cli search "keyword"
memos-cli filter --expr "visibility == 'PRIVATE'"
memos-cli user list

Write Operations

The content field supports Markdown. Agents can pass plain text or Markdown content to memo and comment commands.

memos-cli memo create "# Weekly Note\
\
- shipped feature\
- fixed bug"
memos-cli memo create "memo content" --tag release --tag cli
memos-cli memo create "memo content" --visibility PUBLIC
memos-cli memo update <memo-id> --content "## Updated\
\
This memo now uses **Markdown**."
memos-cli memo update <memo-id> --visibility PUBLIC
memos-cli memo delete <memo-id> --yes
memos-cli comment create <memo-id> "Looks good.\
\
- reviewed\
- approved"
memos-cli tag remove <memo-id> <tag>

Agent Workflows

List memos safely

memos-cli config check
memos-cli memo list

Note: memo list lists memos using the API default ordering. Treat it as the current list view, not a guaranteed dedicated recent command.

List memos as JSON for follow-up actions

memos-cli config check
memos-cli --json memo list

Fetch one memo before updating it

memos-cli memo get <memo-id>
memos-cli memo update <memo-id> --content "new content"

Search then inspect the matching memo

memos-cli --json search "deploy"
memos-cli memo get <memo-id>

Filter with CEL expression

memos-cli filter --expr "createTime > timestamp('2026-01-01T00:00:00Z') && visibility == 'PRIVATE'"

Paginate through memo lists

memos-cli memo list --page-size 20
memos-cli memo list --page-size 20 --page-token <next-token>

In text mode, the CLI prints Next page token: ... when another page exists. In JSON mode, inspect nextPageToken.

Create a memo with default and explicit tags

memos-cli memo create "ship checklist ready" --tag release --tag weekly

The CLI appends DEFAULT_TAG automatically when configured.

Delete a memo safely

memos-cli memo delete <memo-id> --yes

Deletion requires explicit --yes. If the user asks to delete a memo and has not clearly confirmed, ask before running it.

List users via admin API

go run . config check
go run . user list

If MEMOS_ADMIN_API_KEY is missing, stop and ask the user to provide admin credentials.

ID Rules

  • Prefer passing the memo's plain ID, such as abc123
  • Do not invent memos:// or other URI forms for CLI commands
  • comment create and tag remove work with memo IDs and rely on the client behavior already implemented in the repo

Error Reference

Error or symptomLikely causeAgent action
MEMOS_URL is requiredBase URL missingAsk user for MEMOS_URL or local .env
MEMOS_API_KEY is requiredAPI key missingAsk user for MEMOS_API_KEY
MEMOS_ADMIN_API_KEY is requiredAdmin command without admin keyAsk user for admin key before user list
update requires --content or --visibilityUpdate called with no changesRe-run with at least one change flag
delete requires --yesDelete missing confirmation flagRe-run only after explicit confirmation
empty or unexpected search resultsFilter/query too narrow or API data differsTry --json and inspect returned structure
next page not visiblePagination token not suppliedRe-run with --page-token

Safety Notes

  • Treat API keys as secrets; never echo them back in full
  • Prefer config check over guessing whether configuration exists
  • Prefer --json for agent follow-up logic and ID extraction
  • Avoid destructive commands unless the user explicitly requested them
  • Do not commit .env or other local secret material

Common Mistakes

  • Using go run . or go run ./cmd/memos instead of the installed memos-cli binary
  • Running API commands before config check
  • Forgetting --json when later steps need a memo ID or token
  • Assuming memo list is a dedicated recent endpoint rather than the default list API
  • Forgetting --yes for deletions
  • Calling user list without admin credentials

Quick Reference

  • Install: go install github.com/rogeecn/memos-cli@latest
  • Preflight: memos-cli config check
  • List memos: memos-cli memo list
  • List as JSON: memos-cli --json memo list
  • Get one memo: memos-cli memo get <memo-id>
  • Search text: memos-cli search "keyword"
  • CEL filter: memos-cli filter --expr "..."
  • Create memo: memos-cli memo create "content"
  • Update memo: memos-cli memo update <memo-id> --content "..."
  • Delete memo: memos-cli memo delete <memo-id> --yes
  • Add comment: memos-cli comment create <memo-id> "..."
  • Remove tag: memos-cli tag remove <memo-id> <tag>
  • List users: memos-cli user list

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.01%
按下载量换算3,205

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills