animica-mining

animica-mining is a skill for Claude Code from animicaorg/animica-mcp. It costs 55 tokens per session (698 once invoked), scanned A, original, Apache-2.0.

A setup and monitoring workflow for mining ANM, the Animica blockchain's cryptocurrency, through a shared pool or solo mining.

In plain words
What is it for?
Use it to start a miner, choose pooled or solo mining, view pool and network hashrate, list miners, and inspect recent blocks and payouts.
Why use it?
It provides the pool connection details and commands needed to start mining and check whether miners, payouts, and network activity are working.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the animica plugin — 6 skills, 1 MCP server shipped together

Good fit Use it to start a miner, choose pooled or solo mining, view pool and network hashrate, list miners, and inspect recent blocks and payouts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/animicaorg/animica-mcp/animica-mining
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 animicaorg/animica-mcp --skill animica-mining
Clone the repo
git clone --depth 1 https://github.com/animicaorg/animica-mcp

Made for: Claude Code.

Or install animica, the plugin that ships this one along with the rest of its 6 skills, 1 MCP server.

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 animica-mining

README.md
[![agentmods](https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-mining/github.svg)](https://agentmods.dev/skills/animicaorg/animica-mcp/animica-mining)
Your own site
<a href="https://agentmods.dev/skills/animicaorg/animica-mcp/animica-mining"><img src="https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-mining/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 animica-mining

Your own site · 80×15
<a href="https://agentmods.dev/skills/animicaorg/animica-mcp/animica-mining"><img src="https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-mining.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 698 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00055 $0.00698
Opus 5 $0.00028 $0.00349
Sonnet 5 $0.00011 $0.00140
Haiku 4.5 $0.00006 $0.00070

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

Security

Grade A, and why

animica-mining scanned grade A with 1 finding 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 10d 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.

curl -s https://pool.animica.org/api/pool/summary # pool mode (pps), height, hashrates,
skills/animica-mining/SKILL.md · 52 lines

How it starts

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

Mine Animica and read pool stats

Pool: https://pool.animica.org (mainnet). Payouts in ANM only; amounts in the APIs are base units (1 ANM = 10^9).

Stratum endpoints

  • stratum+tcp://pool.animica.org:3333 — pooled mining, PPS with sub-block shares (non-finders get paid)
  • stratum+tcp://pool.animica.org:3334 — solo mode: 95% of each block you find goes to you, 5% pool fee

CLI quickstart (verified from pool.animica.org)

pip install --upgrade animica
animica up

animica up auto-creates an Animica wallet, downloads the right binaries for your OS, and starts PoW mining + AI useful-work (training/serving) in one process — no payout config needed. GUI miner downloads are on the pool site.

To mine to a specific existing address, point any stratum-capable miner at the endpoints above with your anim1… address as the user/worker identity.

Pool stats REST API (free, no auth)

curl -s https://pool.animica.org/api/pool/summary   # pool mode (pps), height, hashrates,
                                                    # block subsidy + upcoming reward-split params
curl -s https://pool.animica.org/api/pool/network   # network hashrate estimates (share_work + node theta)
curl -s https://pool.animica.org/api/miners         # per-worker: address, hashrate_1m/15m/1h, last_share_at
curl -s https://pool.animica.org/api/blocks/recent  # recent blocks: height, reward (base units), worker, address
curl -s https://pool.animica.org/v1/pool/status     # stratum URL, connected_miners, payout schedule

Example (/v1/pool/status, live):

{"host":"pool.animica.org","port":3333,"stratum_url":"stratum+tcp://pool.animica.org:3333",
 "connected_miners":2,"network":"mainnet","synced":true,"payouts_enabled":true,
 "payout_interval_seconds":900.0,"next_payout_at":"…"}

Full platform API is documented with Swagger at https://pool.animica.org/api/docs (spec: /api/openapi.json).

Notes

  • Network hashrate is also available from the node: RPC chain.getNetworkHashrate, or explorer https://explorer.animica.org/api/mining/info.
  • Running your own pool: operator runbook at https://pool.animica.org/setup (architecture, pool.env, fees, payout scheduler).
  • Mining is one of the standard ways to acquire ANM, alongside trading on NonKYC (https://nonkyc.io/market/ANM_USDT) and accepting payments via pay.animica.dev.

Read the full file on GitHub · 52 lines

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. 10d ago First seen · 52 lines · 55 tokens per session scan A 2e0220ff31c7

Subscribe to this mod's changes

animica-mining is a skill published in the GitHub repository animicaorg/animica-mcp (0 stars, last pushed 27d ago), licensed Apache-2.0. It adds 55 tokens to every session and 698 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

fintech-expert

Expert in financial technology, payment processing, open banking APIs, PSD2, blockchain in finance, robo-advisors, and RegTech. Use when the user mentions payments, open banking, PSD2, blockchain, cryptocurrency, or robo advisor, or when the task involves Payment Processing, Blockchain in Finance, Payment Security, or…

personamanagmentlayer/pcl · 73 tokens

dero

Query the DERO privacy blockchain and its documentation through the dero-mcp-server. Use for any DERO ecosystem question — node setup, smart contracts (DVM-BASIC), wallets, TELA apps, RPC methods, ports, privacy mechanics, transaction tracing, contract inspection.

DHEBP/dero-mcp-server · 59 tokens

tinyplace-agent

Use when an agent needs to join tiny.place, create or unlock a self-custodied Solana wallet, on-ramp or off-ramp USDC with MoonPay, buy a tiny.place @handle domain, publish an A2A directory card, poll inbox/messages/activity, or register a Hermes cron loop for platform updates.

tinyhumansai/tiny.place · 70 tokens

aelf-node-skill

AElf node querying and contract execution skill for agents.

AElfProject/aelf-node-skill · 17 tokens

drpc-rpc

Use when the user needs blockchain data (balances, transactions, blocks, gas prices, contract reads), wants to set up blockchain RPC access, or mentions DRPC, Web3, or Ethereum RPC. Also triggers on specific method names like ethgetBalance, ethcall, ethgetLogs.

drpcorg/drpc-agent-skills · 63 tokens

drpc-rpc-pi

Pi Agent-specific DRPC setup flow. Use alongside drpc-rpc when the user asks for blockchain data, DRPC setup, x402 API-key acquisition, Coinbase Payments MCP, pi-mcp-adapter, or when DRPC MCP is not configured in Pi.

drpcorg/drpc-agent-skills · 60 tokens