← 返回
未分类 中文

Deepvista Recipe

DeepVista Recipe: Manage structured executable workflows (Recipes) and run them via the AI agent.
DeepVista 配方:管理结构化可执行工作流并通过 AI 代理运行。
jingconan
未分类 clawhub v0.1.0-alpha.21 1 版本 100000 Key: 无需
★ 1
Stars
📥 250
下载
💾 0
安装
1
版本
#latest

概述

Recipe (Executable Workflows)

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

Recipes are structured checklist workflows. Each Recipe is a template with phases and steps. Running a Recipe creates a "run" — an execution instance where the AI agent works through the checklist.

Command: deepvista recipe

App URLs

After any write operation (run, create), always show the recipe URL to the user:

https://app.deepvista.ai/recipes/<id>

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

Commands

list

deepvista recipe list [--limit N] [--page N]

Read-only — lists all Recipe templates.

get

deepvista recipe get <recipe_id>

Read-only — returns full Recipe content including checklist phases.

run

deepvista recipe run <recipe_id> [--input "context text"]

Start a Recipe run — the AI agent executes the workflow checklist step by step.

FlagRequiredDefaultDescription
--------------------------------------
YesID of the Recipe template to run
--inputNoContext or instructions for the run

> [!CAUTION]

> Write command — creates a new Recipe run (a chat session) and the agent may create/update context cards, search the web, and take other actions. Confirm with the user before executing.

Output is NDJSON (one JSON object per line) as the agent streams its response.

status

deepvista recipe status <run_chat_id>

Read-only — shows run state (running, awaiting_input, completed, failed, paused).

export

deepvista recipe export <recipe_id> --format skill

Export a Recipe as a SKILL.md file for use in AI agents.

FlagRequiredDefaultDescription
--------------------------------------
YesID of the Recipe to export
--formatNoskillExport format (currently only skill)

Read-only — generates output but does not modify the Recipe.

discover

deepvista recipe discover [--search "query"] [--category persona|productivity|workflow] [--limit N]

Read-only — browse available recipes from the marketplace.

FlagRequiredDefaultDescription
--------------------------------------
--search / -sNoFilter by title or description
--category / -cNoFilter: persona, productivity, workflow
--limitNo50Max results

install

deepvista recipe install <recipe_id>

Install a marketplace recipe into your library.

FlagRequiredDefaultDescription
--------------------------------------
YesID from deepvista recipe discover output

> [!CAUTION]

> Write command — creates a new Recipe in your library. Confirm with the user before executing.

Examples

# List all recipes
deepvista recipe list

# Run a recipe
deepvista recipe run vb_abc123 --input "Focus on Q4 objectives"

# Check if a run is complete
deepvista recipe status chat_xyz789

# Export as a skill for other agents
deepvista recipe export vb_abc123 --format skill

# Browse marketplace recipes
deepvista recipe discover --category persona

# Search marketplace
deepvista recipe discover --search "email"

# Install a marketplace recipe
deepvista recipe install persona-researcher

See Also

版本历史

共 1 个版本

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

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Deepvista Recipe Analyze Notes

jingconan
配方:在DeepVista知识库中分析、汇总笔记并找出规律。触发时机:用户请求分析、汇总或查找笔记时。
★ 0 📥 276

Deepvista Chat

jingconan
DeepVista Chat: 向AI代理发送消息并管理聊天会话。
★ 0 📥 293

Deepvista Recipe Export Knowledge As Skills

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