Synced from monorepo
Synced from monorepo Changes: - Release a shell session's resources in one drop - Make the tools blocking-wait cap client-configurable and self-describing - Recognize API "exceeds budget" errors as context overflow - Retry /btw on model overload - Carry running background tasks and subagents across compaction - Require round-trip time for SDK liveness checks - Background-subagent completion reminders with a selectable delivery surface - Make a PTY shell reap itself until it reaches the registry - Recover the OS error code from a TLS-phase connection reset - Consume the attached-client signal and report why idle is withheld - Treat `.grok/sandbox.toml` edits as protected so auto mode prompts before writing - Surface history/search in the Ctrl+. cheatsheet and keep it working in history view - Delete sessions from the dashboard and welcome list - Release a session's activity record when the session ends - Stop charging auth-retry budget for fail-closed 401s; reset it across suspends - Scope skills watches on project vendor roots - Make [stop] cancel in-flight compaction - Make the leader soak measure the leader, not its harness Source-Revision: 8d69c91f02bcacf01e98d5aebbf2f92547c45738
This commit is contained in:
parent
dd04f397b1
commit
a422116582
165 changed files with 15161 additions and 1969 deletions
|
|
@ -128,6 +128,7 @@ criterion = "0.6"
|
|||
crossbeam = "0.8"
|
||||
crossterm = "0.28"
|
||||
cryptify = "3.2"
|
||||
ctor = "0.4"
|
||||
dashmap = "6"
|
||||
derive_more = { version = "2", features = ["add", "add_assign", "debug", "deref", "deref_mut", "display", "from", "from_str", "into", "into_iterator", "try_into"] }
|
||||
dhat = "0.3"
|
||||
|
|
@ -135,6 +136,7 @@ dirs = "5.0"
|
|||
documented = "0.9"
|
||||
dunce = "1"
|
||||
educe = "0.6.0"
|
||||
encoding_rs = "0.8.35"
|
||||
enum_delegate = "0.2"
|
||||
env_logger = "0.11"
|
||||
eventsource-stream = "0.2"
|
||||
|
|
@ -168,6 +170,7 @@ infer = "0.19.0"
|
|||
insta = "1"
|
||||
itertools = "0.14"
|
||||
jsonschema = "0.30.0"
|
||||
kamadak-exif = "0.5"
|
||||
libc = "0.2"
|
||||
linkify = "0.10"
|
||||
lipsum = "0.9"
|
||||
|
|
@ -224,6 +227,7 @@ serde_json = "1"
|
|||
serde_path_to_error = "0.1"
|
||||
serde_yaml = "0.9"
|
||||
serial_test = "3"
|
||||
sha1 = "0.10"
|
||||
sha2 = { version = "0.10", features = ["force-soft"] }
|
||||
shlex = "1"
|
||||
signal-hook = "0.3"
|
||||
|
|
@ -263,6 +267,7 @@ tracing-subscriber = { version = "0.3.23", default-features = false, features =
|
|||
ts-rs = "12.0"
|
||||
tui-scrollbar = "0.2"
|
||||
two-face = { version = "0.4", default-features = false, features = ["syntect-fancy"] }
|
||||
unicode-normalization = "0.1"
|
||||
unicode-segmentation = "1.12.0"
|
||||
unicode-width = "0.2"
|
||||
url = "2"
|
||||
|
|
@ -328,6 +333,7 @@ xai-tool-types = { path = "crates/common/xai-tool-types" }
|
|||
xai-tracing = { path = "crates/common/xai-tracing" }
|
||||
xai-tty-utils = { path = "crates/codegen/xai-tty-utils" }
|
||||
zbus = { version = "5" }
|
||||
zip = "3"
|
||||
zstd = "0.13"
|
||||
|
||||
[profile.release]
|
||||
|
|
|
|||
Loading…
Reference in a new issue