Skip to content

Agent 与对话

这组命令是 CLI 里最接近日常使用的一部分。

主要命令分组

Agent

bash
workova agent:list
workova agent:get <agentId>
workova agent:create
workova agent:update <agentId>
workova agent:delete <agentId>
workova agent:tools <agentId>
workova agent:bind-skill <agentId> <skillName>
workova agent:unbind-skill <agentId> <skillName>

会话

bash
workova conversation:create
workova conversation:list
workova conversation:history <conversationId>
workova conversation:delete <conversationId>

聊天与运行

bash
workova chat:send
workova chat:continue <conversationId> <message>
workova run:start <task>
workova run:events <runId>
workova run:follow <runId>

--input--input-file 什么时候用

当前很多 Agent 相关命令支持:

  • --input <json>
  • --input-file <path>

它们适合这些场景:

  • 参数很多,不想全写在命令行
  • 需要脚本复用
  • 需要把定义保存成文件

内容通过 Markdown 维护,适合持续迭代。