{
"id": "draft-approve-publish",
"name": "Draft, approve, publish",
"nodes": [
{ "id": "start", "kind": "start" },
{
"id": "draft_post",
"kind": "llm",
"assignedTo": { "agentId": "development-team-lead" },
"action": {
"promptTemplate": "Write a short X post announcing our new feature."
}
},
{
"id": "approval",
"kind": "human_approval",
"assignedTo": { "agentId": "development-team-lead" },
"action": {
"approvalBindingId": "marketing-approval"
}
},
{
"id": "publish_x",
"kind": "tool",
"assignedTo": { "agentId": "development-team-lead" },
"action": {
"tool": "outbound.post",
"args": {
"platform": "x",
"text": "Hello from ClawRecipes",
"idempotencyKey": "draft-approve-publish:publish_x"
}
}
},
{ "id": "end", "kind": "end" }
],
"edges": [
{ "from": "start", "to": "draft_post", "on": "success" },
{ "from": "draft_post", "to": "approval", "on": "success" },
{ "from": "approval", "to": "publish_x", "on": "success" },
{ "from": "publish_x", "to": "end", "on": "success" }
]
}