From akash-network
Run an Akash Network full node or validator. Covers hardware and network requirements, full-node installation, state sync, becoming a validator, validator operations, slashing avoidance, key management (consensus key + operator key), monitoring, and sentry node patterns. Use for "Akash validator", "Akash full node", "Akash state sync", "Akash validator setup", "Akash sentry node", "Akash slashing", "Akash consensus key", "Akash node upgrade".
How this skill is triggered — by the user, by Claude, or both
Slash command
/akash-network:akash-nodeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill covers running an Akash full node and (optionally) operating it as a validator: installation, state sync, validator setup, security, and day-to-day operations.
This skill covers running an Akash full node and (optionally) operating it as a validator: installation, state sync, validator setup, security, and day-to-day operations.
For deploying workloads to Akash, use the akash-network:akash skill. For running an Akash provider (the compute supply side), use akash-network:akash-provider.
akashvaloper1...) and a consensus public key.akash1... → akashvaloper1...). Used for staking, claiming rewards, editing the validator description.priv_validator_key.json. Compromise = double-sign risk.uakt) — chain token. What validators care about. All gas (--gas-prices, minimum-gas-prices), staking (create-validator --amount, delegate, redelegate, unbond), self-bond, slashing, and validator rewards are denominated in uakt. 1 AKT = 1,000,000 uakt.uact) — deployment-payment token. Used by deployers for SDL pricing and lease payments; validators normally don't touch this directly. Mentioned here only so you don't confuse it with uakt when reading deployer-side docs.For deployer-side terminology, see akash-network:akash's rules/terminology.md.
akash binary install, genesis, configcreate-validator transaction, initial bond, configurationpriv_validator_key.json. But also: protect it like a private key. Encrypt at rest, restrict to one user, never log it.v2.1.0 exactly. See @rules/validator/operations.md.minimum-gas-prices correctly. Validators that accept zero-fee transactions get spammed.peers ──► full node ──► RPC clients
Simple. No consensus, no validator. Good for query-serving infrastructure or local development.
peers ──► sentry 1 ──┐
peers ──► sentry 2 ──┼──► validator (no public p2p)
peers ──► sentry 3 ──┘ │
consensus
Sentries proxy p2p; the validator only connects to its own sentries. Hides validator IP, reduces attack surface.
validator host ──► tmkms (signing service) ──► HSM / YubiHSM
priv_validator_key.json is never on disk; signing requests are proxied to a hardware module. Industry standard for high-stake validators.
# Install (Linux x86_64)
curl -sSfL https://raw.githubusercontent.com/akash-network/node/main/install.sh | sh
# Initialize a node
akash init <moniker> --chain-id akashnet-2
# Start
akash start
# Check status
akash status
# Validator info
akash query staking validator <akashvaloper1...>
# Stake more
akash tx staking delegate <akashvaloper1...> 1000000uakt \
--from <key-name> --gas auto --gas-adjustment 1.3
# Unjail (after downtime)
akash tx slashing unjail --from <operator-key>
akash-network:akash — Deployer skill. Useful background if you also use deployments on the network you operate.akash-network:akash-provider — Provider operations. Different role, but providers must be able to talk to a full node (their own or another's).Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub akash-network/akash-skill --plugin akash-network