Agent skill

node-operations

Blockchain node deployment and operations. Supports Ethereum execution and consensus clients, validator operations, node monitoring, MEV-Boost configuration, and archive node management.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill node-operations --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Allowed tools: ReadGrepWriteBashEditGlobWebFetch
Path: library/specializations/cryptography-blockchain/skills/node-operations/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Blockchain Node Operations Skill Expert blockchain node deployment and operations for Ethereum and EVM-compatible networks. ## Capabilities - **Execution Clients**: Deploy Geth, Nethermind, Besu, Erigon - **Consensus Clients**: Configure Prysm, Lighthouse, Teku, Lodestar - **Validator Operations**: Set up validators with proper key management - **Monitoring**: Monitor sync status and performance - **MEV-Boost**: Configure for validators - **Archive Nodes**: Set up archive nodes for indexing - **Migrations**: Handle node upgrades and migrations ## Execution Client Setup ### Geth Installation ```bash # Install Geth sudo add-apt-repository -y ppa:ethereum/ethereum sudo apt-get update sudo apt-get install ethereum # Or download binary wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.13.0-xxx.tar.gz tar -xvf geth-linux-amd64-*.tar.gz sudo mv geth-linux-amd64-*/geth /usr/local/bin/ ``` ### Geth Configuration ```bash # Create data directory mkdir -p /var/lib/geth # Create service file cat > /etc/systemd/system/geth.service << EOF [Unit] Description=Geth Execution Client After=network.target Wants=network.target [Service] User=geth Group=geth Type=simple Restart=alw

What's inside
Steps it walks through
  1. Capabilities
  2. Execution Client Setup
  3. Geth Installation
  4. Geth Configuration
  5. Nethermind Configuration
  6. Consensus Client Setup
  7. Lighthouse
  8. Prysm
  9. Validator Setup
  10. Key Generation
  11. Validator Client
  12. MEV-Boost Setup
  13. Monitoring
  14. Prometheus Configuration
Ships with 1 file
  • README.md
Commands it runs
Install Geth
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
Or download binary
wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.13.0-xxx.tar.gz
tar -xvf geth-linux-amd64-*.tar.gz
sudo mv geth-linux-amd64-*/geth /usr/local/bin/
Create data directory
mkdir -p /var/lib/geth
More from babysitter
All skills →
About this skill
What does the node-operations skill do?

Blockchain node deployment and operations. Supports Ethereum execution and consensus clients, validator operations, node monitoring, MEV-Boost configuration, and archive node management.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill node-operations --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going