🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@getnote/cli

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getnote/cli - npm Package Compare versions

Comparing version
1.1.4
to
1.1.7
+1
-1
package.json
{
"name": "@getnote/cli",
"version": "1.1.4",
"version": "1.1.7",
"description": "CLI tool for Get笔记 — manage notes and knowledge bases from the terminal",

@@ -5,0 +5,0 @@ "keywords": [

@@ -1,4 +0,4 @@

# Get笔记 CLI
# 得到大脑(Get笔记) CLI
Get笔记的命令行工具,让你在终端和 AI Agent 里直接管理笔记和知识库。
得到大脑(Get笔记)的命令行工具,让你在终端和 AI Agent 里直接管理笔记和知识库。

@@ -249,3 +249,3 @@ 存链接、记文字、搜笔记、管知识库——一条命令搞定,支持脚本和 AI Agent 调用。

结合 Get笔记内链,可以用脚本自动串联:
结合 得到大脑(Get笔记)内链,可以用脚本自动串联:

@@ -280,3 +280,3 @@ ```bash

- [Get笔记官网](https://biji.com)
- [得到大脑(Get笔记)官网](https://biji.com)
- [开放平台文档](https://www.biji.com/openapi)

@@ -283,0 +283,0 @@ - [问题反馈](https://github.com/iswalle/getnote-cli/issues)

---
name: getnote-auth
version: 0.3.0
version: 0.4.0
description: Manage authentication for Get笔记 CLI

@@ -16,3 +16,3 @@ ---

```
getnote auth login [--api-key <key>] [--client-id <id>]
getnote auth login [--api-key <key>]
```

@@ -31,5 +31,2 @@

getnote auth login --api-key gk_live_xxx
# API key + Client ID
getnote auth login --api-key gk_live_xxx --client-id cli_xxx
```

@@ -36,0 +33,0 @@

---
name: getnote-note
version: 0.3.0
version: 0.4.0
description: Manage notes in Get笔记 via the getnote CLI

@@ -103,2 +103,5 @@ ---

| `excerpt` | Excerpt |
| `web_content` | Full web page content (link notes only) |
| `source` | Note source (e.g. `openapi`, `manual`) |
| `tags` | Comma-separated tag names |

@@ -105,0 +108,0 @@ ```bash

---
name: getnote-search
version: 0.3.0
version: 0.4.0
description: Semantic search across notes in Get笔记 via the getnote CLI

@@ -28,3 +28,3 @@ ---

Results are ranked by semantic relevance (high → low). Each result includes: `note_id`, `title`, `content` (excerpt), `created_at`, `note_type`.
Results are ranked by semantic relevance (high → low). Each result includes: `note_id`, `title`, `content` (excerpt), `score`, `created_at`, `note_type`.

@@ -49,3 +49,3 @@ > Note: `note_id` is only populated for `NOTE` type results. Other types (`FILE`, `BLOGGER`, `LIVE`, etc.) return an empty `note_id`.

- Use `-o json` when parsing results programmatically.
- JSON response: `{"success":true,"results":[{"note_id":"...","title":"...","content":"...","created_at":"...","note_type":"..."}]}`
- JSON response: `{"success":true,"results":[{"note_id":"...","title":"...","content":"...","score":0.95,"created_at":"...","note_type":"..."}]}`
- Note: `results` is at the top level, not nested under `data`.

@@ -52,0 +52,0 @@ - Get `topic_id` for `--kb` from `getnote kbs -o json` → `data.topics[].topic_id`.