AGNT-01: Agent registration with bootstrap token, returns JWT #13
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Agent registers via
POST /api/v1/agents/registerwithX-Bootstrap-Tokenheader. Server validates againstCAMELEER_AUTH_TOKENenv var and returns{agentId, accessToken, refreshToken, serverPublicKey, config, configVersion}.Category: Agent Management
REQ-ID: AGNT-01
Implemented in Phase 3.
POST /api/v1/agents/registervalidates bootstrap token, returns JWT access token, refresh token, and Ed25519 server public key. Key files:AgentRegistrationController.java,JwtTokenService.java,BootstrapTokenValidator.java.