Loading...
Loading...
DeepVista Notes: Create, read, update, and delete notes in your knowledge base.
npx skill4agent add deepvista-ai/deepvista-cli deepvista-notesPREREQUISITE: Read deepvista-shared for auth, profiles, and global flags.
type=notedeepvista --profile local notes list [--limit N] [--page N]deepvista --profile local notes get <note_id>deepvista --profile local notes create --title "Title" [--content "Markdown content"] [--tags '["t1"]'][!CAUTION] Write command — confirm with user before executing.
deepvista --profile local notes update <note_id> [--title "..."] [--content "..."] [--tags '["t1"]'][!CAUTION] Write command — confirm with user before executing.
deepvista --profile local notes delete <note_id>[!CAUTION] Destructive command — confirm with user before executing.
deepvista --profile local notes +quick "your text here"| Flag | Required | Default | Description |
|---|---|---|---|
| Yes | — | Note content (title auto-derived from first sentence) |
[!CAUTION] Write command — creates a new note. Confirm with the user before executing.
notes create --title "..." --content "..."vistabase +search# 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..."