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
25
crates/codegen/xai-grok-subagent-resolution/Cargo.toml
Normal file
25
crates/codegen/xai-grok-subagent-resolution/Cargo.toml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "xai-grok-subagent-resolution"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "Subagent configuration resolution: merges persona, role, and spawn-time overrides into a resolved spec"
|
||||
|
||||
[dependencies]
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
xai-grok-sampling-types = { path = "../xai-grok-sampling-types" }
|
||||
xai-grok-tools = { path = "../xai-grok-tools" }
|
||||
xai-tool-types.workspace = true
|
||||
# TODO(phase2): add these when resolve_subagent_spec() composition is implemented:
|
||||
# xai-grok-agent = { path = "../xai-grok-agent" } # AgentDefinition lookup
|
||||
# xai-fast-worktree = { path = "../xai-fast-worktree" } # worktree creation
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = { workspace = true }
|
||||
toml = { workspace = true }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Loading…
Reference in a new issue