Install
openclaw skills install agntcy-identity-cliAGNTCY Identity Issuer CLI and Node Backend for managing verifiable agent identities, metadata, and badges.
openclaw skills install agntcy-identity-cliUse the identity CLI to create, manage, issue, and verify
decentralized agent identities and badges within the AGNTCY ecosystem.
This tool enables:
Manage cryptographic vaults and signing keys:
identity vault connect file -f ~/.identity/vault.json -v "My Vault" identity vault key generate
Register and manage issuer configurations:
identity issuer register -o "My Organization" -c "$CLIENT_ID" -s "$CLIENT_SECRET" -u "$ISSUER_URL"
Generate and manage identity metadata:
identity metadata generate -c "$CLIENT_ID" -s "$CLIENT_SECRET" -u "$ISSUER_URL"
Issue and publish badges (Verifiable Credentials):
identity badge issue mcp -u http://localhost:9090 -n "My MCP Server" identity badge publish
Verify published badges:
identity verify -f vcs.json
Start locally using Docker:
git clone https://github.com/agntcy/identity.git cd identity ./deployments/scripts/identity/launch_node.sh
Or:
make start_node
~/.identity/vault.json can contain signing key material and should be treated as a high-value secret.
Use a dedicated test vault for evaluation; do not reuse production keys.CLIENT_SECRET is a high-value secret. Only provide it after you have reviewed the code/binaries you
will run and you are operating in a controlled environment.identity.go install github.com/agntcy/identity/cmd/issuer