Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f8e0485
Add validation guards for template cycles, duplicate IFS targets, and…
noise64 Jul 21, 2026
6f4bb7e
Add configurable agent stream ping interval
noise64 Jul 21, 2026
5b8c5ee
Update debug comments for task result marker fields to clarify usage
noise64 Jul 21, 2026
7a02b3f
cli healthcheck cleanups
noise64 Jul 21, 2026
b7a75bd
Add context to staging approval prompts with operation details, todo …
noise64 Jul 21, 2026
d72960e
Merge branch 'main' into cli-cleanups
noise64 Jul 21, 2026
0e77f0b
remove unused `OverwriteSafeAction` implementation and associated logic
noise64 Jul 21, 2026
ae6cb56
refactor `guess_language` to streamline logic using `GuestLanguage::f…
noise64 Jul 21, 2026
4ed590b
make `agent_name` non-optional in `WorkerCreateView` and update relat…
noise64 Jul 21, 2026
c77ec0d
use bail instead of unimplemented
noise64 Jul 21, 2026
1891da6
improve error context in `parse_cursor` with detailed validation for …
noise64 Jul 21, 2026
ecca8be
help cleanups
noise64 Jul 21, 2026
96ebfdf
cleanup WAVE :wave: comments
noise64 Jul 21, 2026
0ebcbcb
Merge remote-tracking branch 'origin/main' into cli-cleanups
noise64 Jul 23, 2026
e7da5e1
add structural agent ID formatting for terminal display and integrate…
noise64 Jul 27, 2026
6f2194c
validate component preset references and ensure proper error handling…
noise64 Jul 27, 2026
604f17d
clanups
noise64 Jul 27, 2026
c7b5b9b
cleanup
noise64 Jul 27, 2026
1a5e8fb
Merge remote-tracking branch 'origin/main' into cli-cleanups
noise64 Jul 27, 2026
ab6164c
add explicit `--auth` mode and improve static token handling in profi…
noise64 Jul 28, 2026
73620f3
unify structured output of bulk agent ops (update/redeploy/delete)
noise64 Jul 28, 2026
7f64fb9
unify the agent identifier as agentId in the output
noise64 Jul 28, 2026
267a0ba
rename agent_name to agent_id across the cli internals
noise64 Jul 28, 2026
a553d1c
drop auth-mode use-context framing from profile/token docs
noise64 Jul 29, 2026
10ff9b6
use OAuth2 variant with explicit oauth2 clap value in ProfileAuthMode
noise64 Jul 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ clap-verbosity-flag = { version = "3.0.4", features = ["tracing"] }
clap_complete = "4.5.66"
colored = "3.0.0"
colored-diff = "0.2.3"
comfy-table = "7.2.2"
# `custom_styling` makes comfy-table measure cell content with ANSI escapes
# stripped, which is required for cells that carry their own coloring.
comfy-table = { version = "7.2.2", features = ["custom_styling"] }
combine = "4.6.7"
conditional-trait-gen = "0.4.1"
console-subscriber = "0.5.0"
Expand Down
Loading
Loading