Jump to related tools in the same category or review the original source on GitHub.

Web & Frontend Development @auniik Updated 6/28/2026 1,701 downloads 0 stars Security: Pass

Coda Ai OpenClaw Plugin & Skill | ClawHub

Looking to integrate Coda Ai into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate web & frontend development tasks instantly, without having to write custom tools from scratch.

What this skill does

CLI to read Coda.io documents and pages. List docs, list pages, read content in markdown/json/html.

Install

ClawHub CLI
openclaw skills install @auniik/coda-ai
Node.js (npx)
npx clawhub@latest install coda-ai

Full SKILL.md

Open original
Metadata table.
namedescriptionhomepage
coda-aiCLI to read Coda.io documents and pages. List docs, list pages, read content in markdown/json/html.https://www.npmjs.com/package/coda-ai

SKILL.md content below is scrollable.

coda-ai

CLI to read Coda.io content for AI agents.

Workflow

  1. docs → list all documents
  2. pages → list pages in a doc
  3. read → get page content

Setup (once)

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:
coda-ai logout

Commands

List Documents

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

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

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

ClawHub Registry URL: https://clawhub.ai/auniik/skills/coda-ai

Related skills

If this matches your use case, these are close alternatives in the same category.