# Send Coda.io to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "coda-io",
    "name": "Coda.io",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/simonfunk/coda-io",
    "canonicalUrl": "https://clawhub.ai/simonfunk/coda-io",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/coda-io",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=coda-io",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-endpoints.md",
      "scripts/coda.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "coda-io",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:21:25.527Z",
      "expiresAt": "2026-05-06T12:21:25.527Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=coda-io",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=coda-io",
        "contentDisposition": "attachment; filename=\"coda-io-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "coda-io"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/coda-io"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/coda-io",
    "downloadUrl": "https://openagent3.xyz/downloads/coda-io",
    "agentUrl": "https://openagent3.xyz/skills/coda-io/agent",
    "manifestUrl": "https://openagent3.xyz/skills/coda-io/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/coda-io/agent.md"
  }
}
```
## Documentation

### Coda API Skill

Interact with Coda.io via its REST API v1. Base URL: https://coda.io/apis/v1

### Setup

Get API token at https://coda.io/account → "API settings" → "Generate API token"
Set env var: export CODA_API_TOKEN="<token>"
Verify: bash scripts/coda.sh whoami

### Helper Script

scripts/coda.sh wraps common operations. Run bash scripts/coda.sh help for usage.

Examples:

# List docs
bash scripts/coda.sh list-docs | jq '.items[].name'

# List tables in a doc
bash scripts/coda.sh list-tables AbCDeFGH | jq '.items[] | {id, name}'

# List columns (discover IDs before writing)
bash scripts/coda.sh list-columns AbCDeFGH grid-abc | jq '.items[] | {id, name}'

# Read rows with column names
bash scripts/coda.sh list-rows AbCDeFGH grid-abc 10 true | jq '.items'

# Insert rows
echo '{"rows":[{"cells":[{"column":"c-abc","value":"Hello"}]}]}' | \\
  bash scripts/coda.sh insert-rows AbCDeFGH grid-abc

# Upsert rows (match on key column)
echo '{"rows":[{"cells":[{"column":"c-abc","value":"Hello"},{"column":"c-def","value":42}]}],"keyColumns":["c-abc"]}' | \\
  bash scripts/coda.sh upsert-rows AbCDeFGH grid-abc

# Share doc
bash scripts/coda.sh share-doc AbCDeFGH user@example.com write

### Workflow: Reading Data

list-docs → find the doc ID
list-tables <docId> → find the table ID
list-columns <docId> <tableId> → discover column IDs/names
list-rows <docId> <tableId> → read data

### Workflow: Writing Data

Discover column IDs first (step 3 above)
Build row JSON with cells array using column IDs
insert-rows (new data) or upsert-rows (with keyColumns for idempotent writes)
Write ops return HTTP 202 + requestId → poll with mutation-status if confirmation needed

### Key Concepts

IDs over names: Use resource IDs (stable) rather than names (user-editable)
Eventual consistency: Writes are async (HTTP 202). Poll mutation-status to confirm.
Pagination: List endpoints return nextPageToken. Pass as pageToken for next page.
Rate limits: Read 100/6s, Write 10/6s, Doc content write 5/10s. Respect 429 with backoff.
Fresh reads: Add header X-Coda-Doc-Version: latest to ensure non-stale data (may 400).
valueFormat: simple (default), simpleWithArrays, rich for structured data.
Doc ID from URL: https://coda.io/d/Title_d<DOC_ID> → the part after _d is the doc ID.

### Direct curl (when script doesn't cover it)

curl -s -H "Authorization: Bearer $CODA_API_TOKEN" \\
  "https://coda.io/apis/v1/docs/{docId}/tables/{tableId}/rows?useColumnNames=true&limit=50"

For writes:

curl -s -H "Authorization: Bearer $CODA_API_TOKEN" \\
  -H "Content-Type: application/json" \\
  -X POST -d '{"rows":[...]}' \\
  "https://coda.io/apis/v1/docs/{docId}/tables/{tableId}/rows"

### Full API Reference

See references/api-endpoints.md for complete endpoint listing with parameters, body schemas, and response details.

Searchable by section: Account, Folders, Docs, Pages, Tables, Columns, Rows, Formulas, Controls, Permissions, Publishing, Automations, Analytics, Miscellaneous.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: simonfunk
- Version: 1.2.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T12:21:25.527Z
- Expires at: 2026-05-06T12:21:25.527Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/coda-io)
- [Send to Agent page](https://openagent3.xyz/skills/coda-io/agent)
- [JSON manifest](https://openagent3.xyz/skills/coda-io/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/coda-io/agent.md)
- [Download page](https://openagent3.xyz/downloads/coda-io)