Type Alias AgentPlayCredentialsFile

AgentPlayCredentialsFile: {
    agentNodes?: AgentPlayAgentNodeEntry[];
    nodeId: string;
    passw: string;
    secretFilePath?: string;
    serverUrl: string;
}

Shape of ~/.agent-play/credentials.json written by agent-play (create-main-node, create-agent-node).

passw is the human-readable passphrase as displayed during creation. The CLI and SDK never send this value over the wire; they hash it locally with nodeCredentialsMaterialFromHumanPassphrase (or, in convenience helpers, via nodeCredentialFromHumanPhrase) and forward only the resulting passwHash to the server.