From 1afa250203ea5efcc68f6c5959c2a9cf80525164 Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Mon, 20 Jul 2026 17:35:58 +0100 Subject: [PATCH] feat: More verbose logging on workflow logs --- proto/vantage/v1/vantage.proto | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/proto/vantage/v1/vantage.proto b/proto/vantage/v1/vantage.proto index 32935c5..0ff68fa 100644 --- a/proto/vantage/v1/vantage.proto +++ b/proto/vantage/v1/vantage.proto @@ -92,9 +92,16 @@ message ServerCommand { UpdateAgentCmd update_agent = 4; ApplyUpdatesCmd apply_updates = 5; RunStepCmd run_step = 6; + CleanupWorkspaceCmd cleanup_workspace = 7; } } +// CleanupWorkspaceCmd tells the agent to recursively remove the run's working +// directory once all steps on that server have finished. +message CleanupWorkspaceCmd { + string workspace_id = 1; +} + message DeleteKeyCmd { string label = 1; } @@ -117,6 +124,7 @@ message RunStepCmd { string script = 2; map env = 3; int32 timeout_seconds = 4; + string workspace_id = 5; // per-run working dir the agent creates & uses as cwd } message StepResult {