use crate::core::config::Config;
const HEAD_LINES: usize = 20;
const TAIL_LINES: usize = 8;
const LONG_LINE_HEAD_CHARS: usize = 800;
const LONG_LINE_TAIL_CHARS: usize = 300;
pub fn is_firewallable_tool(name: &str) -> bool {
matches!(
name,
"ctx_shell" | "ctx_execute" | "ctx_search" | "ctx_tree"
)
}
pub fn is_protected_read(name: &str) -> bool {
matches!(name, "ctx_read" | "ctx_multi_read" | "ctx_smart_read")
}
pub fn min_tokens(config: &Config) -> usize {
config.archive.ephemeral_min_tokens_effective()
}
pub fn should_firewall(tool: &str, output_tokens: usize, config: &Config) -> bool {
config.archive.ephemeral_effective()
&& is_firewallable_tool(tool)
&& output_tokens >= min_tokens(config)
}
pub fn summarize(full: &str, archive_id: &str, tool: &str, output_tokens: usize) -> String {
let chars = full.len();
let lines: Vec<&str> = full.lines().collect();
let line_count = lines.len();
let mut out = String::new();
out.push_str(&format!(
"[Firewalled {tool} output — {chars} chars, {output_tokens} tok, {line_count} lines stored out-of-band]\n"
));
if line_count > HEAD_LINES + TAIL_LINES + 1 {
out.push_str("--- head ---\n");
out.push_str(&lines[..HEAD_LINES].join("\n"));
out.push_str(&format!(
"\n--- … {} lines omitted … ---\n",
line_count - HEAD_LINES - TAIL_LINES
));
out.push_str("--- tail ---\n");
out.push_str(&lines[line_count - TAIL_LINES..].join("\n"));
out.push('\n');
} else {
let head_end = full.floor_char_boundary(LONG_LINE_HEAD_CHARS.min(chars));
out.push_str(&full[..head_end]);
if chars > LONG_LINE_HEAD_CHARS + LONG_LINE_TAIL_CHARS {
out.push_str("\n… (truncated) …\n");
let tail_start = full.floor_char_boundary(chars - LONG_LINE_TAIL_CHARS);
out.push_str(&full[tail_start..]);
out.push('\n');
}
}
out.push_str("--- retrieve full output ---\n");
out.push_str(&format!(
"Direct: read {} directly (no MCP)\n",
crate::core::archive::content_path_str(archive_id)
));
out.push_str(&format!("Full: ctx_expand(id=\"{archive_id}\")\n"));
out.push_str(&format!(
"Range: ctx_expand(id=\"{archive_id}\", start_line=1, end_line=80)\n"
));
out.push_str(&format!(
"Head: ctx_expand(id=\"{archive_id}\", head=120)\n"
));
out.push_str(&format!(
"Search: ctx_expand(id=\"{archive_id}\", search=\"ERROR\")\n"
));
out.push_str(&format!(
"JSON: ctx_expand(id=\"{archive_id}\", json_keys=true)"
));
out
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn firewallable_tools_are_outputs_not_reads() {
assert!(is_firewallable_tool("ctx_shell"));
assert!(is_firewallable_tool("ctx_search"));
assert!(is_firewallable_tool("ctx_tree"));
assert!(is_firewallable_tool("ctx_execute"));
assert!(!is_firewallable_tool("ctx_read"));
assert!(!is_firewallable_tool("ctx_multi_read"));
assert!(!is_firewallable_tool("ctx_knowledge"));
}
#[test]
fn protected_reads_are_file_readers_and_never_firewallable() {
for read in ["ctx_read", "ctx_multi_read", "ctx_smart_read"] {
assert!(is_protected_read(read), "{read} must be a protected read");
assert!(
!is_firewallable_tool(read),
"{read} must never be firewallable"
);
}
assert!(!is_protected_read("ctx_shell"));
assert!(!is_protected_read("ctx_search"));
}
#[test]
fn should_firewall_respects_tool_and_threshold() {
let mut cfg = Config::default();
cfg.archive.enabled = true;
cfg.archive.ephemeral = true;
cfg.archive.ephemeral_min_tokens = 2000;
crate::test_env::remove_var("LEAN_CTX_EPHEMERAL");
crate::test_env::remove_var("LEAN_CTX_EPHEMERAL_MIN_TOKENS");
assert!(should_firewall("ctx_shell", 5000, &cfg));
assert!(!should_firewall("ctx_shell", 1000, &cfg)); assert!(!should_firewall("ctx_read", 5000, &cfg)); }
#[test]
fn summarize_includes_excerpt_stats_and_ref() {
let full = (1..=200)
.map(|i| format!("line {i}"))
.collect::<Vec<_>>()
.join("\n");
let digest = summarize(&full, "abc123", "ctx_shell", 1234);
assert!(digest.contains("Firewalled ctx_shell output"));
assert!(digest.contains("1234 tok"));
assert!(digest.contains("line 1")); assert!(digest.contains("line 200")); assert!(digest.contains("lines omitted"));
assert!(digest.contains("ctx_expand(id=\"abc123\")"));
assert!(digest.contains("json_keys=true"));
assert!(digest.len() < full.len());
}
#[test]
fn summarize_handles_single_giant_line() {
let full = "x".repeat(5000);
let digest = summarize(&full, "id9", "ctx_search", 1300);
assert!(digest.contains("Firewalled ctx_search output"));
assert!(digest.contains("truncated"));
assert!(digest.len() < full.len());
}
}