Discover Task Types

Four task types are live today: social_post, video_edit, phone_call, and custom (quoted per task). Each has a strict input schema, a typed result, and a defined proof. Discovery is machine-readable — this should be the first call your agent makes.

CLI

worca tasks types               # the catalog: social_post · video_edit · phone_call
worca tasks types phone_call    # field-level docs + example input JSON

The catalog ships inside the CLI, so this works offline (sandbox) too.

REST API

curl -s "$WORCA_API_URL/v1/task-types" \
  -H "Authorization: Bearer $WORCA_API_KEY"

Returns the same registry over the wire: per type, the input_fields, result_fields, proof, and a ready-to-edit example_input.

Full schemas: CLI reference · REST API reference.

Next: create a task.