subagents: add availableToSubagents opt-in toggle for extraMcpServers
This commit is contained in:
parent
33aa2bdbc8
commit
16eec3c314
14 changed files with 356 additions and 84 deletions
|
|
@ -185,8 +185,14 @@ fn subagent_otel_attrs(name: &str) -> String {
|
|||
/// instructions. `dir`, when given, becomes `Config::cwd` (e.g. a worktree
|
||||
/// the caller already prepared); `None` inherits this daemon's own working
|
||||
/// directory, same as before this field existed. Always
|
||||
/// `--dangerously-skip-permissions --strict-mcp-config` (no `--mcp-config`
|
||||
/// override — a safety property, not a knob).
|
||||
/// `--dangerously-skip-permissions --strict-mcp-config` — the safety
|
||||
/// property is `strict_mcp_config: true` with no ambient MCP discovery, not
|
||||
/// an unconditional absence of `--mcp-config`: a subagent gets exactly the
|
||||
/// `hyperhive.extraMcpServers` entries an operator has explicitly opted in
|
||||
/// via `availableToSubagents = true` (`crate::mcp_config::build`), nothing
|
||||
/// implicit and nothing more. With no entry opted in — the default — that
|
||||
/// resolves to `None` and the invocation is unchanged from before this
|
||||
/// toggle existed: zero MCP servers, full stop.
|
||||
fn build_config(
|
||||
name: &str,
|
||||
model: Option<String>,
|
||||
|
|
@ -201,6 +207,7 @@ fn build_config(
|
|||
Config {
|
||||
model,
|
||||
cwd: dir.map(PathBuf::from),
|
||||
mcp_config: crate::mcp_config::build(),
|
||||
strict_mcp_config: true,
|
||||
extra_args,
|
||||
env: vec![(
|
||||
|
|
|
|||
Loading…
Reference in a new issue