# Send Clawhub Skill Bandwidth Income 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": "bandwidth-income",
    "name": "Clawhub Skill Bandwidth Income",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/mariusfit/bandwidth-income",
    "canonicalUrl": "https://clawhub.ai/mariusfit/bandwidth-income",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bandwidth-income",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bandwidth-income",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bandwidth-income"
    },
    "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/bandwidth-income",
    "downloadUrl": "https://openagent3.xyz/downloads/bandwidth-income",
    "agentUrl": "https://openagent3.xyz/skills/bandwidth-income/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bandwidth-income/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bandwidth-income/agent.md"
  }
}
```
## Documentation

### bandwidth-income

Turn your unused internet bandwidth into passive crypto income. This skill helps you set up, monitor, and optimize bandwidth-sharing nodes across multiple networks.

### What It Does

Setup Grass.io, Mysterium Network, Storj, and Honeygain nodes via Docker
Monitor node uptime and auto-restart on failure
Track earnings across all platforms in one dashboard
Alert via message when a node goes offline or earnings drop
Calculate ROI based on your bandwidth and hardware costs

### Supported Platforms

PlatformTypeEarningsSetupGrass.ioBandwidth sharing$100-1000/moBrowser extension or DockerMysterium NetworkVPN exit node$10-200/moDocker, needs static IPStorjDecentralized storage$5-100/moDocker, needs 500GB+ diskHoneygainBandwidth sharing$20-150/moApp or Docker

### Requirements

Linux server or homelab (CT/VM works)
Docker + docker-compose
1Mbps+ upload bandwidth
Static or semi-static IP (Mysterium benefits most)
For Storj: 500GB+ free disk space

### setup <platform>

Sets up a bandwidth income node for the specified platform.

setup grass       — Install Grass.io desktop node
setup mysterium   — Deploy Mysterium Network exit node
setup storj       — Configure Storj storage node
setup honeygain   — Deploy Honeygain container
setup all         — Deploy all platforms

Example:

"Set up a Mysterium node on CT 215"
"Install Grass on my homelab server"

### status

Check current status of all running nodes.

status            — All nodes summary
status grass      — Grass.io node details
status mysterium  — Mysterium dashboard link + uptime
status storj      — Storj earnings + disk usage

### earnings

Estimate and track earnings across platforms.

earnings          — Current estimated monthly earnings
earnings history  — Past 30 days breakdown
earnings calc     — Calculator: enter bandwidth + disk → revenue estimate

### monitor

Set up automated monitoring with alerts.

monitor start     — Start monitoring all nodes (checks every 5 min)
monitor stop      — Stop monitoring
monitor logs      — View recent monitoring events

### restart <platform>

Restart a specific node.

restart grass
restart mysterium
restart all

### Option 1: Grass.io (Easiest, no static IP needed)

# Desktop node — run on any Linux with display, or headless via Xvfb
docker run -d \\
  --name grass-node \\
  --restart unless-stopped \\
  -e GRASS_USER=your@email.com \\
  -e GRASS_PASS=yourpassword \\
  mrcolorrain/grass:latest

# Check status
docker logs grass-node --tail 20

Requirements: Grass.io account (free), residential IP preferred.

### Option 2: Mysterium Network (Best per-MB earnings)

# 1. Get a Mysterium wallet first: my.mystnodes.com
# 2. Deploy the node:
docker run -d \\
  --name mysterium-node \\
  --restart unless-stopped \\
  --cap-add NET_ADMIN \\
  -p 4449:4449 \\
  -v ~/.mysterium:/root/.mysterium \\
  mysteriumnetwork/myst:latest \\
  service --agreed-terms-and-conditions

# 3. Claim your node:
# Visit: http://YOUR_SERVER_IP:4449
# Enter your wallet address from my.mystnodes.com

Requirements: Static/semi-static IP, port 4449 open, ERC-20 wallet.

### Option 3: Storj (If you have spare disk)

# 1. Create account at storj.io + generate auth token
# 2. Deploy:
docker run -d \\
  --name storj-node \\
  --restart unless-stopped \\
  -p 28967:28967 \\
  -p 14002:14002 \\
  -e WALLET="0xYOUR_ETH_WALLET" \\
  -e EMAIL="your@email.com" \\
  -e ADDRESS="YOUR_PUBLIC_IP:28967" \\
  -e STORAGE="500GB" \\
  -v /path/to/storj/data:/app/identity \\
  -v /path/to/storj/storage:/app/config \\
  storjlabs/storagenode:latest

Requirements: 500GB free disk, port 28967 open, eth wallet.

### Docker Compose (All-in-one)

version: "3.8"
services:
  grass:
    image: mrcolorrain/grass:latest
    container_name: grass-node
    restart: unless-stopped
    environment:
      - GRASS_USER=${GRASS_EMAIL}
      - GRASS_PASS=${GRASS_PASSWORD}
    
  mysterium:
    image: mysteriumnetwork/myst:latest
    container_name: mysterium-node
    restart: unless-stopped
    cap_add:
      - NET_ADMIN
    ports:
      - "4449:4449"
    volumes:
      - mysterium_data:/root/.mysterium
    command: service --agreed-terms-and-conditions

  honeygain:
    image: honeygain/honeygain:latest
    container_name: honeygain-node
    restart: unless-stopped
    environment:
      - HONEYGAIN_EMAIL=${HONEYGAIN_EMAIL}
      - HONEYGAIN_PASS=${HONEYGAIN_PASSWORD}
      - HONEYGAIN_DEVICE=homelab-01

volumes:
  mysterium_data:

### Earnings Calculator

Platform100Mbps Upload50Mbps Upload10Mbps UploadGrass.io$150-400/mo$80-200/mo$20-60/moMysterium$30-100/mo$15-50/mo$5-15/moStorj$10-50/mo$10-50/mo$10-50/moHoneygain$20-80/mo$10-40/mo$3-12/moTotal$210-630/mo$115-340/mo$38-137/mo

Estimates based on community reports as of Feb 2026. Actual earnings vary.

### Monitoring Script

#!/bin/bash
# bandwidth-monitor.sh — check all nodes and alert on failure

check_container() {
  local name=$1
  local status=$(docker inspect --format='{{.State.Status}}' $name 2>/dev/null)
  if [ "$status" != "running" ]; then
    echo "ALERT: $name is $status — restarting..."
    docker start $name
    # openclaw message send "⚠️ $name node went down, restarted automatically"
    return 1
  fi
  echo "✅ $name: running"
}

check_container grass-node
check_container mysterium-node
check_container storj-node
check_container honeygain-node

### Notes

Residential IPs earn more on Grass.io than datacenter/VPS IPs
Mysterium requires you to stake MYST tokens to unlock higher earnings
Storj earnings grow over time as your node builds reputation
Multiple nodes on same IP may reduce per-node earnings on some platforms
Always check platform ToS before running on VPS/cloud providers

### Privacy & Safety

These platforms share your IP as an exit node or bandwidth relay
Use a dedicated machine/container, not your primary workstation
Mysterium traffic is encrypted end-to-end; you don't see user data
Consider running on a separate VLAN if security is a concern
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mariusfit
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bandwidth-income)
- [Send to Agent page](https://openagent3.xyz/skills/bandwidth-income/agent)
- [JSON manifest](https://openagent3.xyz/skills/bandwidth-income/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bandwidth-income/agent.md)
- [Download page](https://openagent3.xyz/downloads/bandwidth-income)