diff --git a/proto/vantage/v1/vantage.proto b/proto/vantage/v1/vantage.proto index f65b425..32935c5 100644 --- a/proto/vantage/v1/vantage.proto +++ b/proto/vantage/v1/vantage.proto @@ -56,6 +56,7 @@ message AgentMessage { AgentReady ready = 3; CommandResult result = 4; StepResult step_result = 5; + StepOutputChunk step_output = 6; } } @@ -125,3 +126,10 @@ message StepResult { string stderr = 4; map output_env = 5; } + +message StepOutputChunk { + string command_id = 1; + uint64 seq = 2; + bytes data = 3; + bool eof = 4; +}