{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openpond-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openpond-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/openpond-cli",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "OpenPond CLI",
        "body": "Use this skill when an agent needs to create or manage OpenPond apps via the CLI, without MCP."
      },
      {
        "title": "Quick setup",
        "body": "Install: npm i -g openpond-code (or npx --package openpond-code openpond <cmd>)\nAuth: run openpond login or set OPENPOND_API_KEY\nNon-interactive login: openpond login --api-key opk_..."
      },
      {
        "title": "Common workflows",
        "body": "Create internal repo and attach remote:\n\nopenpond repo create --name my-repo --path .\n\n\nNon-interactive push (tokenized remote):\n\nopenpond repo create --name my-repo --path . --token\ngit add . && git commit -m \"init\"\nopenpond repo push --path . --branch main\nopenpond repo push reads .git/config, temporarily tokenizes origin, and restores it after push.\n\n\nWatch deployments:\n\nopenpond deploy watch handle/repo --branch main\n\n\nList and run tools:\n\nopenpond tool list handle/repo\nopenpond tool run handle/repo myTool --body '{\"foo\":\"bar\"}'\n\n\nAccount-level APIs:\n\nopenpond apps list [--handle <handle>] [--refresh]\nopenpond apps tools\nopenpond apps performance --app-id app_123\nopenpond apps agent create --prompt \"Build a daily digest agent\""
      },
      {
        "title": "OpenTool passthrough",
        "body": "Use the CLI to run OpenTool commands via npx:\n\nopenpond opentool init --dir .\nopenpond opentool validate --input tools\nopenpond opentool build --input tools --output dist"
      },
      {
        "title": "Config and URLs",
        "body": "Optional env vars: OPENPOND_BASE_URL, OPENPOND_API_URL, OPENPOND_TOOL_URL, OPENPOND_API_KEY\nCache file: ~/.openpond/cache.json (auto-refreshes on next use)"
      }
    ],
    "body": "OpenPond CLI\n\nUse this skill when an agent needs to create or manage OpenPond apps via the CLI, without MCP.\n\nQuick setup\nInstall: npm i -g openpond-code (or npx --package openpond-code openpond <cmd>)\nAuth: run openpond login or set OPENPOND_API_KEY\nNon-interactive login: openpond login --api-key opk_...\nCommon workflows\nCreate internal repo and attach remote:\nopenpond repo create --name my-repo --path .\nNon-interactive push (tokenized remote):\nopenpond repo create --name my-repo --path . --token\ngit add . && git commit -m \"init\"\nopenpond repo push --path . --branch main\nopenpond repo push reads .git/config, temporarily tokenizes origin, and restores it after push.\nWatch deployments:\nopenpond deploy watch handle/repo --branch main\nList and run tools:\nopenpond tool list handle/repo\nopenpond tool run handle/repo myTool --body '{\"foo\":\"bar\"}'\nAccount-level APIs:\nopenpond apps list [--handle <handle>] [--refresh]\nopenpond apps tools\nopenpond apps performance --app-id app_123\nopenpond apps agent create --prompt \"Build a daily digest agent\"\nOpenTool passthrough\n\nUse the CLI to run OpenTool commands via npx:\n\nopenpond opentool init --dir .\nopenpond opentool validate --input tools\nopenpond opentool build --input tools --output dist\nConfig and URLs\nOptional env vars: OPENPOND_BASE_URL, OPENPOND_API_URL, OPENPOND_TOOL_URL, OPENPOND_API_KEY\nCache file: ~/.openpond/cache.json (auto-refreshes on next use)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/glucrypto/openpond-cli",
    "publisherUrl": "https://clawhub.ai/glucrypto/openpond-cli",
    "owner": "glucrypto",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}