Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:49
forks:3
updated:May 6, 2026 at 12:17
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | getnote-search |
| version | 0.4.0 |
| description | Semantic search across notes in Get笔记 via the getnote CLI |
Semantic search across all notes or within a specific knowledge base.
getnote CLI installed and authenticated (getnote auth status should show "Authenticated")getnote search <query> [--kb <topic_id>] [--limit <n>]
| Flag | Default | Description |
|---|---|---|
--kb | — | Limit search to a knowledge base (topic_id) |
--limit | 10 | Max results (max 10) |
Results are ranked by semantic relevance (high → low). Each result includes: note_id, title, content (excerpt), score, created_at, note_type.
Note:
note_idis only populated forNOTEtype results. Other types (FILE,BLOGGER,LIVE, etc.) return an emptynote_id.
# Search across all notes
getnote search "大模型 API"
# Search within a knowledge base
getnote search "RAG" --kb qnNX75j0
# Limit results + JSON output
getnote search "机器学习" --limit 5 -o json
-o json when parsing results programmatically.{"success":true,"results":[{"note_id":"...","title":"...","content":"...","score":0.95,"created_at":"...","note_type":"..."}]}results is at the top level, not nested under data.topic_id for --kb from getnote kbs -o json → data.topics[].topic_id.NOTE type results, use getnote note <note_id> to get the full content.--limit is 10; use getnote notes for browsing without a query.0 = success; non-zero = error. Error details go to stderr.