Skills coda-ai
CLI to read Coda.io documents and pages. List docs, list pages, read content in markdown/json/html.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/auniik/coda-ai" ~/.claude/skills/openclaw-skills-coda-ai && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/auniik/coda-ai" ~/.openclaw/skills/openclaw-skills-coda-ai && rm -rf "$T"
manifest:
skills/auniik/coda-ai/SKILL.mdsource content
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)
npm install -g coda-ai@0.2.2 # 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:
(written with 0600 permissions)~/.coda-ai/config.json - 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