blockchain-web3-orchestratorlisted
Install: claude install-skill Sheshiyer/skill-clusters
# Blockchain / Web3 Orchestrator
The single entry skill for EVM and prediction-market work. It places the task on the
**surface × concern** map — *what is touching value* (a contract, an autonomous agent, a market
signal) crossed with *which failure mode* (a silent correctness bug, an exploit, or an unreviewed
risk) — and delegates to one of six specialist spokes. The cross-cutting model every spoke shares
— the trust boundary, the value-at-risk hierarchy, and the units/hashing conventions that make
on-chain math correct — lives in `blockchain-web3-core`; read it before auditing a contract or
wiring an agent to a wallet.
## Routing map (intent → spoke)
**Smart-contract correctness & exploits**
- Auditing or writing a Solidity AMM / LP vault / swap flow → `defi-amm-security` *(reentrancy, CEI, donation/inflation, oracle manipulation, slippage, admin gating)*
- Reading balances / pricing / cross-chain amounts that could silently mis-scale → `evm-token-decimals` *(runtime `decimals()`, chain-aware caching, bridged drift)*
**Off-chain integration bugs (JS/TS)**
- Hashing Ethereum data, selectors, EIP-712, storage slots, addresses in Node → `nodejs-keccak256` *(Keccak-256 vs NIST SHA3 — the silent mismatch)*
**Autonomous execution & agents**
- An LLM/agent that signs or sends transactions, places orders, or touches a treasury → `llm-trading-agent-security` *(prompt injection as a financial attack, spend limits, pre-send simulation, circuit breakers, MEV, key isolation)*