Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
32
crates/codegen/xai-grok-shell-session-support/Cargo.toml
Normal file
32
crates/codegen/xai-grok-shell-session-support/Cargo.toml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "xai-grok-shell-session-support"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "Session-support modules for the grok shell crate family: managed MCP credential/catalog caching and file-access tracking."
|
||||
|
||||
[dependencies]
|
||||
agent-client-protocol = { workspace = true }
|
||||
chrono = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["sync", "rt", "time", "macros"] }
|
||||
tokio-util = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
xai-file-utils = { path = "../xai-file-utils", optional = true }
|
||||
xai-grok-http = { workspace = true }
|
||||
xai-grok-shell-base = { workspace = true }
|
||||
xai-grok-version = { workspace = true }
|
||||
xai-grok-workspace = { workspace = true }
|
||||
|
||||
[features]
|
||||
default-bazel = []
|
||||
|
||||
[dev-dependencies]
|
||||
axum = { workspace = true }
|
||||
tokio = { workspace = true, features = ["net", "rt-multi-thread"] }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
11
crates/codegen/xai-grok-shell-session-support/src/lib.rs
Normal file
11
crates/codegen/xai-grok-shell-session-support/src/lib.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#![allow(
|
||||
unused_imports,
|
||||
unused_variables,
|
||||
unused_mut,
|
||||
unreachable_code,
|
||||
dead_code
|
||||
)]
|
||||
//! Session-support modules extracted from `xai-grok-shell`'s `session/` tree
|
||||
//! (which re-exports them at their original paths) so they build in parallel
|
||||
//! and stop rebuilding on shell edits.
|
||||
pub mod managed_mcp;
|
||||
1467
crates/codegen/xai-grok-shell-session-support/src/managed_mcp.rs
Normal file
1467
crates/codegen/xai-grok-shell-session-support/src/managed_mcp.rs
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue