refactor: unify AgentServer + ManagerServer into HiveServer {socket, flavor}
This commit is contained in:
parent
1698372572
commit
c634dab2a6
3 changed files with 379 additions and 726 deletions
|
|
@ -311,10 +311,10 @@ from `tool-groups.json`). Unrecognised tokens are logged and skipped. Falls back
|
||||||
to `ToolGroup::AGENT_DEFAULT` (`messaging`, `meta`, `inbox`, `execution`) or
|
to `ToolGroup::AGENT_DEFAULT` (`messaging`, `meta`, `inbox`, `execution`) or
|
||||||
`ToolGroup::MANAGER_DEFAULT` (all groups) when the var is absent or empty.
|
`ToolGroup::MANAGER_DEFAULT` (all groups) when the var is absent or empty.
|
||||||
|
|
||||||
**Updating the surface** — when a new `#[tool]` fn is added to `AgentServer`
|
**Updating the surface** — when a new `#[tool]` fn is added to `HiveServer`
|
||||||
or `ManagerServer` in `hive-ag3nt/src/mcp.rs`, add its name to the matching
|
in `hive-ag3nt/src/mcp.rs`, add its name to the matching `ToolGroup::tools()`
|
||||||
`ToolGroup::tools()` slice in `hive-sh4re/src/lib.rs`. That's the single
|
slice in `hive-sh4re/src/lib.rs`. That's the single source of truth;
|
||||||
source of truth; `allowed_mcp_tools` reads it at session start.
|
`allowed_mcp_tools` reads it at session start.
|
||||||
|
|
||||||
## Capabilities
|
## Capabilities
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -345,6 +345,29 @@ async fn dispatch(req: &AgentRequest, agent: &str, coord: &Arc<Coordinator>) ->
|
||||||
Err(message) => AgentResponse::Err { message },
|
Err(message) => AgentResponse::Err { message },
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
AgentRequest::Start { name } => {
|
||||||
|
if !crate::topology::children_of(agent)
|
||||||
|
.iter()
|
||||||
|
.any(|c| c == name)
|
||||||
|
{
|
||||||
|
return AgentResponse::Err {
|
||||||
|
message: format!(
|
||||||
|
"agent `{agent}` cannot start `{name}`: \
|
||||||
|
not a direct child in the topology tree"
|
||||||
|
),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
tracing::info!(%agent, %name, "agent: start child");
|
||||||
|
match crate::lifecycle::start(name).await {
|
||||||
|
Ok(()) => {
|
||||||
|
coord.kick_agent(name, "container started");
|
||||||
|
AgentResponse::Ok
|
||||||
|
}
|
||||||
|
Err(e) => AgentResponse::Err {
|
||||||
|
message: format!("{e:#}"),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
AgentRequest::Restart { name } => {
|
AgentRequest::Restart { name } => {
|
||||||
// Topology check: the caller must be the direct parent of the
|
// Topology check: the caller must be the direct parent of the
|
||||||
// target. This is the only authorisation criterion — no
|
// target. This is the only authorisation criterion — no
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue