syntax = "proto3"; message Empty {} message AgentInfo { string agentId = 1; } message InitResponse { string secretKey = 1; } service Initializer { rpc agentStarting(AgentInfo) returns (InitResponse) {} }