# Send Cavos 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": "cavos-cli-skill",
    "name": "Cavos Cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/adrianvrj/cavos-cli-skill",
    "canonicalUrl": "https://clawhub.ai/adrianvrj/cavos-cli-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/cavos-cli-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cavos-cli-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "cavos-cli-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T08:43:34.730Z",
      "expiresAt": "2026-05-08T08:43:34.730Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cavos-cli-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cavos-cli-skill",
        "contentDisposition": "attachment; filename=\"cavos-cli-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "cavos-cli-skill"
      },
      "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/cavos-cli-skill"
    },
    "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/cavos-cli-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/cavos-cli-skill",
    "agentUrl": "https://openagent3.xyz/skills/cavos-cli-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cavos-cli-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cavos-cli-skill/agent.md"
  }
}
```
## Documentation

### Cavos CLI Skill

This skill allows you to interact with the Cavos CLI (@cavos/cli) to manage Starknet wallets, perform transfers, and execute contract calls.

### Core Commands

Always use the --json flag when possible to get structured output.

### 1. Identity & Session

Who Am I: Check current session and wallet address.
npx @cavos/cli whoami --json


Session Status: Check if the session is active/expired.
npx @cavos/cli session-status --json


Import Session: Import a session token provisioned from the Dashboard.
npx @cavos/cli session import <token>

### 2. Assets & Transfers

Check Balance:
npx @cavos/cli balance --token <STRK|ETH|address> --json


Transfer Tokens:
npx @cavos/cli transfer --to <address> --amount <amount> --token <token> --json

### 3. Contract Interactions

Approve Spending:
npx @cavos/cli approve --spender <address> --amount <amount> --token <token> --json


Execute Call:
npx @cavos/cli execute --contract <address> --entrypoint <method> --calldata <comma_separated_vals> --json


Read Call:
npx @cavos/cli call --contract <address> --entrypoint <method> --calldata <vals> --json

### 4. Advanced Operations

Multicall: Batch multiple calls.
npx @cavos/cli multicall --calls '<json_array>' --json


Simulate/Estimate: Check tx before sending.
npx @cavos/cli simulate --contract <addr> --entrypoint <method> --calldata <vals> --json


Transaction Status:
npx @cavos/cli tx status <hash> --json

### Best Practices

Verify Balance: Always run balance before a transfer.
Check Session: Run whoami or session-status at the start of a workflow to ensure authentication.
Use JSON: Parsing JSON output is safer than regexing stdout.
Calldata: Calldata for execute and call should be comma-separated strings (e.g., 0x1,100).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: adrianvrj
- Version: 0.1.0
## 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-01T08:43:34.730Z
- Expires at: 2026-05-08T08:43:34.730Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/cavos-cli-skill)
- [Send to Agent page](https://openagent3.xyz/skills/cavos-cli-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/cavos-cli-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/cavos-cli-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/cavos-cli-skill)