Update a worker template
$ handinger workers update
PATCH/api/workers/{workerId}
Update a worker’s instructions, title, summary, visibility, or output schema. Only the fields you send are changed; omitted fields keep their current values. Only the worker creator can update a worker.
Parameters
--instructions: optional string
Replaces the persistent system prompt. Subsequent tasks pick up the new instructions immediately; in-flight tasks keep using the previous version.
Update a worker template
handinger workers update \
--api-key 'My API Key' \
--worker-id t_org_123_w_01HZY2ZJQ8G7K42W2D7WF6V4GM{
"id": "id",
"createdAt": "createdAt",
"instructions": "instructions",
"organizationId": "organizationId",
"outputSchema": {
"foo": "bar"
},
"summary": "summary",
"title": "title",
"updatedAt": "updatedAt",
"url": "https://v3.handinger.com/worker/wrk_vk81XUHKHG-qr4",
"userId": "userId",
"visibility": "public"
}Returns Examples
{
"id": "id",
"createdAt": "createdAt",
"instructions": "instructions",
"organizationId": "organizationId",
"outputSchema": {
"foo": "bar"
},
"summary": "summary",
"title": "title",
"updatedAt": "updatedAt",
"url": "https://v3.handinger.com/worker/wrk_vk81XUHKHG-qr4",
"userId": "userId",
"visibility": "public"
}