CloudHarness // durable workbox

The durable workbox for agents that run on your machine.

$ cloudharness status
service:   online
promise:   Your agent's work survives sleep.
api:       https://cloudharness.ai/v1
registry:  /v1/primitives
skills:    /skills

workbox:
  [x] Durable work          lease, retry, and recover work safely
  [x] Best-effort routines  catch up after your machine returns
  [x] Contextual continuation resume with a compact checkpoint
  [x] Artifact context      typed outputs and durable checkpoints

boundary:
  CloudHarness coordinates durable work.
  Your machine keeps models, tools, credentials, files, and execution.

how it works

routine / manual request
  → durable work item
  → your host claims it when online
  → local agent step
  → output, retry, or continuation

quickstart

$ curl -X POST https://cloudharness.ai/v1/keys

# method: POST /v1/keys
$ _

first durable work item

$ curl -X POST https://cloudharness.ai/v1/work \
  -H "Authorization: Bearer YOUR_CLOUDHARNESS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"agent.step","payload":{"nextAction":"review inbox"}}'

navigation

[api registry] [agent skills] [source]