Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
871860c
Open Harness Server subcommands
SSharma-10 May 28, 2026
958e531
Merge branch 'main' into feat/agents-subcommands
SSharma-10 May 29, 2026
616d41d
gofmt
SSharma-10 May 29, 2026
aa04f4c
Added changes
SSharma-10 Jun 3, 2026
bf8414c
add support to accept application/x-yaml
SSharma-10 Jun 4, 2026
ac9832f
merge main
SSharma-10 Jun 4, 2026
dc0e2f7
export deviceId
SSharma-10 Jun 5, 2026
b615ebf
typo fix
SSharma-10 Jun 5, 2026
33c43ca
agents: decode SPI event stream, surface API errors, ack input
logwolvy Jun 8, 2026
9e6b2c9
broaden the scope of X-Device-UUID
SSharma-10 Jun 10, 2026
fa756f9
Merge PR #1859: align doctl with SPI event wire + SendInput ack
SSharma-10 Jun 10, 2026
ba987b3
Merge branch 'main' into feat/agents-subcommands
SSharma-10 Jun 10, 2026
fecb9a1
Merge branch 'main' into feat/agents-subcommands
SSharma-10 Jun 11, 2026
c686ee2
in godo to v1.195.0-beta.1 for beta release
SSharma-10 Jun 11, 2026
3e50161
add filtering and pagination flag
SSharma-10 Jun 23, 2026
9f74841
Merge branch 'main' into feat/agents-subcommands
SSharma-10 Jun 24, 2026
e609a72
polish agents attach
SSharma-10 Jun 25, 2026
16d7945
support Multiple HITLs
SSharma-10 Jun 25, 2026
bad0686
add Upload and Download workspace files
SSharma-10 Jun 25, 2026
192887b
pin godo to v1.197.0-beta.1 for beta release
SSharma-10 Jun 25, 2026
3f2957f
fix(agents): dedupe thinking text, fix spinner double-render, and fri…
SSharma-10 Jun 26, 2026
7dd7590
displayers: drop SandboxID column from hosted-agent session output (#…
vrindavinod-do Jun 30, 2026
b796b59
Merge branch 'main' into feat/agents-subcommands
SSharma-10 Jul 1, 2026
019da71
vendor: add charmbracelet/glamour for agent markdown rendering
SSharma-10 Jul 1, 2026
7907c6d
feat(agents): styled markdown output and compact color-coded HITL menu
SSharma-10 Jul 1, 2026
f42a497
test fix
SSharma-10 Jul 1, 2026
f42ffd2
add support for agent session name
SSharma-10 Jul 2, 2026
5af6a2f
pin to godo-v1.197.0-beta.2
SSharma-10 Jul 2, 2026
5f6d674
Add support for pause and resume session
SSharma-10 Jul 3, 2026
1dbf855
gofmt fix
SSharma-10 Jul 3, 2026
eefd25f
Add support for session name
SSharma-10 Jul 6, 2026
885c0d1
bugfix-doctl agents list -o json emits a non-JSON
SSharma-10 Jul 6, 2026
318c22c
add support full HITL Request ID
SSharma-10 Jul 6, 2026
380b953
fix hosted agents workspace download when X-Content-Sha256 trailer is…
SSharma-10 Jul 7, 2026
5a19eaf
Merge branch 'main' into feat/agents-subcommands
SSharma-10 Jul 7, 2026
f9f85a8
auto-reconnect attach stream with Reconnecting... UX
SSharma-10 Jul 7, 2026
28cd5fb
fix help text for agents upload
SSharma-10 Jul 10, 2026
a1b1d3d
MARSOHS-340: fail agents attach fast on a terminal session (#1881)
vhrahulkumar Jul 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
26 changes: 26 additions & 0 deletions args.go
Original file line number Diff line number Diff line change
Expand Up @@ -925,4 +925,30 @@ const (
ArgInferenceText = "text"
// ArgInferenceSecondsTotal is the audio duration in seconds for async audio generation.
ArgInferenceSecondsTotal = "seconds-total"

// Hosted Agents Args

// ArgAgentSpec is the path to an agent spec file.
ArgAgentSpec = "spec"

// ArgAgentPageSize is the maximum number of sessions to return per page.
ArgAgentPageSize = "page-size"

// ArgAgentPageToken is the pagination cursor from a previous list response.
ArgAgentPageToken = "page-token"

// ArgAgentStatus filters sessions by lifecycle status.
ArgAgentStatus = "status"

// ArgAgentWorkspacePath is the path inside the session workspace root (/workspace).
ArgAgentWorkspacePath = "workspace-path"

// ArgAgentLocalFile is the local file streamed up during a workspace upload.
ArgAgentLocalFile = "local-file"

// ArgAgentSaveTo is the local destination for a workspace download.
ArgAgentSaveTo = "save-to"

// ArgAgentArchive treats the workspace payload as a tar archive.
ArgAgentArchive = "archive"
)
2,435 changes: 2,435 additions & 0 deletions commands/agents.go

Large diffs are not rendered by default.

Loading