← 返回
未分类 中文

Deepvista Recipe Analyze Notes

Recipe: Analyze, summarize, and find patterns across notes in your DeepVista knowledge base. TRIGGER when: user asks to analyze notes, summarize notes, find...
配方:在DeepVista知识库中分析、汇总笔记并找出规律。触发时机:用户请求分析、汇总或查找笔记时。
jingconan
未分类 clawhub v0.1.0-alpha.21 1 版本 100000 Key: 无需
★ 0
Stars
📥 249
下载
💾 0
安装
1
版本
#latest

概述

Analyze Notes

> PREREQUISITE: Read deepvista-shared, deepvista-vistabase, and deepvista-notes.

Search, retrieve, and analyze notes from the knowledge base to surface insights, patterns, and summaries.

Steps

  1. Search for relevant notes using a query derived from the user's request:

```bash

deepvista card +search "" --type note --limit 20

```

  1. List recent notes if no specific topic was given, to get a broad view:

```bash

deepvista notes list --limit 20

```

  1. Fetch full content for the most relevant notes (pick IDs from search/list results):

```bash

deepvista notes get

```

Repeat for each note you need to read in full.

  1. Analyze and synthesize — read the content and identify:
    • Recurring themes or topics
    • Key decisions or action items
    • Open questions or unresolved threads
    • Timeline of ideas if dates are present
  1. Present findings to the user as a structured summary.
  1. Optionally save the analysis back as a new note (confirm with user first):

```bash

deepvista notes create --title "Analysis: " --content ""

```

> [!CAUTION] Write command — confirm with user before saving.

Tips

  • Use card +search with specific keywords rather than listing everything — it uses hybrid vector+keyword search and returns the most relevant results.
  • Filter by type to stay focused on notes: deepvista card +search "" --type note.
  • For time-bounded analysis ("notes from this week"), use notes list and filter by created_at in the JSON output.
  • Use chat +send to ask the AI agent to synthesize across a large set of notes:

```bash

deepvista chat +send "Here are my recent notes: . What are the key themes?"

```

Examples

# Find all notes about a project
deepvista card +search "project alpha" --type note --limit 15

# Get full content of a note
deepvista notes get note_abc123

# Save analysis as a new note
deepvista notes create \
  --title "Weekly Themes — 2026-04-02" \
  --content "## Key Themes\n- Theme 1\n- Theme 2\n\n## Open Questions\n- ..."

See Also

版本历史

共 1 个版本

  • v0.1.0-alpha.21 当前
    2026-05-20 05:37 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Deepvista Recipe Export Knowledge As Skills

jingconan
配方:将配方导出为 AI 代理可安装的 SKILL.md 文件。
★ 0 📥 286

Deepvista Recipe Research To Recipe

jingconan
配方:搜索知识库,综合发现,执行配方工作流。
★ 0 📥 277

Deepvista Recipe

jingconan
DeepVista 配方:管理结构化可执行工作流并通过 AI 代理运行。
★ 1 📥 278