/install agent-workflow
Agent Workflow
A structured workflow engine for OpenClaw agents. Migrated and generalized from the superpowers workflow system into a code-agnostic, general-purpose workflow plugin.
What it does
Provides a persistent state machine that guides your agent through a complete work lifecycle:
brainstorming → writing-plans → [execute] → verification → finishing-work
↓
subagent-driven-execution
OR
executing-plans
With support for:
- Persistent state — workflow survives session restarts
- Multi-project — run multiple workflows concurrently
- Branching — choose execution strategy at branch points
- Context-plugins — fork into review/parallel-agents without leaving main flow
- Soft-guard goto — jump to any step with warnings about skipped prerequisites
- 11 bundled Skills — covering the full workflow lifecycle
Installation
This is a Plugin, not a plain Skill. Install via:
openclaw plugins install clawhub:agent-workflow
openclaw gateway restart
Then enable in your ~/.openclaw/openclaw.json:
{
"plugins": {
"allow": ["agent-workflow"]
},
"tools": {
"allow": ["agent_workflow"]
}
}
Usage
In your agent (via Feishu, Discord, or any channel):
Start a new workflow for my Q2 planning project
The agent will call agent_workflow with action: "start" and guide you through the workflow.
Tool: agent_workflow
| Action | Description |
|---|---|
start |
Begin a new workflow |
status |
View current state (all active workflows if no ID given) |
next |
Advance to the next step |
goto |
Jump to any node (soft-guard warns about skipped steps) |
complete |
Mark current node done |
fork |
Activate a context-plugin without leaving main flow |
join |
Complete a fork and return |
getSkill |
Load full SKILL.md for the current node |
list |
List all workflows |
abandon |
Abandon a workflow |
Bundled Skills
brainstorming— Turn ideas into specswriting-plans— Break specs into tasksexecuting-plans— Sequential executionsubagent-driven-execution— Parallel subagent executionverification-before-completion— Evidence before claimsfinishing-work— Delivery optionsdispatching-parallel-agents— Fork independent tasksrequesting-review— Dispatch reviewer subagentreceiving-review— Evaluate feedback rigorouslysystematic-problem-solving— Root-cause diagnosiswriting-skills— Create/improve Skills
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-workflow - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-workflow触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agent Workflow 是什么?
A structured workflow plugin for OpenClaw agents. Guides work through brainstorm → plan → execute → verify → deliver with persistent state, branching, parall... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 237 次。
如何安装 Agent Workflow?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-workflow」即可一键安装,无需额外配置。
Agent Workflow 是免费的吗?
是的,Agent Workflow 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agent Workflow 支持哪些平台?
Agent Workflow 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Workflow?
由 nano(@kangyishuai)开发并维护,当前版本 v1.0.0。