Removed root-and-branch for the zero-egress guarantee (the hub was xAI's remote-workspace/cloud-sandbox service): - Crates deleted: kigi-computer-hub-core, kigi-computer-hub-sdk, kigi-computer-hub-mcp-adapter, kigi-workspace-client (hub-proxied workspace RPC client), and kigi-tracing (its sole network path was the OTLP gRPC exporter; zero consumers remained). kigi-tracing-macros (purely local) stays. - kigi-workspace: every hub surface deleted — hub server/channel/auth, HITL-over-hub permissions, donation/metrics pumps, file upload RPCs, hub tool-snapshot merge (resolve pipeline is MCP-only now), WorkspaceOps::Proxy. Local worktrees, sessions, leader IPC, MCP, and the ACP permission prompt path are untouched; LocalRegistry re-homed into kigi-tool-runtime on the existing ToolDyn types so in-process tool dispatch is unchanged. - kigi-shell: leader workspace-exposure control surface (incl. the wss://computer-hub... URL), [hub] config, ObservabilityBridge, hub WebSocket proxy, dead OTLP config knobs. ClientMode::Headless (never constructed) removed. - kigi-tui/bin: hidden `kigi workspace` command removed (`kigi worktree` stays). - Renames: --xai-api-base-url → --api-base-url / KIGI_API_BASE_URL / [endpoints] api_base_url (serde alias keeps old configs working; the flag feeds BYOK/custom-endpoint routing, not main inference); grok_version → kigi_version in inspect/models-cache/trace metadata (old caches self-heal via version-mismatch refetch). - Dependency tree: dropped fastrace*, opentelemetry-otlp/http/proto, tokio-tungstenite from the workspace; fixed the 4 real useless_format violations the fastrace lint allowance was masking and removed the allowance. - marketplaceAllowlist kept: it gates the LOCAL plugin-marketplace feature, not an xAI service. Known §9 leftover (deliberate, for the M3 sweep): the BYOK default base URL string. Gates: workspace check/clippy 0/0, fmt, deny ok; suites green (workspace 1042, shell 4918, tui 6634, tools 2608, tool-runtime 47, mcp 154).
155 lines
4.5 KiB
Rust
155 lines
4.5 KiB
Rust
//! Context types and the typed-extension store they share.
|
|
|
|
use std::any::{Any, TypeId};
|
|
use std::collections::HashMap;
|
|
use std::path::PathBuf;
|
|
use std::sync::Arc;
|
|
|
|
use kigi_tool_protocol::ToolCallId;
|
|
|
|
/// Open typed-extension store keyed by `TypeId`.
|
|
#[derive(Clone, Default)]
|
|
pub struct TypedExtensions {
|
|
map: HashMap<TypeId, Arc<dyn Any + Send + Sync>>,
|
|
}
|
|
|
|
impl TypedExtensions {
|
|
pub fn new() -> Self {
|
|
Self::default()
|
|
}
|
|
|
|
pub fn insert<T: Send + Sync + 'static>(&mut self, value: T) -> &mut Self {
|
|
self.map.insert(TypeId::of::<T>(), Arc::new(value));
|
|
self
|
|
}
|
|
|
|
pub fn insert_arc<T: Send + Sync + 'static>(&mut self, value: Arc<T>) -> &mut Self {
|
|
self.map.insert(TypeId::of::<T>(), value);
|
|
self
|
|
}
|
|
|
|
pub fn get<T: Send + Sync + 'static>(&self) -> Option<Arc<T>> {
|
|
self.map
|
|
.get(&TypeId::of::<T>())
|
|
.cloned()
|
|
.and_then(|arc| Arc::downcast::<T>(arc).ok())
|
|
}
|
|
|
|
pub fn contains<T: Send + Sync + 'static>(&self) -> bool {
|
|
self.map.contains_key(&TypeId::of::<T>())
|
|
}
|
|
|
|
pub fn remove<T: Send + Sync + 'static>(&mut self) -> Option<Arc<T>> {
|
|
self.map
|
|
.remove(&TypeId::of::<T>())
|
|
.and_then(|arc| Arc::downcast::<T>(arc).ok())
|
|
}
|
|
|
|
pub fn len(&self) -> usize {
|
|
self.map.len()
|
|
}
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
self.map.is_empty()
|
|
}
|
|
|
|
/// Copy entries from `defaults` that are not already present in `self`.
|
|
pub fn merge_defaults(&mut self, defaults: &TypedExtensions) {
|
|
for (key, value) in &defaults.map {
|
|
self.map.entry(*key).or_insert_with(|| value.clone());
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Per-call context.
|
|
#[derive(Clone)]
|
|
pub struct ToolCallContext {
|
|
pub call_id: ToolCallId,
|
|
pub extensions: TypedExtensions,
|
|
}
|
|
|
|
impl Default for ToolCallContext {
|
|
fn default() -> Self {
|
|
Self {
|
|
call_id: ToolCallId::new_v7(),
|
|
extensions: TypedExtensions::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ToolCallContext {
|
|
pub fn new(call_id: ToolCallId) -> Self {
|
|
Self {
|
|
call_id,
|
|
extensions: TypedExtensions::new(),
|
|
}
|
|
}
|
|
|
|
/// Delegate to `self.extensions.insert()`.
|
|
pub fn insert<T: Send + Sync + 'static>(&mut self, value: T) -> &mut Self {
|
|
self.extensions.insert(value);
|
|
self
|
|
}
|
|
|
|
/// Delegate to `self.extensions.get()`.
|
|
pub fn get<T: Send + Sync + 'static>(&self) -> Option<Arc<T>> {
|
|
self.extensions.get::<T>()
|
|
}
|
|
}
|
|
|
|
/// Per-turn context consumed by [`crate::Tool::should_list`].
|
|
#[derive(Clone, Default)]
|
|
pub struct ListToolsContext {
|
|
pub extensions: TypedExtensions,
|
|
}
|
|
|
|
impl ListToolsContext {
|
|
pub fn new() -> Self {
|
|
Self::default()
|
|
}
|
|
}
|
|
|
|
// Runtime-blessed per-concept extensions. One type per concept so
|
|
// dispatchers install exactly what they have and tools depend on
|
|
// exactly what they need.
|
|
|
|
/// Working directory for relative path resolution.
|
|
#[derive(Clone, Debug)]
|
|
pub struct Cwd(pub PathBuf);
|
|
|
|
/// Opaque behaviour version. Tools that branch on this MUST treat
|
|
/// unknown values as a hard error.
|
|
#[derive(Clone, Debug)]
|
|
pub struct BehaviorVersion(pub String);
|
|
|
|
/// Distributed-trace correlation context (e.g. W3C `traceparent`).
|
|
///
|
|
/// Receive-side carrier only: stamped from the inbound wire value for
|
|
/// tool impls to read, never serialized back out.
|
|
#[derive(Clone, Debug)]
|
|
pub struct TraceContext(pub String);
|
|
|
|
/// Session ID context — identifies which hub session this call belongs to.
|
|
/// Used by multi-session tool servers to dispatch to the correct
|
|
/// per-session state.
|
|
#[derive(Clone, Debug)]
|
|
pub struct SessionContext(pub String);
|
|
|
|
/// Cooperative-cancellation handle for the current tool call. Tools MAY
|
|
/// poll/await this for graceful shutdown; the dispatcher also hard-cancels
|
|
/// by dropping the call future when it fires.
|
|
#[derive(Clone, Debug)]
|
|
pub struct Cancellation(pub tokio_util::sync::CancellationToken);
|
|
|
|
/// Per-user feature-flag bag attached as a [`ToolCallContext`] extension.
|
|
/// Dispatcher resolves; tools read. Default = "off" for every field so an
|
|
/// absent extension never accidentally opts a feature in. Extend by
|
|
/// adding fields with safe defaults; new fields need `#[serde(default)]`
|
|
/// so older `session.bind` payloads stay deserializable.
|
|
#[derive(Clone, Debug, Default, serde::Serialize, serde::Deserialize)]
|
|
pub struct WorkspaceViewerContext {
|
|
/// When `true`, `BashTool` emits `bash_output_chunk` Progress frames.
|
|
#[serde(default)]
|
|
pub stream_tool_progress: bool,
|
|
}
|