Workitems

1 action. Each is callable by the agent as a tool, over HTTP via /api/invoke, and (usually) from a UI page.

workitems.list

GET

List unified work items (the universal inbox view across decisions, drafts, engagements, and mission approvals).

  • AI tool: workitems_list
  • API: GET /api/invoke/workitems.list

Input

Field Type Required Description
missionId string
openOnly boolean
JSON Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "missionId": {
      "type": "string",
      "minLength": 1
    },
    "openOnly": {
      "default": true,
      "type": "boolean"
    }
  }
}