M4: subagent context-file reporting to the job board

Lets subagents report context files back to the job board (surfaced from the read tool) so the parent session's next-turn context includes what a background child has been looking at.
This commit is contained in:
2026-07-09 06:34:04 +02:00
parent 8976b5dc09
commit ac516a7e23
12 changed files with 187 additions and 3 deletions
Generated
+1
View File
@@ -677,6 +677,7 @@ dependencies = [
"harness-mcp",
"harness-providers",
"harness-tools",
"serde_json",
"tempfile",
"thiserror 2.0.18",
"tokio",
+1
View File
@@ -20,6 +20,7 @@ tracing = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }
futures = { workspace = true }
serde_json = { workspace = true }
[lints]
workspace = true
+155 -2
View File
@@ -18,7 +18,9 @@ use harness_core::engine::{run_session, RunConfig, StepContext};
use harness_core::event::{AppEvent, EventBus, RunOutcome};
use harness_core::permission::{PermissionReply, PermissionService, Rule, Ruleset};
use harness_core::store::{Store, StoreError};
use harness_core::tool::{SpawnError, SpawnOutcome, SpawnRequest, SubagentSpawner, ToolRegistry};
use harness_core::tool::{
ContextReporter, SpawnError, SpawnOutcome, SpawnRequest, SubagentSpawner, ToolRegistry,
};
use harness_core::types::{
Message, MessageId, ModelRef, Part, PartBody, PartId, Session, SessionId,
};
@@ -26,7 +28,7 @@ use harness_providers::{AnthropicProvider, ModelCatalog, OpenAiProvider, Provide
use tokio::task::JoinHandle;
use tokio_util::sync::CancellationToken;
/// Placeholder until M4's markdown agent registry lands (`assets/agents/orchestrator.md`).
/// Fallback prompt for an agent whose markdown body is empty or that isn't in the registry.
pub const DEFAULT_AGENT_PROMPT: &str =
"You are a helpful coding assistant with access to tools for reading, editing, running \
commands, and searching code. Use them as needed to satisfy the user's request, then \
@@ -312,6 +314,7 @@ impl EngineHandle {
now,
spawner: Some(self.inner.clone()),
job_board: Some(board),
context_reporter: None, // root session has no parent board to report to
};
let run_config = RunConfig {
agent_name: agent.name.clone(),
@@ -573,6 +576,7 @@ impl EngineInner {
parent_rules: Ruleset,
extra_rules: Ruleset,
board: Arc<JobBoard>,
reporter: Option<Arc<dyn ContextReporter>>,
cancel: CancellationToken,
now: i64,
) -> StepContext {
@@ -591,10 +595,27 @@ impl EngineInner {
now,
spawner: Some(self.arc()),
job_board: Some(board),
context_reporter: reporter,
}
}
}
/// Reports a child session's file reads to its job on the parent board.
struct BoardReporter {
board: Arc<JobBoard>,
task_id: String,
}
#[async_trait]
impl ContextReporter for BoardReporter {
async fn report_file(&self, path: String, lines: u32) {
let _ = self
.board
.report_context_file(&self.task_id, path, lines, now_ms())
.await;
}
}
#[async_trait]
impl SubagentSpawner for EngineInner {
async fn spawn(&self, req: SpawnRequest) -> Result<SpawnOutcome, SpawnError> {
@@ -720,6 +741,10 @@ impl SubagentSpawner for EngineInner {
}
.unwrap_or_default();
let reporter: Arc<dyn ContextReporter> = Arc::new(BoardReporter {
board: board.clone(),
task_id: task_id.clone(),
});
let ctx = self.child_ctx(
child_id.clone(),
child_tools,
@@ -727,6 +752,7 @@ impl SubagentSpawner for EngineInner {
parent_rules,
child_session.extra_rules.clone(),
child_board,
Some(reporter),
cancel,
now,
);
@@ -760,6 +786,10 @@ impl SubagentSpawner for EngineInner {
})
} else {
// Foreground: run to completion under the tool call's token and return the text.
let reporter: Arc<dyn ContextReporter> = Arc::new(BoardReporter {
board: board.clone(),
task_id: task_id.clone(),
});
let ctx = self.child_ctx(
child_id.clone(),
child_tools,
@@ -767,6 +797,7 @@ impl SubagentSpawner for EngineInner {
parent_rules,
child_session.extra_rules.clone(),
child_board,
Some(reporter),
req.cancel.clone(),
now,
);
@@ -931,6 +962,128 @@ mod tests {
.unwrap()
}
/// Drives a subagent through one `read` tool call, then a final answer.
struct ReadThenAnswerProvider {
steps: std::sync::Mutex<std::collections::VecDeque<Vec<Result<LlmEvent, ProviderError>>>>,
}
#[async_trait]
impl Provider for ReadThenAnswerProvider {
fn id(&self) -> &str {
"mock"
}
async fn list_models(&self) -> Result<Vec<ModelInfo>, ProviderError> {
Ok(vec![])
}
async fn stream(
&self,
_req: LlmRequest,
_cancel: CancellationToken,
) -> Result<LlmEventStream, ProviderError> {
let events = self.steps.lock().unwrap().pop_front().unwrap_or_else(|| {
vec![
Ok(LlmEvent::TextStart { id: "d".into() }),
Ok(LlmEvent::TextDelta {
id: "d".into(),
text: "done".into(),
}),
Ok(LlmEvent::TextEnd { id: "d".into() }),
Ok(LlmEvent::Finish {
reason: FinishReason::Stop,
usage: TokenUsage::default(),
}),
]
});
Ok(Box::pin(futures::stream::iter(events)))
}
}
#[tokio::test]
async fn subagent_file_reads_land_on_the_job_board() {
let dir = tempfile::tempdir().unwrap();
// A file with ≥10 lines so the read clears the board's reporting threshold.
let body = (1..=15)
.map(|n| format!("line {n}"))
.collect::<Vec<_>>()
.join("\n");
std::fs::write(dir.path().join("auth.rs"), body).unwrap();
let provider = Arc::new(ReadThenAnswerProvider {
steps: std::sync::Mutex::new(
vec![
// Turn 1: call the read tool.
vec![
Ok(LlmEvent::ToolCall {
call_id: "c1".into(),
name: "read".into(),
input: serde_json::json!({"file_path": "auth.rs"}),
}),
Ok(LlmEvent::Finish {
reason: FinishReason::ToolCalls,
usage: TokenUsage::default(),
}),
],
// Turn 2: final answer.
vec![
Ok(LlmEvent::TextStart { id: "t".into() }),
Ok(LlmEvent::TextDelta {
id: "t".into(),
text: "found it".into(),
}),
Ok(LlmEvent::TextEnd { id: "t".into() }),
Ok(LlmEvent::Finish {
reason: FinishReason::Stop,
usage: TokenUsage::default(),
}),
],
]
.into(),
),
});
let mut providers = ProviderRegistry::new();
providers.register(provider);
let engine = EngineHandle::build(
dir.path().to_path_buf(),
Store::open_in_memory().unwrap(),
Config::default(),
providers,
)
.unwrap();
// Auto-approve permission asks (the child's read tool gates on `read`).
spawn_auto_approve_task(&engine);
let root = engine
.new_session("orchestrator", "mock/mock-model")
.await
.unwrap();
let out = engine
.inner
.spawn(SpawnRequest {
parent_session_id: root.clone(),
parent_message_id: MessageId::new(),
agent: "explorer".into(),
description: "read auth".into(),
prompt: "read auth.rs".into(),
reuse_task_id: None,
background: false,
cancel: CancellationToken::new(),
})
.await
.unwrap();
let board = engine.inner.board_for(&root).await.unwrap();
let job = board
.snapshot()
.into_iter()
.find(|j| j.child_session == out.child_session_id)
.expect("job on board");
assert!(
job.context_files.iter().any(|f| f.path == "auth.rs"),
"expected auth.rs on the board, got {:?}",
job.context_files
);
}
#[tokio::test]
async fn foreground_task_runs_a_subagent_and_alias_reuse_continues_the_same_session() {
let dir = tempfile::tempdir().unwrap();
+1
View File
@@ -411,6 +411,7 @@ mod tests {
now: 1,
spawner: None,
job_board: None,
context_reporter: None,
}
}
+6 -1
View File
@@ -11,7 +11,8 @@ use crate::llm::{FinishReason, LlmEvent, LlmEventStream, ProviderError};
use crate::permission::{PermissionService, Ruleset};
use crate::store::Store;
use crate::tool::{
MetadataSink, PermissionHandle, SubagentSpawner, Tool, ToolCtx, ToolError, ToolRegistry,
ContextReporter, MetadataSink, PermissionHandle, SubagentSpawner, Tool, ToolCtx, ToolError,
ToolRegistry,
};
use crate::types::{Message, MessageId, Part, PartBody, PartId, SessionId, TokenUsage, ToolState};
@@ -65,6 +66,9 @@ pub struct StepContext {
/// This session's background job board (as a parent). Injected into requests when the
/// running agent can delegate; `None` disables the board.
pub job_board: Option<Arc<JobBoard>>,
/// Present in subagent sessions: reports read files to this session's job on the parent
/// board. `None` for root sessions (nothing to report to).
pub context_reporter: Option<Arc<dyn ContextReporter>>,
}
struct FlushTracker {
@@ -506,6 +510,7 @@ impl<'a> Run<'a> {
ask,
metadata: metadata_sink,
spawner: self.ctx.spawner.clone(),
context_reporter: self.ctx.context_reporter.clone(),
};
let result = tokio::select! {
+10
View File
@@ -54,6 +54,14 @@ pub trait SubagentSpawner: Send + Sync {
async fn spawn(&self, req: SpawnRequest) -> Result<SpawnOutcome, SpawnError>;
}
/// Lets a child session report the files it read to its job board entry, so a completed
/// specialist advertises what it already looked at (docs/04-multiagent.md). Present only in
/// subagent sessions; the spawner wires it to the right board + job.
#[async_trait]
pub trait ContextReporter: Send + Sync {
async fn report_file(&self, path: String, lines: u32);
}
#[derive(Debug, thiserror::Error)]
pub enum ToolError {
#[error("permission denied")]
@@ -185,6 +193,8 @@ pub struct ToolCtx {
/// Present when the engine can spawn subagents (the `task` tool's capability). `None`
/// in headless/test contexts with no orchestration wired in.
pub spawner: Option<Arc<dyn SubagentSpawner>>,
/// Present in subagent sessions: lets the read tool report files to the job board.
pub context_reporter: Option<Arc<dyn ContextReporter>>,
}
#[derive(Debug)]
+1
View File
@@ -150,6 +150,7 @@ mod tests {
),
metadata,
spawner: None,
context_reporter: None,
}
}
+1
View File
@@ -233,6 +233,7 @@ mod tests {
),
metadata,
spawner: None,
context_reporter: None,
}
}
+1
View File
@@ -131,6 +131,7 @@ mod tests {
),
metadata,
spawner: None,
context_reporter: None,
}
}
+1
View File
@@ -160,6 +160,7 @@ mod tests {
),
metadata,
spawner: None,
context_reporter: None,
}
}
+8
View File
@@ -102,6 +102,13 @@ impl Tool for ReadTool {
"(empty file or offset past end)".to_string(),
));
}
// In a subagent session, advertise this read on the job board.
if let Some(reporter) = &ctx.context_reporter {
let reported = paths::relative_pattern(&ctx.cwd, &path);
reporter.report_file(reported, numbered.len() as u32).await;
}
Ok(ToolOutput::new(
params.file_path.clone(),
numbered.join("\n"),
@@ -140,6 +147,7 @@ mod tests {
),
metadata,
spawner: None,
context_reporter: None,
}
}
+1
View File
@@ -115,6 +115,7 @@ mod tests {
),
metadata,
spawner: None,
context_reporter: None,
}
}