feat(proto): add StepOutputChunk streaming message

This commit is contained in:
2026-07-20 12:34:32 +01:00
parent b48467fb6e
commit 7a60295bc1
3 changed files with 34 additions and 10 deletions
+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;
}