refactor(#2077): drop impl-history from broker/dashboard/mcp comments

This commit is contained in:
damocles 2026-06-29 00:18:35 +02:00 committed by mara
commit 72c4bb18c9
3 changed files with 8 additions and 12 deletions

View file

@ -535,9 +535,8 @@ fn format_age_secs(secs: u64) -> String {
}
/// Common envelope around every MCP tool handler: pre-log → run →
/// post-log. The inbox-status hint used to be appended to every tool
/// result; that lives in the wake prompt + UI header now, so tool
/// results stay clean.
/// post-log. Tool results stay clean — the inbox-status hint lives in
/// the wake prompt + UI header, not appended here.
pub async fn run_tool_envelope<F>(tool: &'static str, args: String, body: F) -> String
where
F: Future<Output = String>,