erigontech / erigon-build
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/erigon-build && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2315" && unzip -o skill.zip -d .claude/skills/erigon-build && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/erigon-build/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Build the Erigon binary using make. Use this when you need to compile erigon before running any erigon commands.
0 views
0 installs
Skill Content
--- name: erigon-build description: Build the Erigon binary using make. Use this when you need to compile erigon before running any erigon commands. allowed-tools: Bash --- # Build Erigon Binary Build the Erigon binary by running `make erigon` from the repository root. ## Build Command ```bash make erigon ``` This compiles the Erigon binary and places it at `./build/bin/erigon`. ## What the Build Does - Compiles the main Erigon executable - Sets version information from git (commit, branch, tag) - Applies appropriate CGO flags for the platform - Outputs binary to `build/bin/erigon` ## Prerequisites - Go (version specified in go.mod) - C compiler (gcc or clang) - Make ## After Building The binary will be available at: ``` ./build/bin/erigon ``` You can verify the build by running: ```bash ./build/bin/erigon --version ```