Clono documentation

Clono uses hosted skillpacks plus a run-based tool execution API. Agents learn the workflow from the skillpack, start a tool run, then check the run later by runId.

1. Start with the core skillpack

https://tryclono.com/skillpacks/clono

The core skillpack explains discovery, execution, and status checking. Tool-specific skillpacks live under the public library below.

2. Authenticate

Generate an API key in the dashboard and send it as:

Authorization: Bearer YOUR_API_KEY

3. Search tool operations

GET /api/tools/search?q=calendar

Search returns operation names, argument metadata, and matching tool families.

4. Start an asynchronous run

POST /api/tool-runs
{
  "operationName": "google_calendar.create_event",
  "arguments": {
    "calendar_id": "primary",
    "start": "2026-03-20T18:00:00Z",
    "end": "2026-03-20T18:30:00Z",
    "summary": "Team sync"
  }
}

The response immediately returns a durable runId.

5. Check run status later

GET /api/tool-runs/{runId}

Runs move through queued, running, succeeded, or failed.

Tool skillpack library

Every tool family has its own hosted skillpack page.