← 返回
未分类 中文

Deepvista Vistabase Card

DeepVista Card: Manage your knowledge cards — create, search, and organize context cards.
DeepVista Card: 管理您的知识卡片 — 创建、搜索和整理情境卡片。
jingconan jingconan 来源
未分类 clawhub v0.1.0-alpha.21 1 版本 100000 Key: 无需
★ 0
Stars
📥 246
下载
💾 0
安装
1
版本
#latest

概述

Card (Knowledge Base)

> PREREQUISITE: Read deepvista-shared for auth, profiles, and global flags.

Cards are DeepVista's knowledge base — context cards representing people, organizations, topics, notes, files, and more. Cards have vector embeddings for semantic search and keyword indexing for precise lookups.

Command: deepvista card

App URLs

After any write operation (create, update), always show the card URL to the user:

https://app.deepvista.ai/vistabase?contextId=<id>

Extract the id from the JSON response and present it as a clickable link.

CRUD Commands

list

deepvista card list [--type TYPE] [--status STATUS] [--limit N] [--page N] [--order-by FIELD] [--order DIR]
FlagRequiredDefaultDescription
--------------------------------------
--typeNoallCard type filter
--statusNoallpinned, archived, or normal
--limitNo20Max results
--pageNo1Page number
--order-byNocreated_at or updated_at
--orderNoasc or desc

get

deepvista card get <card_id>

create

deepvista card create --type TYPE --title "Title" [--content "Description"] [--tags '["t1","t2"]'] [--no-enrich]

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

update

deepvista card update <card_id> [--title "..."] [--content "..."] [--type TYPE] [--tags '["t1"]'] [--status pinned|archived]

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

edit

deepvista card edit <card_id> --old-string "text to find" --new-string "replacement" [--replace-all]

Targeted string replacement in a card's content — like Claude Code's Edit tool. Finds old_string in the card description and replaces it with new_string. By default, old_string must appear exactly once (provide more surrounding context to disambiguate).

FlagRequiredDefaultDescription
--------------------------------------
YesCard to edit
--old-stringYesExact text to find
--new-stringYesReplacement text
--replace-allNofalseReplace all occurrences

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

delete

deepvista card delete <card_id> [--type TYPE]

> [!CAUTION] Destructive command — confirm with user before executing.

Helper Commands

+search

deepvista card +search "query text" [--type TYPE] [--limit N]

Search across all context cards using hybrid vector + keyword search.

FlagRequiredDefaultDescription
--------------------------------------
YesSearch query (natural language)
--typeNoallFilter by card type
--limitNo10Max results

Read-only. Use card get to read the full content of a result.

+similar

deepvista card +similar <card_id> [--limit N]

Find context cards semantically similar to a given card.

Read-only. The source card is excluded from results.

+pin

deepvista card +pin <card_id>

> [!CAUTION] Write command.

+archive

deepvista card +archive <card_id>

> [!CAUTION] Write command.

+grep

deepvista card +grep "pattern" [--type TYPE] [-i] [--limit N] [-C N]

Regex search through card content. Returns matching lines with line numbers — like grep or ripgrep. Different from +search (semantic/keyword): this does literal/regex matching on card content.

FlagRequiredDefaultDescription
--------------------------------------
YesRegex pattern to search for
--typeNoallFilter by card type
-i / --ignore-caseNofalseCase-insensitive matching
--limitNo20Max cards to return
-C / --contextNo0Lines of context around each match

Read-only. Use card get to read the full content of a result.

Card Types

person, organization, message, todo, topic, keypoint, file, note, recipe, recipe_run

Examples

# Search for anything about quarterly metrics
deepvista card +search "quarterly metrics"

# Find people related to a topic
deepvista card +search "machine learning team" --type person

# Grep for a specific pattern in card content
deepvista card +grep "TODO|FIXME" --type note -i

# Grep with context lines
deepvista card +grep "API endpoint" -C 2

# List all notes
deepvista card list --type note

# Create a topic card
deepvista card create --type topic --title "Machine Learning Strategy" --content "Our approach to ML..."

# Edit a card's content (targeted replacement)
deepvista card edit abc123 --old-string "old API URL" --new-string "new API URL"

# Pin an important card
deepvista card +pin abc123

# Get full details of a card
deepvista card get abc123

See Also

版本历史

共 1 个版本

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

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Deepvista Recipe

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

Summarize

paudyyin
智能摘要工具,自动为长文本、文档、网页生成摘要,提取要点与关键词,支持自定义摘要长度。
★ 972 📥 524,792
knowledge-management

Obsidian

steipete
操作 Obsidian 仓库(纯 Markdown 笔记)并通过 obsidian-cli 自动化。
★ 453 📥 106,369