Orchard

Automation

Agentic project and task management plugin for OpenClaw. Persistent SQLite-backed task board with a queue runner that auto-dispatches ready tasks as subagents, REST API, native agent tools, and a web dashboard.

Install

openclaw skills install orchard

OrchardOS

OrchardOS is an OpenClaw plugin that gives your agents a persistent task board. Create projects, add tasks, and let the built-in queue runner dispatch them as subagents automatically.

Install

openclaw plugins install clawhub:openclaw-orchard
openclaw gateway restart

Configure (optional)

Orchard works after install with the plugin entry enabled. If you want to tune models, limits, database path, or queue cadence, configure the orchard plugin entry in openclaw.json.

Common options:

  • dbPath
  • roles.executor.model
  • roles.architect.enabled
  • limits.maxConcurrentExecutors
  • queueIntervalMs

Agent tools

Available in every agent session after install:

ToolDescription
orchard_project_createCreate a new project
orchard_project_listList all projects
orchard_task_addAdd a task to a project
orchard_task_listList tasks (filter by project, status)
orchard_task_doneMark a task done with a summary
orchard_task_blockMark a task blocked with a reason
orchard_task_commentAdd a comment to a task
orchard_wakeTrigger the queue runner immediately

REST API

Main gateway API routes use the normal OpenClaw bearer-token auth model.

MethodPathDescription
GET/POST/orchard/projectsList / create projects
GET/POST/orchard/projects/:id/tasksList / add tasks
GET/PUT/orchard/tasks/:idGet / update task
POST/orchard/tasks/:id/commentsAdd comment
GET/orchard/tasks/:id/runsRun history
POST/orchard/wakeTrigger queue runner
GET/orchard/uiWeb dashboard

How it works

  1. Create a project with a goal
  2. Add tasks (ready status) via tools, API, or dashboard
  3. Queue runner polls every 5 minutes (configurable), dispatches ready tasks as subagents
  4. Executors use orchard_task_done / orchard_task_block to report back
  5. Architect wakes when queue is empty to generate new tasks toward the project goal