Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

cli-anything-mubuCLI anything mubu 搜索

Agent Skill

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

总安装

1,958

周安装

80

GitHub Stars

32,874

下载量

627
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hkuds/cli-anything --skill cli-anything-mubu

简介

cli-anything-mubu 桥接 Mubu 笔记应用,支持文档发现、文件夹管理与内容检索。

  • 适用于在 Codex、Claude、Cursor 和 Gemini CLI 中实现知识库的自动化查询与更新。
  • 提供每日文档解析、搜索过滤与批量操作,输出结构化数据供进一步分析。
  • 需本地运行 Mubu 桌面端并登录账户,确保本地配置文件可被 CLI 访问。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

cli-anything-mubu

Canonical packaged entrypoint for the Mubu live bridge.

Installation

This CLI is packaged from the canonical agent-harness source tree:

pip install -e .

Prerequisites:

  • Python 3.10+
  • An active Mubu desktop session on this machine
  • Local Mubu profile data available to the CLI
  • Set MUBU_DAILY_FOLDER if you want no-argument daily helpers

Entry Points

cli-anything-mubu
python -m cli_anything.mubu

When invoked without a subcommand, the CLI enters an interactive REPL session.

Command Groups

Discover

Discovery commands for folders, documents, recency, and daily-document resolution.

CommandDescription

| docs | List latest known document snapshots from local backups. |

| folders | List folder metadata from local RxDB storage. |

| folder-docs | List document metadata for one folder. |

| path-docs | List documents for one folder path or folder id. |

| recent | List recently active documents using backups, metadata, and sync logs. |

| daily | Find Daily-style folders and list the documents inside them. |

| daily-current | Resolve the current daily document from one Daily-style folder. |

Inspect

Inspection commands for tree views, search, links, sync events, and live node targeting.

CommandDescription

| show | Show the latest backup tree for one document. |

| search | Search latest backups for matching node text or note content. |

| changes | Parse recent client-sync change events from local logs. |

| links | Extract outbound Mubu document links from one document backup. |

| open-path | Open one document by full path, suffix path, title, or doc id. |

| doc-nodes | List live document nodes with node ids and update-target paths. |

| daily-nodes | List live nodes from the current daily document in one step. |

Mutate

Mutation commands for dry-run-first atomic live edits against the Mubu API.

CommandDescription

| create-child | Build or execute one child-node creation against the live Mubu API. |

| delete-node | Build or execute one node deletion against the live Mubu API. |

| update-text | Build or execute one text update against the live Mubu API. |

Session

Session and state commands for current document/node context and local command history.

CommandDescription

| status | Show the current session state. |

| state-path | Show the session state file path. |

| use-doc | Persist the current document reference. |

| use-node | Persist the current node reference. |

| use-daily | Resolve and persist the current daily document reference. |

| clear-doc | Clear the current document reference. |

| clear-node | Clear the current node reference. |

| history | Show recent command history stored in session state. |

Recommended Agent Workflow

discover daily-current '<daily-folder-ref>' --json
        ->
inspect daily-nodes '<daily-folder-ref>' --query '<anchor>' --json
        ->
session use-doc '<doc_path>'
        ->
mutate update-text / create-child / delete-node --json
        ->
--execute only after payload inspection

Safety Rules

  1. Prefer grouped commands for agent use; flat legacy commands remain for compatibility.
  2. Use --json whenever an agent will parse the output.
  3. Prefer discover or inspect commands before any mutate command.
  4. Live mutations are dry-run by default and only execute with --execute.
  5. Prefer --node-id and --parent-node-id over text matching.
  6. delete-node removes the full targeted subtree.
  7. Even same-text updates can still advance document version history.
  8. Pass a daily-folder reference explicitly or set MUBU_DAILY_FOLDER before using no-arg daily helpers.

Examples

Interactive REPL Session

Start an interactive session with persistent document and node context.

cli-anything-mubu
# Enter commands interactively
# Use 'help' to see builtins
# Use session commands to persist current-doc/current-node

Discover Current Daily Note

Resolve the current daily note from an explicit folder reference.

cli-anything-mubu --json discover daily-current '<daily-folder-ref>'

Dry-Run Atomic Update

Inspect the exact outgoing payload before a live mutation.

cli-anything-mubu mutate update-text '<doc-ref>' --node-id <node-id> --text 'new text' --json

Session State

The CLI maintains lightweight session state in JSON:

  • current_doc
  • current_node
  • local command history

Use the session command group to inspect or update this state.

For AI Agents

  1. Start with discover or inspect, not mutate.
  2. Use session status --json to recover persisted context.
  3. Use grouped commands in generated prompts and automation.
  4. Verify postconditions after any live mutation.
  5. Read the package TEST.md and README.md when stricter operational detail is needed.

Version

0.1.1

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.47%
按下载量换算229

Claude

27.3%
按下载量换算171

Cursor

17.74%
按下载量换算111

Gemini CLI

8.89%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills