# Send Openpond Cli 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": "openpond-cli",
    "name": "Openpond Cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/glucrypto/openpond-cli",
    "canonicalUrl": "https://clawhub.ai/glucrypto/openpond-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openpond-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openpond-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openpond-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T17:57:49.507Z",
      "expiresAt": "2026-05-13T17:57:49.507Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openpond-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openpond-cli",
        "contentDisposition": "attachment; filename=\"openpond-cli-0.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openpond-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openpond-cli"
    },
    "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/openpond-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/openpond-cli",
    "agentUrl": "https://openagent3.xyz/skills/openpond-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openpond-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openpond-cli/agent.md"
  }
}
```
## Documentation

### OpenPond CLI

Use this skill when an agent needs to create or manage OpenPond apps via the CLI, without MCP.

### Quick setup

Install: npm i -g openpond-code (or npx --package openpond-code openpond <cmd>)
Auth: run openpond login or set OPENPOND_API_KEY
Non-interactive login: openpond login --api-key opk_...

### Common workflows

Create internal repo and attach remote:

openpond repo create --name my-repo --path .


Non-interactive push (tokenized remote):

openpond repo create --name my-repo --path . --token
git add . && git commit -m "init"
openpond repo push --path . --branch main
openpond repo push reads .git/config, temporarily tokenizes origin, and restores it after push.


Watch deployments:

openpond deploy watch handle/repo --branch main


List and run tools:

openpond tool list handle/repo
openpond tool run handle/repo myTool --body '{"foo":"bar"}'


Account-level APIs:

openpond apps list [--handle <handle>] [--refresh]
openpond apps tools
openpond apps performance --app-id app_123
openpond apps agent create --prompt "Build a daily digest agent"

### OpenTool passthrough

Use the CLI to run OpenTool commands via npx:

openpond opentool init --dir .
openpond opentool validate --input tools
openpond opentool build --input tools --output dist

### Config and URLs

Optional env vars: OPENPOND_BASE_URL, OPENPOND_API_URL, OPENPOND_TOOL_URL, OPENPOND_API_KEY
Cache file: ~/.openpond/cache.json (auto-refreshes on next use)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: glucrypto
- Version: 0.1.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T17:57:49.507Z
- Expires at: 2026-05-13T17:57:49.507Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openpond-cli)
- [Send to Agent page](https://openagent3.xyz/skills/openpond-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/openpond-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openpond-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/openpond-cli)