Synced from monorepo

Changes:
- grok-shell: request workspaces:read/write OAuth2 scopes
- security: fix SSRF bypass via HTTP redirect in hook runner
- fix(grok-build): enterprise STT WSS URL + API-key voice bearer
- Harden identity-change purge and sync-marker invariants
- sandbox + workspace-server: delete the legacy ready-file arm
- Show billing URL when browser cannot open
- fix(pager): show folder-trust UI in minimal mode
- fix(pager): drain task_backgrounded before no-wait headless exit
- grok-agent-sdk: stop SDK-spawned agents from staging self-updates they can never adopt
- Split settings_modal into directory module
- Delegate VS Code SSH file links
- grok-shell: release the workspace session binding when a session is removed
- keep skills reachable when their name collides with a client builtin
- Preserve semantic link targets
This commit is contained in:
grokkybara[bot] 2026-07-16 20:27:30 +01:00
commit 8adf9013a0
117 changed files with 16998 additions and 14540 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "xai-grok-pager"
version = "0.1.220-alpha.4"
version = "0.2.101"
edition.workspace = true
license = "Apache-2.0"
authors = ["xAI"]
@ -161,7 +161,7 @@ windows-sys = { version = "0.59", features = ["Win32_System_Console"] }
[dev-dependencies]
# Enable the render crate's test-only helpers for the pager's test build.
xai-grok-pager-render = { path = "../xai-grok-pager-render", features = [] }
xai-grok-pager-render = { path = "../xai-grok-pager-render", features = ["test-support"] }
pretty_assertions = { workspace = true }
insta = { workspace = true }
criterion = { workspace = true }
@ -273,6 +273,7 @@ default = ["jemalloc", "sandbox-enforce"]
default-bazel = [
"jemalloc",
"sandbox-enforce",
"test-support",
]
# No-op on this crate: the actual `#[global_allocator]` (and the
# `tikv-jemallocator` dep) live on the composition-root binary
@ -282,3 +283,7 @@ default-bazel = [
jemalloc = []
sandbox-enforce = ["xai-grok-sandbox/enforce"]
release-dist = []
# Exposes test-only view-model constructors/setters (e.g. `test_agent_view`,
# `AgentSession::set_yolo_mode_for_test`) to sibling crates' test builds — used
# by `xai-grok-pager-minimal`'s unit tests. Never enabled in production builds.
test-support = ["xai-grok-pager-render/test-support"]