WAVS Claude Code Template
This template is based on the WAVS Foundry Template with modifications for use with Claude Code. This is an experimental template for building one-shot components.
Warning
Experimental Use Only: This template is designed for experimentation with Claude Code and one-shot components. Due to inconsistencies in Claude Code's behavior, some components may have errors and may not work as expected in one-shot prompts. This template is not intended for production use. Use at your own risk and for experimental purposes only.
-
Follow the instructions to set up an account and install Claude Code: Claude Code installation
-
Clone this repo:
git clone https://github.com/Lay3rLabs/WAVS-Claude-Template.git
cd WAVS-Claude-Template
- Follow all of the setup instructions in the next section:
Core (Docker, Compose, Make, JQ, Node v21+)
- MacOS:
brew install --cask docker
- Linux:
sudo apt -y install docker.io
- Windows WSL: docker desktop wsl &
sudo chmod 666 /var/run/docker.sock
- Docker Documentation
- MacOS: Already installed with Docker installer
- Linux + Windows WSL:
sudo apt-get install docker-compose-v2
- Compose Documentation
- MacOS:
brew install make
- Linux + Windows WSL:
sudo apt -y install make
- Make Documentation
- MacOS:
brew install jq
- Linux + Windows WSL:
sudo apt -y install jq
- JQ Documentation
- Required Version: v21+
- Installation via NVM
Rust v1.84+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup toolchain install stable
rustup target add wasm32-wasip2
# Remove old targets if present
rustup target remove wasm32-wasi || true
rustup target remove wasm32-wasip1 || true
# Update and add required target
rustup update stable
rustup target add wasm32-wasip2
Cargo Components
# Install required cargo components
# https://github.com/bytecodealliance/cargo-component#installation
cargo install cargo-binstall
cargo binstall cargo-component warg-cli wkg --locked --no-confirm --force
# Configure default registry
wkg config --default-registry wa.dev
Install the required packages to build the Solidity contracts. This project supports both submodules and npm packages.
# Install packages (npm & submodules)
make setup
# Build the contracts
forge build
# Run the solidity tests
forge test
After following all setup instructions and installing Claude Code, you are ready to make a component!
- In the root of your project, run the following command to start Claude Code:
claude
- Enter your one-shot prompt. In this example, we're creating a component that can check how many times a Warpcast user has used the word EigenLayer in a post. You can see the finished component here: https://github.com/Lay3rLabs/WAVS-Claude-Template/tree/warpcast-eigenlayer-tracker
Let's make a new component that takes the input of a warpcast username (like dabit3), counts the number of times they have mentioned EigenLayer, and returns that number and the user's wallet address.
Make sure you handle endpoint responses and cast data correctly:
- https://hoyt.farcaster.xyz:2281/v1/userNameProofByName?name=dabit3
- https://hoyt.farcaster.xyz:2281/v1/castsByFid?fid=235510
-
Claude will start creating your component. Review Claude's work and accept changes that Claude makes. Make sure to double check what Claude is doing and be safe about accepting changes.
-
Claude will make a new component and files, and run validation tests on the component using the
make validate-component COMPONENT=your-component
command. -
Claude may need to make changes after running the Validation tests. After making changes, Claude will build the component using the
make wasi-build
command. -
After successfully building your component, it's time to test it. The following command can be used to test your component logic without deploying WAVS. Make sure to replace the placeholders with the correct inputs.
# This is the input data passed to your component
export TRIGGER_DATA_INPUT=`cast abi-encode "f(string)" "your parameter here"`
# The name of your compiled component
export COMPONENT_FILENAME=your_component_name.wasm
# If you are using an API key, make sure it is properly set in your .env file
export SERVICE_CONFIG="'{\"fuel_limit\":100000000,\"max_gas\":5000000,\"host_envs\":[],\"kv\":[],\"workflow_id\":\"default\",\"component_id\":\"default\"}'"
# IMPORTANT: Claude can't run this command without system permission. It is always best for the user to run this command.
make wasi-exec
Claude may try to run the make wasi-exec
command themselves. You should prompt Claude to give you the command instead, as Claude can't run it without permissions.
Warning
If you get: error: no registry configured for namespace "wavs"
run, wkg config --default-registry wa.dev
Warning
If you get: failed to find the 'wasm32-wasip1' target and 'rustup' is not available
brew uninstall rust
& install it from https://rustup.rs
- Your component should execute. If there are any errors, share them with Claude for troubleshooting.
- While this repo contains a claude.md file with enough context for creating simple components, Claude Code may inevitably run into problems.
- Feel free to update claude.md for your specific purposes or if you run into regular errors.
- Claude can sometimes try to over-engineer its fixes for errors. If you feel it is not being productive, delete the component, clear claude with
/clear
, and try again. You may need to adjust your prompt. - If you are building a complex component, it may be helpful to have Claude build a simple component first and then expand upon it.
- Claude may try to fix warnings unnecessarily. You can Tell Claude to ignore minor warnings and any errors found in bindings.rs (it is auto-generated).
This repo is designed to be used with short prompts for simple components. However, often times, Claude will do better with more context.
- Provide relevant documentation (preferably as an
.md
file or other ai-digestible content). - Provide endpoints.
- You may need to provide API response structure if Claude is just not understanding responses.
- Be specific about what you want Claude to build.
- Be patient.
The /examples
directory contains multiple one-shot examples built by Claude. These serve as a knowledge base for Claude. Explore the examples for ideas, or try to build one of the examples yourself. Remember to delete the example that you want to build before prompting Claude, otherwise it may just copy it directly.
Note
If you are running on a Mac with an ARM chip, you will need to do the following:
- Set up Rosetta:
softwareupdate --install-rosetta
- Enable Rosetta (Docker Desktop: Settings -> General -> enable "Use Rosetta for x86_64/amd64 emulation on Apple Silicon")
Configure one of the following networking:
- Docker Desktop: Settings -> Resources -> Network -> 'Enable Host Networking'
brew install chipmk/tap/docker-mac-net-connect && sudo brew services start chipmk/tap/docker-mac-net-connect
Start an Ethereum node (anvil), the WAVS service, and deploy eigenlayer contracts to the local network.
cp .env.example .env
# Start the backend
#
# This must remain running in your terminal. Use another terminal to run other commands.
# You can stop the services with `ctrl+c`. Some MacOS terminals require pressing it twice.
make start-all
Upload your service's trigger and submission contracts. The trigger contract is where WAVS will watch for events, and the submission contract is where the AVS service operator will submit the result on chain.
export SERVICE_MANAGER_ADDR=`make get-eigen-service-manager-from-deploy`
forge script ./script/Deploy.s.sol ${SERVICE_MANAGER_ADDR} --sig "run(string)" --rpc-url http://localhost:8545 --broadcast
Tip
You can see the deployed trigger address with make get-trigger-from-deploy
and the deployed submission address with make get-service-handler-from-deploy
Deploy the compiled component with the contracts from the previous steps. Review the makefile for more details and configuration options.TRIGGER_EVENT
is the event that the trigger contract emits and WAVS watches for. By altering SERVICE_TRIGGER_ADDR
you can watch events for contracts others have deployed.
# Your component filename in the `/compiled` folder
export COMPONENT_FILENAME=warpcast_checker.wasm
# Your service config. Make sure to include any necessary variables.
export SERVICE_CONFIG="'{\"fuel_limit\":100000000,\"max_gas\":5000000,\"host_envs\":[],\"kv\":[],\"workflow_id\":\"default\",\"component_id\":\"default\"}'"
TRIGGER_EVENT="NewTrigger(bytes)" make deploy-service
Anyone can now call the trigger contract which emits the trigger event WAVS is watching for from the previous step. WAVS then calls the service and saves the result on-chain.
export TRIGGER_DATA_INPUT=dabit3
export SERVICE_TRIGGER_ADDR=`make get-trigger-from-deploy`
forge script ./script/Trigger.s.sol ${SERVICE_TRIGGER_ADDR} ${TRIGGER_DATA_INPUT} --sig "run(string,string)" --rpc-url http://localhost:8545 --broadcast -v 4
Query the latest submission contract id from the previous request made.
# Get the latest TriggerId and show the result via `script/ShowResult.s.sol`
make show-result