coda-packs
Manage Coda Packs via REST API v1. Supports listing, creating, updating, and deleting private Packs. Requires CODA_API_TOKEN. Delete requires confirmation. Note: Builds, Gallery submission, Analytics, and Collaborators require Coda's Pack SDK CLI, not available via REST API.
About this skill
This AI agent skill provides capabilities to manage Coda Packs through the Coda REST API v1. Users can list existing Packs, create new private Pack shells, update their metadata (like name and description), and delete unused Packs. It serves as a programmatic interface for fundamental Pack lifecycle management, particularly useful for developers or teams integrating Coda into automated workflows for initial setup, minor adjustments, and cleanup of private Packs. It's important to note the limitations of the Coda REST API v1 for Pack management. While core CRUD operations are supported, advanced features such as building Pack versions, submitting Packs to the Gallery, viewing analytics, or managing collaborators are not available through this API. These advanced functionalities require the Coda Pack SDK CLI. Therefore, this skill is best suited for basic management tasks, complementing the more powerful SDK CLI for full development cycles.
Best use case
The primary use case is for developers and Coda power users who need to programmatically manage their private Coda Packs. This includes automating the creation of new Pack placeholders, batch updating Pack descriptions, or routinely cleaning up outdated or experimental Packs without needing to interact directly with the Coda web UI for these basic operations.
Manage Coda Packs via REST API v1. Supports listing, creating, updating, and deleting private Packs. Requires CODA_API_TOKEN. Delete requires confirmation. Note: Builds, Gallery submission, Analytics, and Collaborators require Coda's Pack SDK CLI, not available via REST API.
Users can effectively perform basic create, list, update, and delete operations on their private Coda Packs directly through their AI agent.
Practical example
Example input
Hey agent, list all my private Coda Packs.
Example output
```json
[
{"id": "packId123", "name": "My CRM Pack", "description": "Integrates with Salesforce"},
{"id": "packId456", "name": "Project Tracker Pack", "description": "Manages tasks via GitHub Issues"}
]
```When to use this skill
- List existing Coda Packs to get an overview.
- Create new private Pack shells for development or testing.
- Update metadata like names and descriptions for private Packs.
- Delete unused or deprecated private Packs.
When not to use this skill
- Managing Coda Docs (tables, rows, pages).
- Building and managing Pack versions.
- Submitting Packs to the Coda Gallery.
- Viewing Pack analytics or managing collaborators.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/coda-packs/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How coda-packs Compares
| Feature / Agent | coda-packs | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | easy | N/A |
Frequently Asked Questions
What does this skill do?
Manage Coda Packs via REST API v1. Supports listing, creating, updating, and deleting private Packs. Requires CODA_API_TOKEN. Delete requires confirmation. Note: Builds, Gallery submission, Analytics, and Collaborators require Coda's Pack SDK CLI, not available via REST API.
How difficult is it to install?
The installation complexity is rated as easy. You can find the installation instructions above.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
Top AI Agents for Productivity
See the top AI agent skills for productivity, workflow automation, operational systems, documentation, and everyday task execution.
SKILL.md Source
# Coda Packs Skill Manage Coda Packs through the REST API v1. Create, list, update, and delete private Packs. ## ⚠️ API Limitations The Coda REST API v1 has limited Pack management capabilities: | Feature | REST API | Pack SDK CLI | |---------|----------|--------------| | **List Packs** | ✅ Available | ✅ | | **Create Pack** | ✅ Available | ✅ | | **Update Pack** | ✅ Available | ✅ | | **Delete Pack** | ✅ Available | ✅ | | **Build Versions** | ❌ Not available | ✅ Required | | **Gallery Submit** | ❌ Not available | ✅ Required | | **Analytics** | ❌ Not available | ✅ Required | | **Collaborators** | ❌ Not available | ✅ Required | **For builds, gallery submission, and advanced features, use:** ```bash npx @codahq/packs-sdk register # Create account npx @codahq/packs-sdk build # Build Pack npx @codahq/packs-sdk release # Submit to Gallery ``` ## When to Use Use this skill when the user wants to: - List existing Coda Packs - Create new private Pack shells - Update Pack metadata (name, description) - Delete unused Packs ## When NOT to Use - **Do NOT use** for Doc management (tables, rows, pages) → use `coda` skill - **Do NOT use** for building Pack versions → use Pack SDK CLI - **Do NOT use** for Gallery submission → use Pack SDK CLI - **Do NOT use** for viewing analytics → use Pack SDK CLI or Coda web UI ## Prerequisites 1. **API Token**: Set environment variable `CODA_API_TOKEN` - Get token at: https://coda.io/account -> API Settings - Must have Pack management permissions 2. **Python 3.7+** with `requests` library ## Quick Start ```bash # Setup export CODA_API_TOKEN="your_token_here" # List your Packs python scripts/coda_packs_cli.py packs list # Create new Pack shell python scripts/coda_packs_cli.py packs create \ --name "My Integration" \ --description "Does cool things" # Update Pack python scripts/coda_packs_cli.py packs update my-pack-id \ --description "Updated description" # Delete Pack (requires confirmation) python scripts/coda_packs_cli.py packs delete my-pack-id ``` ## Full Pack Development Workflow Since the REST API only supports basic Pack management, here's the complete workflow: ### Step 1: Create Pack Shell (via REST API) ```bash python scripts/coda_packs_cli.py packs create \ --name "Karakeep Bookmarks" \ --description "Save and search bookmarks" ``` ### Step 2-4: Use Pack SDK CLI (Required) ```bash # Install Pack SDK npm install -g @codahq/packs-sdk # Initialize Pack project npx @codahq/packs-sdk init karakeep-pack # Develop your Pack (edit pack.ts) # See: https://coda.io/packs/build/latest/guides/quickstart/ # Build and upload npx @codahq/packs-sdk build npx @codahq/packs-sdk upload # Submit to Gallery (when ready) npx @codahq/packs-sdk release ``` ## CLI Tool Usage ### Pack Management ```bash # List all your Packs python scripts/coda_packs_cli.py packs list # Get Pack details python scripts/coda_packs_cli.py packs get 48093 python scripts/coda_packs_cli.py packs get "Karakeep" # Create new Pack python scripts/coda_packs_cli.py packs create \ --name "My Pack" \ --description "Description" \ --readme "# My Pack\n\nDetails here" # Update Pack metadata python scripts/coda_packs_cli.py packs update my-pack-id \ --name "New Name" \ --description "New description" # Delete Pack (requires confirmation) python scripts/coda_packs_cli.py packs delete my-pack-id # Or skip confirmation: --force ``` ### Pack ID Resolution The CLI accepts both **numeric Pack IDs** and **Pack Names**: ```bash # These are equivalent: python scripts/coda_packs_cli.py packs get 48093 python scripts/coda_packs_cli.py packs get "Karakeep" ``` If the name is ambiguous, the CLI lists matches and exits. ## Safety Guardrails ### Operations Requiring Confirmation | Operation | Risk | Confirmation | |-----------|------|--------------| | **Delete Pack** | Irreversible | "Delete Pack 'X'? This cannot be undone." | ### No Confirmation Required - **Create Pack**: Safe, reversible - **List/Get Packs**: Read-only - **Update Pack**: Reversible ## Error Handling Common API errors: | Code | Meaning | Resolution | |------|---------|------------| | `401` | Invalid token | Refresh CODA_API_TOKEN | | `403` | Insufficient permissions | Ensure token has Pack management rights | | `404` | Pack not found | Check Pack ID or name | | `429` | Rate limited | Wait and retry (handled automatically) | ## References - **Pack SDK Guides**: https://coda.io/packs/build/latest/guides/overview/ - **Pack SDK Quickstart**: https://coda.io/packs/build/latest/guides/quickstart/ - **Coda API Docs**: https://coda.io/developers/apis/v1 - **Pack SDK NPM**: https://www.npmjs.com/package/@codahq/packs-sdk ## Example: Karakeep Pack Shell Created for testing: - **Name**: Karakeep - **ID**: 48093 - **Description**: Karakeep bookmark manager - save URLs, search, and organize with tags **Next steps for full Pack development:** 1. Use Pack SDK CLI: `npx @codahq/packs-sdk init karakeep-pack` 2. Implement Karakeep API integration (see https://docs.karakeep.app/api/) 3. Build and upload: `npx @codahq/packs-sdk build && npx @codahq/packs-sdk upload`
Related Skills
coda
General-purpose Coda document manager via REST API v1. Supports listing/creating/updating/deleting docs, managing tables/rows/pages, triggering automations, and exploring doc structure. Requires CODA_API_TOKEN environment variable. Delete operations require explicit confirmation; publishing and permission changes require explicit user intent.
agent-autonomy-kit
Stop waiting for prompts. Keep working.
Meeting Prep
Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.
obsidian
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli. And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
Obsidian CLI 探索记录
Skill for the official Obsidian CLI (v1.12+). Complete vault automation including files, daily notes, search, tasks, tags, properties, links, bookmarks, bases, templates, themes, plugins, sync, publish, workspaces, and developer tools.
📝 智能摘要助手 (Smart Summarizer)
Instantly summarize any content — articles, PDFs, YouTube videos, web pages, long documents, or pasted text. Extracts key points, action items, and insights. Use when you need to quickly digest long content, create meeting notes, or extract takeaways from any source.
Customer Onboarding
Systematically onboard new clients with checklists, welcome sequences, milestone tracking, and success metrics. Reduce churn by nailing the first 90 days.
CRM Manager
Manages a local CSV-based CRM with pipeline tracking
Invoice Generator
Creates professional invoices in markdown and HTML
Productivity Operating System
You are a personal productivity architect. Your job: help the user design, execute, and optimize their daily system so they consistently ship high-impact work while protecting energy and avoiding burnout.
Product Launch Playbook
You are a Product Launch Strategist. You guide users through planning, executing, and optimizing product launches — from pre-launch validation through post-launch growth. This system works for SaaS, physical products, services, marketplaces, and content products.
Procurement Manager
You are a procurement specialist agent. Help teams evaluate vendors, manage purchase orders, negotiate contracts, and optimize spend.