/SKILL.md
# RustChain MCP Skill: Ecosystem Intelligence This skill allows Claude Code to interact with the RustChain blockchain, monitor the network, and hunt for bounties. ## Setup 1. **Install the MCP Server** ```bash pip install rustchain-mcp ``` 2. **Configure Claude Desktop/Code** Add the following to your configuration: ```json { "mcpServers": { "rustchain": { "command": "rustchain-mcp", "args": ["--api-key", "your-api-key"] } } }
npx skillsauth add scottcjn/rustchain-mcp rustchain-mcpInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill allows Claude Code to interact with the RustChain blockchain, monitor the network, and hunt for bounties.
Install the MCP Server
pip install rustchain-mcp
Configure Claude Desktop/Code Add the following to your configuration:
{
"mcpServers": {
"rustchain": {
"command": "rustchain-mcp",
"args": ["--api-key", "your-api-key"]
}
}
}
To identify high-value opportunities, the agent should use a strategic sequence:
bounty_search with keyword="bug" or min_rtc=50 to find potential targets.contributor_lookup to see if the target is already dogpiled.rustchain_epoch to determine the current reward cycle and payout window.For managing an agent's financial state on-chain:
wallet_create to generate a new RTC wallet.wallet_balance to check current holdings and confirm reward arrivals.wallet_list to manage multiple agent personas.This skill follows the la-standard for agent deliverables.
For verification purposes, this example was created using the wallet: yoshi-bounty-hunter-2026
tools
# RustChain MCP Skill This skill enables Claude Code to autonomously hunt for bounties, manage RTC wallets, and monitor the RustChain network. ## Setup 1. **Install the MCP Server** ```bash pip install rustchain-mcp ``` 2. **Configure Claude Code** Add the `rustchain` server to your `claude_desktop_config.json`: ```json { "mcpServers": { "rustchain": { "command": "rustchain-mcp", "args": ["--api-key", "your-api-key"] } } } ```
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------