Browse available AWP worknets
Uses awp
Use the awp skill to browse available AWP worknets and give me a concise summary of the options shown.

This skill delivers the full AWP protocol lifecycle inside a single agent—wallet setup, gasless registration, staking and allocation, worknet management, agent binding, and DAO voting. It is built for miners and agent operators on Base, Ethereum, Arbitrum, and BSC who need to register for free, pick a worknet, and start earning without manually constructing transactions or maintaining separate tools. Every write operation runs through bundled scripts that handle signing, gas routing, and error recovery, so the protocol stays accessible even for users new to on-chain work.
Follow the documented setup, then try a first task.
Installs: Installs the complete AWP skill; the AWP Wallet dependency is installed on first load if missing.
Run this command in a terminal.
skill install https://github.com/awp-core/awp-skill
Installs: Installs the complete AWP skill and its AWP Wallet CLI dependency for use by another skill, makes the wallet executable discoverable in the current shell, and initializes a fresh agent work wallet.
Run this complete sequence in a terminal. Wallet initialization is non-interactive and generates a fresh internal keypair; do not provide a password, private key, seed phrase, PIN, passphrase, or other secret.
# 1. Install awp-skill itself
skill install https://github.com/awp-core/awp-skill
# 2. Install the awp-wallet CLI dependency
skill install https://github.com/awp-core/awp-wallet
# 3. Make the wallet binary discoverable. Installers commonly drop it in
# ~/.local/bin / ~/.npm-global/bin / ~/.yarn/bin, none of which are in PATH
# on a fresh shell. Check all common locations:
WALLET_BIN="$(command -v awp-wallet 2>/dev/null \
|| ls -1 "$HOME/.local/bin/awp-wallet" "$HOME/.npm-global/bin/awp-wallet" \
"$HOME/.yarn/bin/awp-wallet" "/usr/local/bin/awp-wallet" 2>/dev/null \
| head -n1)"
if [ -n "$WALLET_BIN" ] && ! command -v awp-wallet >/dev/null 2>&1; then
export PATH="$(dirname "$WALLET_BIN"):$PATH"
fi
# 4. Initialize the wallet (see the critical warning below before running)
awp-wallet initUses awp
Use the awp skill to browse available AWP worknets and give me a concise summary of the options shown.