Search and extract content from Coda documents including PRDs, roadmaps, competitive analyses, and research docs. Use when user wants to find documents in Coda, list pages and tables, export content as Markdown/HTML/JSON/CSV, or access structured data from Coda workspace. Triggers on "find in Coda", "search Coda", "Coda document", "export from Coda", or references to product documentation.
View on GitHubkjgarza/marketplace-claude
kjgarza-product
plugins/kjgarza-product/skills/searching-documents-with-coda/SKILL.md
January 20, 2026
Select agents to install to:
npx add-skill https://github.com/kjgarza/marketplace-claude/blob/main/plugins/kjgarza-product/skills/searching-documents-with-coda/SKILL.md -a claude-code --skill searching-documents-with-codaInstallation paths:
.claude/skills/searching-documents-with-coda/# Overview Query and export content from Coda documents using the `coda` CLI. Supports searching documents, listing pages and tables, exporting page content as Markdown/HTML, and exporting table data as JSON/CSV. **Reference Documentation:** - [coda-reference.md](coda-reference.md) — Full command reference with all options - [digital-science-reference.md](digital-science-reference.md) — Digital Science documentation links **Authentication:** Requires `CODA_API_KEY` environment variable. Get your key at https://coda.io/account # Quick Start ```bash # Verify authentication coda auth status # Search for documents coda docs search "PRD" # List pages in a document coda pages list DOC_ID # Export page as Markdown coda pages export DOC_ID PAGE_ID --format markdown # Export table data as JSON coda export DOC_ID TABLE_ID --format json ``` # Command Reference ## Document Commands | Command | Description | |---------|-------------| | `coda docs list` | List all accessible documents | | `coda docs list --query "PRD"` | Search documents by name | | `coda docs list --mine` | Show only your documents | | `coda docs list --limit 10` | Limit results | | `coda docs search "roadmap"` | Search documents by query | | `coda docs show DOC_ID` | Show document details | ## Page Commands | Command | Description | |---------|-------------| | `coda pages list DOC_ID` | List all pages in document | | `coda pages show DOC_ID PAGE_ID` | Show page details | | `coda pages export DOC_ID PAGE_ID` | Export page as HTML (default) | | `coda pages export DOC_ID PAGE_ID --format markdown` | Export page as Markdown | | `coda pages export DOC_ID PAGE_ID -o page.md` | Save to file | ## Table Commands | Command | Description | |---------|-------------| | `coda tables list DOC_ID` | List all tables in document | | `coda columns list DOC_ID TABLE_ID` | Show table schema/columns | | `coda rows list DOC_ID TABLE_ID` | List all rows in table | | `coda rows list DOC_ID TABLE_ID --limit 10` | Limit r