mirror of
https://github.com/dtzp555-max/openclaw-agent-workflow.git
synced 2026-07-24 14:35:11 +00:00
28 lines
844 B
JSON
28 lines
844 B
JSON
{
|
|
"name": "openclaw-agent-workflow",
|
|
"version": "1.0.0",
|
|
"description": "Lightweight JIRA-like workflow for multi-step agent tasks. Prevents silent failures and status opacity by enforcing state transitions, evidence rules, timeout handling, and structured reporting protocols.",
|
|
"skill_file": "SKILL.md",
|
|
"author": "OpenClaw",
|
|
"tags": ["workflow", "task-tracking", "agent-coordination", "multi-step", "reliability"],
|
|
"state_file": "CURRENT_STATE.md",
|
|
"states": [
|
|
"planned",
|
|
"dispatching",
|
|
"in_progress",
|
|
"blocked",
|
|
"reviewing",
|
|
"done",
|
|
"launch_failure"
|
|
],
|
|
"timeout_minutes": {
|
|
"dispatch_to_accepted": 10,
|
|
"in_progress_silence": 10,
|
|
"blocked_stale": 30
|
|
},
|
|
"report_types": ["accepted", "milestone", "blocked", "done"],
|
|
"examples": [
|
|
"examples/task-tracking-example.md"
|
|
]
|
|
}
|