← 返回
未分类 中文

Matter CLI

Manage and interact with your Matter reading library: browse, search, save, tag, archive, highlight, summarize, and track reading progress via Matter CLI.
管理并交互您的Matter阅读库:浏览、搜索、保存、标记、归档、标注、摘要,并通过Matter CLI跟踪阅读进度。
nicholope nicholope 来源
未分类 clawhub v1.0.3 1 版本 100000 Key: 无需
★ 0
Stars
📥 397
下载
💾 0
安装
1
版本
#latest

概述

Matter CLI Skill

Setup (first time)

# Install (downloads binary directly from official GitHub releases)
# macOS arm64:
curl -fsSL https://github.com/getmatterapp/matter-cli/releases/latest/download/matter-darwin-arm64 -o ~/.matter/bin/matter && chmod +x ~/.matter/bin/matter

# macOS x86:
curl -fsSL https://github.com/getmatterapp/matter-cli/releases/latest/download/matter-darwin-x64 -o ~/.matter/bin/matter && chmod +x ~/.matter/bin/matter

# Linux arm64:
curl -fsSL https://github.com/getmatterapp/matter-cli/releases/latest/download/matter-linux-arm64 -o ~/.matter/bin/matter && chmod +x ~/.matter/bin/matter

# Linux x86:
curl -fsSL https://github.com/getmatterapp/matter-cli/releases/latest/download/matter-linux-x64 -o ~/.matter/bin/matter && chmod +x ~/.matter/bin/matter

# Add to PATH if needed
export PATH="$HOME/.matter/bin:$PATH"

# Authenticate
matter login

Source:

Requires a Matter Pro subscription. Get one at .

CLI binary: matter (added to PATH after install)

Auth: Stored locally after matter login.

Full command reference: See references/commands.md

Core Workflows

Browse Inbox

matter items list --status inbox --order inbox_position --limit 10

Browse Reading Queue

matter items list --status queue --order library_position --limit 10

Read / Summarize an Article

matter items get <id> --include markdown

Fetch markdown content, then summarize or analyze it.

Search by Topic

matter search "<topic>" --type items --limit 10

Get Highlights for an Article

matter annotations list --item <item_id> --all

Tag an Article

matter tags list   # find or confirm tag id/name first
matter tags add --item <item_id> --name "<tag_name>"

Archive an Article

matter items update <id> --status archive

Save a New URL

matter items save --url "<url>" --status queue

Compile Highlights Digest

  1. Search or list items by topic/tag
  2. For each item: matter annotations list --item --all
  3. Compile highlights into structured output

Output Format

All commands return JSON by default. Use --plain for human-readable output.

⚠️ Do NOT use --all for large libraries. It streams all pages in one call and will hit rate limits mid-stream, corrupting the JSON response. Instead, paginate manually:

# First page
matter items list --status queue --order updated --limit 50 --plain

# Next page (use cursor from previous response)
matter items list --status queue --order updated --limit 50 --plain --cursor <cursor>

Repeat with each returned cursor until no cursor is shown. Add sleep 5 between pages to stay within rate limits.

Rate Limits

OperationLimit
------------------
Read (list, get)120/min
Search30/min
Markdown (full text)20/min
Write (update, tag, archive)30/min
Save (new URLs)10/min
Burst5/min

Rules for bulk operations:

  • Fetching full markdown for multiple articles: sleep 4 between each call (stays under 20/min)
  • Running multiple searches back-to-back: sleep 3 between each (stays under 30/min)
  • Never fire more than 5 requests in rapid succession (burst limit)
  • If you receive a Rate limit exceeded. Retry after N seconds error: stop immediately, wait the stated seconds + 5, then resume
  • For research tasks across 5+ articles: fetch markdown sequentially with delays, not in parallel

版本历史

共 1 个版本

  • v1.0.3 当前
    2026-05-07 05:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

knowledge-management

Baidu web search

ide-rea
使用百度AI搜索引擎(BDSE)进行网络搜索。适用于获取实时信息、文档资料或研究课题。
★ 250 📥 110,209
knowledge-management

web-tools-guide

user_ec205dbb
MANDATORY before calling web_search, web_fetch, browser, or opencli. Contains required error-handling procedures (web_se
★ 115 📥 178,409
knowledge-management

Obsidian

steipete
操作 Obsidian 仓库(纯 Markdown 笔记)并通过 obsidian-cli 自动化。
★ 460 📥 106,982