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

### ClawSkill — Mine RTC Tokens With Your AI Agent

Mine RTC (RustChain Tokens) by proving your agent runs on real hardware. One command to install, automatic attestation, built-in wallet.

### Security & Transparency

This skill is open-source mining software, not malware. Before installing, you can verify everything:

# Preview what will happen — nothing installed
clawskill install --dry-run

# Show SHA256 hashes of bundled files
clawskill install --verify

ConcernHow We Address ItCode originAll miner scripts are bundled inside the package — no external downloads at install time. Inspect them yourself in the data/ directory. Source code: RustChain GitHub repo.Background serviceOpt-in only. Install does NOT create a service by default. You must explicitly pass --service to enable auto-start. Without it, the miner runs in the foreground only when you say so.Hardware fingerprintingRequired for Proof-of-Antiquity consensus. Collects CPU model, timing variance, and cache latency — nothing personal. No files, passwords, browsing data, or credentials are accessed. Full disclosure shown before install with a consent prompt.Network endpointThe RustChain node uses a CA-signed TLS certificate (Let's Encrypt). All communication is standard HTTPS with certificate verification.

### What Data Is Collected

During attestation (every few minutes when mining), the following is sent to the RustChain node:

CPU model name and architecture (e.g. "AMD Ryzen 5 8645HS", "x86_64")
Clock timing variance (coefficient of variation — proves real oscillator, not emulated)
Cache latency profile (proves real L1/L2/L3 hierarchy)
VM detection flags (hypervisor present: yes/no)
Wallet name (your chosen identifier)

NOT collected: file contents, browsing history, credentials, IP geolocation, personal data, or anything from your filesystem.

### Clean Uninstall

clawskill uninstall   # Removes ALL files, services, and configs

### Install

# Python (recommended)
pip install clawskill

# Node.js
npm install -g clawskill

### Setup

# Install miner + configure wallet (shows disclosure, asks consent)
clawskill install --wallet my-agent-miner

# Start mining in foreground (Ctrl+C to stop)
clawskill start

# Or: start with background auto-restart (opt-in)
clawskill start --service

### How It Works

Hardware Fingerprinting — 6 cryptographic checks prove your machine is real:

Clock-skew & oscillator drift
Cache timing fingerprint (L1/L2/L3 latency)
SIMD unit identity (SSE/AVX/AltiVec/NEON bias)
Thermal drift entropy
Instruction path jitter (microarchitectural)
Anti-emulation behavioral checks



Automatic Attestation — Your agent attests to the RustChain network every few minutes


Per-Epoch Rewards — RTC tokens accumulate in your wallet each epoch (~10 minutes)


VM Detection — Virtual machines are detected and receive effectively zero rewards. Real iron only.

### Multipliers

HardwareMultiplierNotesModern x86/ARM1.0xStandard rate — this is youApple Silicon (M1/M2/M3)1.2xSlight bonusIBM POWER81.5xServer-class vintagePowerPC G52.0xVintage bonusPowerPC G42.5xMaximum vintage bonusVM/Emulator~0xDetected and penalized

### Commands

CommandDescriptionclawskill installExtract miner, create wallet (consent prompt, no service by default)clawskill install --serviceInstall + create background serviceclawskill install --dry-runPreview without making any changesclawskill install --verifyShow SHA256 hashes of bundled filesclawskill startStart mining in foregroundclawskill start --serviceStart + create auto-restart serviceclawskill stopStop miningclawskill statusCheck miner + network status + file hashesclawskill logsView miner outputclawskill uninstallRemove everything cleanly

### What Gets Installed

Miner scripts bundled with the package (2 Python files, no external downloads)
Python virtual environment with one dependency (requests)
All files stored in ~/.clawskill/ (user-scoped, no root needed)
No background service unless you pass --service

### Requirements

Python 3.8+ (installed on most systems)
Linux or macOS
Real hardware (not a VM)

### Links

Source Code: https://github.com/Scottcjn/Rustchain (MIT License)
PyPI: https://pypi.org/project/clawskill/
npm: https://www.npmjs.com/package/clawskill
Block Explorer: https://bulbous-bouffant.metalseed.net/explorer
BoTTube: https://bottube.ai

### License

MIT — Elyan Labs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Scottcjn
- Version: 1.2.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-04-30T12:30:18.497Z
- Expires at: 2026-05-07T12:30:18.497Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawskill)
- [Send to Agent page](https://openagent3.xyz/skills/clawskill/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawskill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawskill/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawskill)