# Send StonebornBot 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": "stonebornbot",
    "name": "StonebornBot",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Olawoyin206/stonebornbot",
    "canonicalUrl": "https://clawhub.ai/Olawoyin206/stonebornbot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/stonebornbot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stonebornbot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/config-template.json",
      "references/archetype.md",
      "references/gas-optimization.md",
      "references/wallet-management.md",
      "scripts/batch-test.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "stonebornbot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T21:33:20.830Z",
      "expiresAt": "2026-05-10T21:33:20.830Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stonebornbot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stonebornbot",
        "contentDisposition": "attachment; filename=\"stonebornbot-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "stonebornbot"
      },
      "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/stonebornbot"
    },
    "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/stonebornbot",
    "downloadUrl": "https://openagent3.xyz/downloads/stonebornbot",
    "agentUrl": "https://openagent3.xyz/skills/stonebornbot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stonebornbot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stonebornbot/agent.md"
  }
}
```
## Documentation

### NFT Mint Bot

Sub-100ms NFT mint sniping bot with multi-wallet support, pre-signed transactions, and multi-RPC broadcasting.

### Quick Start

# 1. Setup
cd scripts && bash setup.sh && cd ..

# 2. Configure
cp assets/config-template.json scripts/config.json
# Edit scripts/config.json with your RPC URLs, contract, wallets, gas settings

# 3. Run (instant mode — fire immediately)
node scripts/mint-bot.js

# 4. Run (monitor mode — wait for mint to go live)
node scripts/mint-bot.js --mode monitor

### Config Overview

Edit scripts/config.json. Key sections:

rpcUrl / rpcUrls: Primary and backup RPC endpoints. All used for multi-broadcast.
wsRpcUrl: WebSocket RPC for block subscriptions and mempool watching.
contract: Target contract address, mint function signature, args, price, max per wallet, ABI.
gas: EIP-1559 gas settings (maxFeePerGas, maxPriorityFeePerGas, gasLimit). See gas-optimization.md.
wallets: Array of {privateKey, label}. See wallet-management.md.
monitoring: Mode (instant or monitor), interval, WebSocket/mempool options.
archetype: Archetype ERC721a invite-based minting. See archetype.md.
flashbots: Flashbots Protect relay for private tx submission.
bankr: Bankr API integration for managed wallets.
retry: Max retries and delay between attempts.

### Instant Mode ("mode": "instant")

Fire transactions immediately. Use when mint is already live or you know the exact block.

### Monitor Mode ("mode": "monitor")

Poll the contract to detect when minting goes live, then fire. Supports:

Polling (intervalMs): Check every N ms via staticCall
WebSocket blocks (useWebSocket: true): React on new blocks
Mempool watching (mempoolWatch: true): Watch pending txs for the mint function

Set mintLiveCheck to "staticCall" or use flagFunction to check a specific view function.

### Archetype ERC721a Support

Enable for Archetype contracts requiring invite-based minting with auth keys and Merkle proofs. See archetype.md.

### War Mode Gas

When gas.warMode.enabled is true, the bot auto-escalates gas when the network is congested, capping at configured maximums. See gas-optimization.md.

### Multi-Wallet

Supports 200+ wallets with batched signing. Pre-signs all transactions before broadcast. See wallet-management.md.

### Batch Testing

Use scripts/batch-test.js to test wallet signing speed and RPC connectivity without sending real transactions.

### Architecture

Pre-signed transactions: All wallets sign before any broadcast
Multi-RPC broadcast: Every signed tx sent to all endpoints simultaneously
Raw JSON-RPC: Bypasses ethers.js overhead for sends
Nanosecond timing: process.hrtime.bigint() for precise measurement
Configurable batch sizes: Control parallel signing load
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Olawoyin206
- Version: 1.0.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-03T21:33:20.830Z
- Expires at: 2026-05-10T21:33:20.830Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/stonebornbot)
- [Send to Agent page](https://openagent3.xyz/skills/stonebornbot/agent)
- [JSON manifest](https://openagent3.xyz/skills/stonebornbot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/stonebornbot/agent.md)
- [Download page](https://openagent3.xyz/downloads/stonebornbot)