feat(proto): add StepOutputChunk streaming message

This commit is contained in:
2026-07-20 12:34:32 +01:00
parent dc49f2d5eb
commit d0219def80
+8
View File
@@ -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<string, string> output_env = 5;
}
message StepOutputChunk {
string command_id = 1;
uint64 seq = 2;
bytes data = 3;
bool eof = 4;
}