AGNT-04: Push config-update to agents via SSE with Ed25519 signature #16
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?
Server pushes
config-updateevents to agents via SSE atGET /api/v1/agents/{id}/events. Payload includes{config, version, timestamp, targetTags, signature}where signature is Ed25519 over canonical JSON of config + version + timestamp. Config targets agents by tags (e.g.,{"env": "production"}).Category: Agent Management
REQ-ID: AGNT-04
Implemented in Phase 3.
SseConnectionManagerpushes config-update events via SseEmitter.SsePayloadSignersigns all command payloads with Ed25519; signature included assignaturefield in JSON. Key files:SseConnectionManager.java,SsePayloadSigner.java.