From 0c649ea482179dba6768f1657a90ca84f67e9dca Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Mon, 23 Mar 2026 12:42:09 -0400 Subject: [PATCH] Fix stale AgentProfile trait signature in README The capabilities() method was removed from the trait but the README still listed it with an incorrect return type. Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/crates/fabro-agent/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/crates/fabro-agent/README.md b/lib/crates/fabro-agent/README.md index aa122327c..d9c76f7df 100644 --- a/lib/crates/fabro-agent/README.md +++ b/lib/crates/fabro-agent/README.md @@ -68,9 +68,7 @@ pub trait AgentProfile: Send + Sync { project_docs: &[String], user_instructions: Option<&str>, ) -> String; - fn capabilities(&self) -> AgentProfile; - fn knowledge_cutoff(&self) -> &str; - // ... default methods for tools(), provider_options(), supports_*() + // ... default methods for tools(), knowledge_cutoff(), context_window_size() } ```