deepvista-notes

Original🇺🇸 English
Translated

DeepVista Notes: Create, read, update, and delete notes in your knowledge base.

4installs
Added on

NPX Install

npx skill4agent add deepvista-ai/deepvista-cli deepvista-notes

Tags

Translated version includes tags in frontmatter

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.

Commands

list

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

get

bash
deepvista --profile local notes get <note_id>

create

bash
deepvista --profile local notes create --title "Title" [--content "Markdown content"] [--tags '["t1"]']
[!CAUTION] Write command — confirm with user before executing.

update

bash
deepvista --profile local notes update <note_id> [--title "..."] [--content "..."] [--tags '["t1"]']
[!CAUTION] Write command — confirm with user before executing.

delete

bash
deepvista --profile local notes delete <note_id>
[!CAUTION] Destructive command — confirm with user before executing.

+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
    .

Examples

bash
# List recent notes
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"

# Quick note from a single line
deepvista --profile local notes +quick "Alice mentioned the API migration deadline is April 15"

# Update a note
deepvista --profile local notes update note_abc --content "Updated content with new findings..."

See Also

  • deepvista-shared — Auth and global flags
  • deepvista-vistabase — Full knowledge base API