โ† All skills
Tencent SkillHub ยท Developer Tools

Cavos Cli

Interact with the Cavos CLI for Starknet wallet operations. Use for transfers, approvals, contract calls, session management, and transaction monitoring.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with the Cavos CLI for Starknet wallet operations. Use for transfers, approvals, contract calls, session management, and transaction monitoring.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc