deepvista-notes

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Notes

笔记

PREREQUISITE: Read deepvista-shared for auth, profiles, and global flags.
Notes are context cards with
type=note
. They support rich markdown content and are a natural fit for agents to capture meeting notes, summaries, and research.
前置条件: 请阅读 deepvista-shared 了解身份验证、配置文件和全局参数。
笔记是
type=note
类型的上下文卡片,支持富Markdown内容,非常适合Agent用来捕获会议记录、内容摘要和调研结果。

Commands

命令

list

list

bash
deepvista --profile local notes list [--limit N] [--page N]
bash
deepvista --profile local notes list [--limit N] [--page N]

get

get

bash
deepvista --profile local notes get <note_id>
bash
deepvista --profile local notes get <note_id>

create

create

bash
deepvista --profile local notes create --title "Title" [--content "Markdown content"] [--tags '["t1"]']
[!CAUTION] Write command — confirm with user before executing.
bash
deepvista --profile local notes create --title "Title" [--content "Markdown content"] [--tags '["t1"]']
[!CAUTION] 写入类命令 — 执行前请与用户确认。

update

update

bash
deepvista --profile local notes update <note_id> [--title "..."] [--content "..."] [--tags '["t1"]']
[!CAUTION] Write command — confirm with user before executing.
bash
deepvista --profile local notes update <note_id> [--title "..."] [--content "..."] [--tags '["t1"]']
[!CAUTION] 写入类命令 — 执行前请与用户确认。

delete

delete

bash
deepvista --profile local notes delete <note_id>
[!CAUTION] Destructive command — confirm with user before executing.
bash
deepvista --profile local notes delete <note_id>
[!CAUTION] 破坏性操作命令 — 执行前请与用户确认。

+quick

+quick

bash
deepvista --profile local notes +quick "your text here"
Quick-create a note from a single line of text. The first ~50 characters become the title; the full text is the content. Entity enrichment runs automatically.
FlagRequiredDefaultDescription
<text>
YesNote content (title auto-derived from first sentence)
[!CAUTION] Write command — creates a new note. Confirm with the user before executing.
  • Ideal for agents capturing quick observations during a workflow.
  • For notes with custom titles, use
    notes create --title "..." --content "..."
    instead.
  • Created notes appear in the VistaBase and can be searched with
    vistabase +search
    .
bash
deepvista --profile local notes +quick "your text here"
从单行文本快速创建笔记,前约50个字符将作为标题,完整文本作为内容,实体富集功能会自动运行。
参数必填默认值描述
<text>
笔记内容(标题自动从第一句生成)
[!CAUTION] 写入类命令 — 会创建新笔记,执行前请与用户确认。
  • 非常适合Agent在工作流过程中快速捕获观察结果。
  • 如需使用自定义标题创建笔记,请改用
    notes create --title "..." --content "..."
    命令。
  • 创建的笔记会存储在VistaBase中,可使用
    vistabase +search
    命令搜索。

Examples

示例

bash
undefined
bash
undefined

List recent notes

列出最近的笔记

deepvista --profile local notes list --limit 5
deepvista --profile local notes list --limit 5

Create a meeting note

创建会议笔记

deepvista --profile local notes create --title "Standup 2026-03-26" --content "## Discussed\n- Roadmap priorities\n- CLI release"
deepvista --profile local notes create --title "Standup 2026-03-26" --content "## 讨论内容\n- 路线图优先级\n- CLI版本发布"

Quick note from a single line

从单行文本快速创建笔记

deepvista --profile local notes +quick "Alice mentioned the API migration deadline is April 15"
deepvista --profile local notes +quick "Alice提到API迁移的截止日期为4月15日"

Update a note

更新笔记

deepvista --profile local notes update note_abc --content "Updated content with new findings..."
undefined
deepvista --profile local notes update note_abc --content "已更新内容,补充新发现..."
undefined

See Also

另请参阅

  • deepvista-shared — Auth and global flags
  • deepvista-vistabase — Full knowledge base API
  • deepvista-shared — 身份验证与全局参数
  • deepvista-vistabase — 完整知识库API