✓ Verified 💻 Development ✓ Enhanced Data

Coda Ai

CLI to read Coda.io documents and pages.

Rating
4.8 (496 reviews)
Downloads
2,145 downloads
Version
1.0.0

Overview

CLI to read Coda.io documents and pages.

Complete Documentation

View Source →

coda-ai

CLI to read Coda.io content for AI agents.

Workflow

  • docs → list all documents
  • pages → list pages in a doc
  • read → get page content

Setup (once)

bash
npm install -g [email protected]

# Auth (Coda API token)
echo "CODA_API_TOKEN=YOUR_TOKEN" > .env
coda-ai auth --from-file .env

coda-ai whoami # verify auth

Credentials & Storage

  • Stored at: ~/.coda-ai/config.json (written with 0600 permissions)
  • Remove stored credentials:
bash
coda-ai logout

Commands

List Documents

bash
coda-ai docs --compact        # only id + name in toon format (recommended for AI Agents)
coda-ai docs                  # full data in toon format
coda-ai docs --format json    # full data in json
coda-ai docs --format table   # human-readable table

Returns: All docs sorted by most recent update. Use id field for next step.

List Pages

bash
coda-ai pages --docId <docId> --compact        # only id + name, toon format (recommended for AI Agents)
coda-ai pages --docId <docId> --format json    # full data in json
coda-ai pages --docId <docId> --format tree    # visual tree
coda-ai pages --docId <docId>                  # full data in toon format (default)

Returns: Page hierarchy. Use pageId for next step.

Read Content

bash
coda-ai read --docId <docId> --pageId <pageId>  # markdown (default, recommended for AI Agents)
coda-ai read --docId <docId> --pageId <pageId> --format json    # structured data in json
coda-ai read --docId <docId> --pageId <pageId> --format html    # html export

Reference

Full docs: https://github.com/auniik/coda-ai#readme

Installation

Terminal bash

openclaw install coda-ai
    
Copied!

💻Code Examples

coda-ai whoami # verify auth

coda-ai-whoami--verify-auth.txt
## Credentials & Storage
- Stored at: `~/.coda-ai/config.json` (written with **0600** permissions)
- Remove stored credentials:

coda-ai logout

coda-ai-logout.txt
## Commands

### List Documents

coda-ai docs --format table # human-readable table

coda-ai-docs---format-table--human-readable-table.txt
Returns: All docs sorted by most recent update. Use `id` field for next step.

### List Pages

coda-ai pages --docId <docId> # full data in toon format (default)

coda-ai-pages---docid-docid--full-data-in-toon-format-default.txt
Returns: Page hierarchy. Use `pageId` for next step.

### Read Content
example.sh
npm install -g [email protected]

# Auth (Coda API token)
echo "CODA_API_TOKEN=YOUR_TOKEN" > .env
coda-ai auth --from-file .env

coda-ai whoami # verify auth
example.sh
coda-ai docs --compact        # only id + name in toon format (recommended for AI Agents)
coda-ai docs                  # full data in toon format
coda-ai docs --format json    # full data in json
coda-ai docs --format table   # human-readable table
example.sh
coda-ai pages --docId <docId> --compact        # only id + name, toon format (recommended for AI Agents)
coda-ai pages --docId <docId> --format json    # full data in json
coda-ai pages --docId <docId> --format tree    # visual tree
coda-ai pages --docId <docId>                  # full data in toon format (default)
example.sh
coda-ai read --docId <docId> --pageId <pageId>  # markdown (default, recommended for AI Agents)
coda-ai read --docId <docId> --pageId <pageId> --format json    # structured data in json
coda-ai read --docId <docId> --pageId <pageId> --format html    # html export

Tags

#web_and-frontend-development #cli

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author auniik
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install coda-ai