skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
iswalle/getnote-cli891 installs

getnote-kb

Manage knowledge bases in Get笔记 via the getnote CLI

How do I install this agent skill?

npx skills add https://github.com/iswalle/getnote-cli --skill getnote-kb
view source ↗

Is this agent skill safe to install?

  • Gen Agent Trust Hubpass

    The skill provides an interface for the 'getnote' CLI to manage knowledge bases, allowing users to list, create, and modify notes. Analysis found no malicious patterns, obfuscation, or unauthorized activities.

  • Socketwarn

    1 alert: gptAnomaly

  • Snykwarn

    Risk: MEDIUM · 1 issue

  • ZeroLeakspass

    Score: 93/100 · 2 sections analyzed

What does this agent skill do?

getnote-kb Skill

Manage knowledge bases — list, create, browse notes, add/remove notes. Also supports subscribed knowledge bases, blogger content, live sessions, and quota.

Prerequisites

  • getnote CLI installed and authenticated (getnote auth status should show "Authenticated")

Commands

List all knowledge bases

getnote kbs

Returns all knowledge bases. Each item includes: topic_id, name, description, note_count, created_at.

getnote kbs
getnote kbs -o json

List subscribed knowledge bases

getnote kbs-sub [--page <n>]

Returns knowledge bases the user has subscribed to. Supports pagination.

FlagDefaultDescription
--page1Page number
getnote kbs-sub
getnote kbs-sub --page 2
getnote kbs-sub -o json

Use getnote kb <topic_id> to browse notes inside a subscribed knowledge base.


List notes in a knowledge base

getnote kb <topic_id> [--limit <n>] [--all]

Returns 20 notes per page by default.

FlagDefaultDescription
--limit20Notes per page
--allFetch all notes (auto-paginate)
getnote kb vnrOAaGY
getnote kb vnrOAaGY --all
getnote kb vnrOAaGY -o json

Create a knowledge base

getnote kb create <name> [--desc <description>]
getnote kb create "Research Papers"
getnote kb create "Project Docs" --desc "Documentation links"

Max 50 knowledge bases per day (resets at 00:00 Beijing time).


Add notes to a knowledge base

getnote kb add <topic_id> <note_id> [note_id...]

Supports multiple note IDs. Max 20 per call.

getnote kb add vnrOAaGY 1234567890
getnote kb add vnrOAaGY 1234567890 9876543210

Already-existing notes are silently skipped.


Remove notes from a knowledge base

getnote kb remove <topic_id> <note_id> [note_id...]
getnote kb remove vnrOAaGY 1234567890

⚠️ 订阅知识库限制:如果目标知识库是他人创建(通过 getnote kbs-sub 获取),且用户不是该知识库的管理员,则无法添加或移除笔记,API 会返回错误。只有自己创建的知识库(getnote kbs)才支持完整的增删操作。


List bloggers in a knowledge base

getnote kb bloggers <topic_id> [--page <n>]

Returns subscribed bloggers. Each item includes: follow_id (required for content queries), account_name, platform, follow_time.

getnote kb bloggers vnrOAaGY
getnote kb bloggers vnrOAaGY --page 2 -o json

List blogger contents

getnote kb blogger-contents <topic_id> <follow_id> [--page <n>]

Returns content list (no full text). Use post_id_alias to fetch detail.

getnote kb blogger-contents vnrOAaGY follow123
getnote kb blogger-contents vnrOAaGY follow123 --page 2

Show blogger content detail

getnote kb blogger-content <topic_id> <post_id>

Returns full content including original text (post_media_text).

getnote kb blogger-content vnrOAaGY post_abc123
getnote kb blogger-content vnrOAaGY post_abc123 -o json

List completed lives in a knowledge base

getnote kb lives <topic_id> [--page <n>]

Returns only completed live sessions that have been AI-processed.

getnote kb lives vnrOAaGY
getnote kb lives vnrOAaGY --page 2

Show live detail

getnote kb live <topic_id> <live_id>

Returns AI summary (post_summary) and full transcript (post_media_text).

getnote kb live vnrOAaGY live_abc123
getnote kb live vnrOAaGY live_abc123 -o json

Follow a live channel in a knowledge base

getnote kb live-follow <topic_id> <link> [--platform <platform>]

Subscribes a Dedao live channel to a knowledge base. Once the live session ends and is AI-processed, it will appear in kb lives.

⚠️ Currently only Dedao App live links are supported.

getnote kb live-follow vnrOAaGY https://m.dedao.cn/live/xxxxx
getnote kb live-follow vnrOAaGY https://m.dedao.cn/live/xxxxx -o json

Returns: follow_id, url, platform, type, created_at.


Show API quota usage

getnote quota
getnote quota
getnote quota -o json

Agent Usage Notes

  • Use -o json when parsing results programmatically.
  • kbs -o json returns {"success":true,"data":{"topics":[...],"total":N}}
  • kbs-sub -o json returns the same shape as kbs -o json.
  • kb <topic_id> -o json returns {"success":true,"data":{"notes":[...],"has_more":...}}
  • Get topic_id from getnote kbs -o json or getnote kbs-sub -o jsondata.topics[].topic_id field (not id).
  • kb add / kb remove accept multiple note IDs — prefer batching over multiple calls.
  • Subscribed KBs are read-only unless the user is an admin of that KB. kb add / kb remove will return an API error on subscribed KBs owned by others. Use getnote kbs (owned) vs getnote kbs-sub (subscribed) to distinguish.
  • kb bloggers → get follow_idkb blogger-contents → get post_id_aliaskb blogger-content for full text.
  • kb lives → get live_idkb live for AI summary + transcript.
  • kb live-follow <topic_id> <link> to subscribe a live channel; newly finished lives will appear in kb lives.
  • quota -o json returns {"success":true,"data":{"read":{"daily":{limit,used,remaining,reset_at},"monthly":{...}},"write":{...},"write_note":{...}}}
  • Exit code 0 = success; non-zero = error. Error details go to stderr.

Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.

<a href="https://skillzs.dev/skills/iswalle/getnote-cli/getnote-kb">View getnote-kb on skillZs</a>