Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

miremomiremo 文档

Agent Skill

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

总安装

1,364

周安装

58

GitHub Stars

公开资料未说明

下载量

478
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install miremo

简介

访问个人 Miremo 知识库,搜索笔记与主题相关内容。

  • 适用于知识管理、文档检索与个人工作流协同。
  • 安装命令:openclaw skills install miremo,来源仓库:https://github.com/hansenz42/miremo。
  • 需授权访问本地或云端知识库路径,确保数据加密与同步一致性。
  • 搜索结果依赖索引完整性,建议定期维护标签与分类结构。

SKILL.md

name
miremo
description
Access the user's personal Miremo knowledge base — search notes, look up what they know about a topic, browse their documents and tags, explore their knowledge graph, or save new information. Use when the user says "find my notes", "what do I know about", "search my knowledge base", "look it up in Miremo", "save/record/remember this", "what topics have I written about", or "show my notes on X". NOT for general web searches or queries about topics not stored in the user's own notes.
homepage
https://www.miremoapp.com
metadata

Miremo Skill

Prerequisite: The Miremo MCP server must be connected in OpenClaw before this skill's tools are available. See the README for setup instructions.

Miremo is an AI note-taking tool. It stores the user's memos, documents, supertags (topic tags with rich content), and AI-extracted knowledge graph entities. All tools only access the currently authenticated user's own data.

Workspace behavior:

  • If workspace_id is provided, tools operate in that workspace (with permission checks).
  • If workspace_id is omitted, tools operate only in the user's default workspace.
  • Use list_workspaces and get_current_workspace to inspect available workspaces and the active workspace resolution.

Research Strategy

When the user asks about their knowledge, choose one of three research modes and follow it through completely before giving a final answer. Never give up after one failed search.

Mode A — Browse (user wants an overview)

Triggers: "what notes do I have", "show me my recent notes", "what have I been writing about", "give me an overview"

Steps:

  1. list_workspaces() to understand all accessible workspaces
  2. get_current_workspace() to confirm default workspace before browsing
  3. list_memos(page_size=30) to sample recent memos
  4. list_supertags() to see all topic tags at a glance
  5. Synthesize a structured overview from both results

Mode B — Topic Research (most common)

Triggers: "what do I know about X", "find notes about X", "anything related to X", "my thoughts on X"

Steps:

  1. list_workspaces() when user asks for cross-workspace research
  2. global_search(query="X") — cross-type overview (memos + docs + supertags)
  3. search_memos(query="X", search_type="semantic") for deeper semantic matches
  4. If a relevant supertag appears: list_supertags(q="X") to expand via that tag
  5. For people, concepts, or events that matter: list_entities()get_entity_graph(entity_id) to explore relationships

Iteration rules (critical):

  • If initial search returns few results, retry with synonyms, English equivalents, or split keywords before concluding "nothing found"
  • Lower similarity_threshold to 0.25–0.35 on the second attempt
  • hit_text is only a snippet — do not draw conclusions from it alone; use global_search to confirm scope across types
  • Declare "no relevant notes found" only after at least 2–3 distinct search strategies all return empty

Mode C — Exact Lookup

Triggers: "do I have a note about X", "find the exact note where I wrote Y", "the note titled Z"

Steps:

  1. search_memos(query="Y", search_type="full_text") for precise phrase matching
  2. If not found, fall back to Mode B with semantic search

Available Tools

Search Tools

search_memos — Search memos by keyword or natural language.

  • query: search text, e.g. "Python async programming notes"
  • limit: max results (default 10, recommend ≤ 20)
  • search_type: "hybrid" (default, most comprehensive) | "semantic" (natural language) | "full_text" (exact match)
  • workspace_id (optional): target a specific workspace; omit to use default workspace
  • Returns: id, hit_text, similarity_score, created_at, modified_at

global_search — Cross-type search across memos, documents, and supertags.

  • query: search text
  • limit: max results per type (default 10)
  • include_memos / include_documents / include_supertags: toggle each type (all true by default)
  • workspace_id (optional): target a specific workspace; omit to use default workspace
  • Returns items with type ("memo" / "document" / "supertag"), id, title, description, score

List Tools

list_memos — Paginated list of memos.

  • page_index, page_size (default 20), q (optional fuzzy filter)
  • workspace_id (optional): target a specific workspace; omit to use default workspace
  • Returns: { items: [{id, outline_preview, created_at, ...}], total, page_size, page_index }

list_supertags — List topic supertags.

  • q (optional filter), page_index, page_size (default 50)
  • workspace_id (optional): target a specific workspace; omit to use default workspace
  • Default page size of 50 usually retrieves all tags in one call

list_documents — List uploaded documents (PDFs, files).

  • q (optional name filter), page_index, page_size (default 20)
  • workspace_id (optional): target a specific workspace; omit to use default workspace
  • Returns: document_id, name, created_at, modified_at, status

Create Tools

create_memo — Create a new memo.

  • content: memo body, multi-line supported. First line becomes the top-level title; subsequent lines become sub-content.
  • workspace_id (optional): target a specific workspace for writing; omit to write into default workspace
  • Returns: { memo_id: "<new UUID>" }
  • After creation, vectorization and knowledge graph updates run automatically in the background.

Workspace Tools

list_workspaces — List all workspaces accessible to the current user.

  • Returns workspace metadata including workspace_id, name, role, is_default

get_current_workspace — Get the effective workspace for current tool call context.

  • workspace_id (optional): if provided, validates and resolves explicit workspace
  • Without parameter, resolves to default workspace
  • Returns source (explicit or default) and current workspace metadata

Knowledge Graph Tools

list_entities — List AI-extracted knowledge graph entities.

  • entity_type (optional): person, concept, place, organization, event, etc.
  • page_index, page_size (default 20)
  • Omit entity_type to get all types mixed

get_entity_graph — Get an entity's 1-hop relationship graph.

  • entity_id: obtain via list_entities first
  • Returns: { entity: {entity_id, name, entity_type, summary}, related_entities: [...], relationships: [{source_entity_id, target_entity_id, description}] }

When to Use Which Tool

User intentRecommended tool
"Find notes about X"global_search first, then search_memos for detail
"Find notes with exact phrase"search_memos with search_type="full_text"
"What do I know about X" (semantic)search_memos with search_type="semantic"
"Show me recent memos"list_memos
"What topics do I write about"list_supertags
"Find a document / PDF"list_documents with q filter
"Save / record / note down X"create_memo
"Explore my knowledge graph"list_entitiesget_entity_graph
"Which workspace should I use"list_workspacesget_current_workspace

Recommended Workflows

Answer "What do I know about X":

  1. get_current_workspace() to confirm workspace scope
  2. global_search(query="X") for a cross-type overview
  3. If more detail needed: search_memos(query="X", search_type="semantic")
  4. If a relevant supertag exists: list_supertags(q="X") to expand further

Help user record new information:

  1. Confirm intent, then call create_memo(content="...")
  2. Tell the user the note was created and show the memo_id
  3. Structure content well: first line = core topic, subsequent lines = details

Explore user's knowledge structure:

  1. list_supertags() for a thematic overview
  2. list_entities() to understand main knowledge graph nodes
  3. get_entity_graph(entity_id) for entities of interest

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.52%
按下载量换算447

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills