# Send Coda Packs to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "coda-packs",
    "name": "Coda Packs",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/0x7466/coda-packs",
    "canonicalUrl": "https://clawhub.ai/0x7466/coda-packs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/coda-packs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=coda-packs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/coda_packs_cli.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/coda-packs"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/coda-packs",
    "downloadUrl": "https://openagent3.xyz/downloads/coda-packs",
    "agentUrl": "https://openagent3.xyz/skills/coda-packs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/coda-packs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/coda-packs/agent.md"
  }
}
```
## Documentation

### 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:

FeatureREST APIPack SDK CLIList Packs✅ Available✅Create Pack✅ Available✅Update Pack✅ Available✅Delete Pack✅ Available✅Build Versions❌ Not available✅ RequiredGallery Submit❌ Not available✅ RequiredAnalytics❌ Not available✅ RequiredCollaborators❌ Not available✅ Required

For builds, gallery submission, and advanced features, use:

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

API Token: Set environment variable CODA_API_TOKEN

Get token at: https://coda.io/account -> API Settings
Must have Pack management permissions



Python 3.7+ with requests library

### Quick Start

# 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)

python scripts/coda_packs_cli.py packs create \\
  --name "Karakeep Bookmarks" \\
  --description "Save and search bookmarks"

### Step 2-4: Use Pack SDK CLI (Required)

# 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

### Pack Management

# 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:

# 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.

### Operations Requiring Confirmation

OperationRiskConfirmationDelete PackIrreversible"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:

CodeMeaningResolution401Invalid tokenRefresh CODA_API_TOKEN403Insufficient permissionsEnsure token has Pack management rights404Pack not foundCheck Pack ID or name429Rate limitedWait 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:

Use Pack SDK CLI: npx @codahq/packs-sdk init karakeep-pack
Implement Karakeep API integration (see https://docs.karakeep.app/api/)
Build and upload: npx @codahq/packs-sdk build && npx @codahq/packs-sdk upload
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 0x7466
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/coda-packs)
- [Send to Agent page](https://openagent3.xyz/skills/coda-packs/agent)
- [JSON manifest](https://openagent3.xyz/skills/coda-packs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/coda-packs/agent.md)
- [Download page](https://openagent3.xyz/downloads/coda-packs)