> PREREQUISITE: Read deepvista-shared, deepvista-vistabase, and deepvista-notes.
Search, retrieve, and analyze notes from the knowledge base to surface insights, patterns, and summaries.
```bash
deepvista card +search "
```
```bash
deepvista notes list --limit 20
```
```bash
deepvista notes get
```
Repeat for each note you need to read in full.
```bash
deepvista notes create --title "Analysis:
```
> [!CAUTION] Write command — confirm with user before saving.
card +search with specific keywords rather than listing everything — it uses hybrid vector+keyword search and returns the most relevant results.deepvista card +search "" --type note .notes list and filter by created_at in the JSON output.chat +send to ask the AI agent to synthesize across a large set of notes:```bash
deepvista chat +send "Here are my recent notes:
```
# 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- ..."
共 1 个版本