# Send clawcontract 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": "clawcontract",
    "name": "clawcontract",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/sufnoobzac/clawcontract",
    "canonicalUrl": "https://clawhub.ai/sufnoobzac/clawcontract",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawcontract",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawcontract",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/commands.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawcontract",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T18:58:45.550Z",
      "expiresAt": "2026-05-11T18:58:45.550Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawcontract",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawcontract",
        "contentDisposition": "attachment; filename=\"clawcontract-1.0.8.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawcontract"
      },
      "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/clawcontract"
    },
    "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/clawcontract",
    "downloadUrl": "https://openagent3.xyz/downloads/clawcontract",
    "agentUrl": "https://openagent3.xyz/skills/clawcontract/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawcontract/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawcontract/agent.md"
  }
}
```
## Documentation

### ClawContract

Generate, analyze, deploy, and verify smart contracts on BNB Chain via CLI.

Source & install: https://github.com/cvpfus/clawcontract — clone the repo, run pnpm install && pnpm build && npm link.

### Quick Start

Generate a contract:

clawcontract generate "escrow contract for peer to peer trades with dispute resolution and timeout auto release"

Full pipeline (generate → analyze → deploy → verify):

clawcontract full "escrow contract for peer to peer trades with dispute resolution and timeout auto release" --chain bsc-testnet

Deploy an existing contract:

clawcontract deploy ./contracts/VibeToken.sol --chain bsc-testnet

Interact with a deployed contract:

clawcontract interact 0xABC... name --chain bsc-testnet

List deployment records:

clawcontract list
clawcontract list --chain bsc-testnet

Delete a deployment record:

clawcontract delete 0xABC...def

### References

Full command reference (all flags, examples, notes): See {baseDir}/references/commands.md

### Supported Chains

KeyChainTestnetbsc-mainnetBNB Smart ChainNobsc-testnetBNB Smart Chain TestnetYesopbnb-mainnetopBNBNoopbnb-testnetopBNB TestnetYes

Default: bsc-testnet.

### Env Vars

Configure via docker-compose.yml or set directly in the environment.

VariableRequiredPurposeCLAWCONTRACT_OPENROUTER_API_KEYYesAI contract generationCLAWCONTRACT_PRIVATE_KEYFor deployWallet for deployment — must be supplied by userCLAWCONTRACT_BSCSCAN_API_KEYFor verifyContract verification on BscScan/opBNBScanCLAWCONTRACT_OPENROUTER_MODELNoModel override (default: anthropic/claude-sonnet-4-20250514)

### Artifacts

The CLI writes the following files to disk during normal operation:

PathWhenContentscontracts/*.solgenerate, fullGenerated Solidity source.deployments/*.jsondeploy, fullDeployment metadata (address, chain, tx hash)

### Safety

No auto-generated keys. CLAWCONTRACT_PRIVATE_KEY must be explicitly provided by the user via environment variable. The CLI will not generate or persist a private key on its own.
Mainnet warning (non-blocking). Deployment to mainnet chains prints a bold warning about real costs but does not block on a prompt — the deploy proceeds automatically. This is by design: the CLI targets agent-driven pipelines where stdin is unavailable. Users control mainnet exposure by choosing --chain explicitly (default is bsc-testnet).
delete confirmation prompt. delete is the sole interactive command — it shows deployment details and asks Remove this deployment? (y/N). Use --force to skip the prompt (agent-friendly). This is safe because delete only removes local metadata; it cannot affect on-chain state.
Automatic fix attempts. During full, if high-severity issues are found the AI attempts to fix and re-analyze (up to 3 rounds). This means the agent may modify generated source before deploy. Mitigations:

Use --skip-fix to disable auto-fix entirely.
Use --skip-deploy to review the final source and analysis before any on-chain action.
Fixes only target the generated file in contracts/; no other files are modified.


Accidental live-deploy risk. Because CLAWCONTRACT_PRIVATE_KEY is mandatory for deploy and the default chain is bsc-testnet, accidental mainnet deploys require the user to both set a funded mainnet key and explicitly pass --chain bsc-mainnet or --chain opbnb-mainnet. Neither can happen silently.
Prefer testnet chains and throwaway keys for initial trials.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sufnoobzac
- Version: 1.0.8
## 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-04T18:58:45.550Z
- Expires at: 2026-05-11T18:58:45.550Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawcontract)
- [Send to Agent page](https://openagent3.xyz/skills/clawcontract/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawcontract/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawcontract/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawcontract)