Install
openclaw skills install @kakooch/whisper-identityGive this agent a real, routable IPv6 (/128) identity on the Whisper network, with safe egress and externally-verifiable identity (DNSSEC + RDAP). Keyless verification needs no account.
openclaw skills install @kakooch/whisper-identityGive this agent a real, routable IPv6 /128 address that is both its name and
its credential. Its traffic egresses from that address, and anyone can verify the
identity with stock dig and RDAP, with Whisper never in the trust path. The
address is a live /128 out of 2a04:2a01::/32, announced by AS219419.
# Is this IPv6 a real Whisper agent? Public RDAP + reverse DNS.
curl -s https://rdap.whisper.online/ip/<ipv6-address> | jq
dig -x <ipv6-address> +short
curl get.whisper.online | sh # install the whisper CLI
whisper login # or: export WHISPER_API_KEY=whisper_live_...
whisper agent create --name <agent-name> # mint the agent's /128 identity
whisper connect <agent-name> # local SOCKS5/HTTP egress bound to the /128
whisper run -- curl https://whisper.online/egress-ip # confirm traffic leaves from the /128
Then confirm from the outside:
dig -x <the-/128> +short # -> the agent's fully-qualified name
curl -s https://rdap.whisper.online/ip/<the-/128> | jq # -> the public record
/128 and egress need a
Whisper API key supplied as WHISPER_API_KEY (never hard-code it).