crypto-mining-setup

crypto-mining-setup is a skill for Claude Code, Codex from kevinnft/ai-agent-skills. It costs 33 tokens per session (2,447 once invoked), scanned A, original, MIT.

Instructions for setting up cryptocurrency mining, including AI-based challenges and traditional proof-of-work computation.

In plain words
What is it for?
It is for configuring mining protocols, deploying agents, setting a wallet address, and analyzing or improving mining performance.
Why use it?
It brings together the wallet, protocol, deployment, and performance steps needed to start a mining operation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit It is for configuring mining protocols, deploying agents, setting a wallet address, and analyzing or improving mining performance.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kevinnft/ai-agent-skills/crypto-mining-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kevinnft/ai-agent-skills --skill crypto-mining-setup
Clone the repo
git clone --depth 1 https://github.com/kevinnft/ai-agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for crypto-mining-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevinnft/ai-agent-skills/crypto-mining-setup/github.svg)](https://agentmods.dev/skills/kevinnft/ai-agent-skills/crypto-mining-setup)
Your own site
<a href="https://agentmods.dev/skills/kevinnft/ai-agent-skills/crypto-mining-setup"><img src="https://agentmods.dev/badge/skills/kevinnft/ai-agent-skills/crypto-mining-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for crypto-mining-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/kevinnft/ai-agent-skills/crypto-mining-setup"><img src="https://agentmods.dev/badge/skills/kevinnft/ai-agent-skills/crypto-mining-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,447 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00033 $0.02447
Opus 5 $0.00016 $0.01223
Sonnet 5 $0.00007 $0.00489
Haiku 4.5 $0.00003 $0.00245

Measured 6d ago against content hash d5131e3c9904, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

crypto-mining-setup scanned grade A with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

resp = requests.get(url, headers=headers, timeout=60) # NOT 10!

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

subprocess.Popen([
skills/mlops/crypto-mining-setup/SKILL.md · 385 lines

How it starts

The opening of the file, as written. The whole thing — 385 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Crypto Mining Setup & Optimization

Setup cryptocurrency mining operations with focus on AI-powered mining protocols, parallel agent deployment, and performance optimization strategies.

Supported Mining Types

1. AI-Powered Mining (soul.md protocol)

  • Example: $NOCOIN mining on Base network
  • Method: AI agents solve natural-language challenges
  • Rewards: On-chain credits redeemable for tokens
  • Key advantage: Server-side mining (zero local resources)
  • Reference: references/nocoin-soul-protocol.md

2. Traditional PoW Mining (Ethereum)

  • Example: HASH256 browser/CLI mining
  • Method: CPU/GPU keccak256 hashrate computation
  • Rewards: Direct token rewards via smart contract
  • Key advantage: Proven, immediate on-chain payouts
  • Reference: references/ethereum-pow-mining.md — Contract interaction, ABI extraction, profitability analysis, optimization strategies

Setup Workflow

Phase 1: Protocol Installation

  1. Load mining protocol (e.g., soul.md)

    • Copy protocol verbatim into agent working memory
    • Configure wallet address (AGENT_ETH_ADDRESS)
    • Verify all prerequisites met
  2. Environment setup

    export AGENT_ETH_ADDRESS="0x..."
    echo 'export AGENT_ETH_ADDRESS="0x..."' >> ~/.bashrc
    
  3. Protocol verification

    • Check metadata/frontmatter present
    • Verify security rules included
    • Confirm mining loop documented

Phase 2: Miner Deployment

Single agent (baseline):

# Basic miner loop
while True:
    challenge = get_challenge(address)
    solution = solve_challenge(challenge)
    submit_receipt(challenge_id, solution)

Multi-agent (parallel optimization):

# Spawn N agents with same address
for i in range(NUM_AGENTS):
    subprocess.Popen([
        "python3", "miner.py"
    ], stdout=open(f"agent_{i}.log", 'w'))

Phase 3: Optimization

Speedup strategies:

  1. Parallel agents — 5 agents = 5x speedup
  2. Faster inference — Optimize LLM solve time
  3. Reduce latency — Connection pooling, HTTP/2
  4. Stake for multipliers — Higher tier = higher rewards per solve

Read the full file on GitHub · 385 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 385 lines · 33 tokens per session scan A d5131e3c9904

Subscribe to this mod's changes

crypto-mining-setup is a skill published in the GitHub repository kevinnft/ai-agent-skills (13 stars, last pushed 1mo ago), licensed MIT. It adds 33 tokens to every session and 2,447 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

blockchain-bitcoin

Use this skill when asked about Bitcoin internals, Bitcoin Core, Bitcoin Script, Taproot, mining, Proof of Work, Lightning Network, BIP standards, Ordinals, BRC-20, Runes, Bitcoin L2s (Stacks, RSK, Babylon), and Bitcoin protocol development. Languages: C++, Rust, Python, Clarity. Covers Bitcoin Core C++ implementation…

j4flmao/agent-skills · 232 tokens

rootdata-crypto-plugin

RootData is a leading Web3 data platform covering crypto projects, investors, funding data, and personnel movements. This skill is the OKX-dedicated integration, isolated from the standard RootData skill with its own API key namespace and endpoints.

okx/plugin-store · 55 tokens

crypto-market-snapshot

Crypto market state and post-move diagnosis, combining price, 24h stats, funding, open interest and liquidations in one call, plus whale flow and news sentiment via companion tools. Use when the user asks the current price or 24h stats of a coin, what is happening in the crypto market right now, why a coin is moving…

CoinLobster/agent-skills · 181 tokens

crypto-liquidations

Crypto liquidations from two separate worlds: perp liquidations from the centralized futures venues that publish a liquidation feed plus Hyperliquid, with the long vs short breakdown and an hourly series, and DeFi lending liquidations on Aave V3 and Morpho Blue across Ethereum, Arbitrum and Base where both wallets are…

CoinLobster/agent-skills · 153 tokens

whale-radar

Which coins have unusual whale flow right now, plus the track record of past signals (fired flags scored against what price actually did next). Use when the user asks which coins have unusual whale activity, what is unusual in crypto today, which coins smart money is rotating into, whether a whale signal or flag has…

CoinLobster/agent-skills · 85 tokens

whale-flow

Live crypto whale trades and net buy/sell flow across 15 exchanges plus Ethereum, Base and Arbitrum DEXs. Use when the user asks what whales or smart money are doing on a specific named coin: large trades, buy or sell flow, or who is accumulating or dumping BTC, ETH, SOL or any coin. For screening which coins look…

CoinLobster/agent-skills · 102 tokens