Remove redundant AGENTS.md heading from startup output

The loaded status line (✓ AGENTS.md ✓ Memory) already indicates that
AGENTS.md was loaded, so the separate '>> AGENTS.md - Machine Instructions'
heading line was redundant.

- Remove print_project_heading() function from display.rs
- Remove extract_project_heading call from interactive.rs
- Clean up unused imports
This commit is contained in:
Dhanji R. Prasanna
2026-02-05 21:38:47 +11:00
parent c6df75d886
commit d978032044
2 changed files with 1 additions and 18 deletions

View File

@@ -190,17 +190,6 @@ pub fn print_loaded_status(loaded: &LoadedContent) {
println!();
}
/// Print the project name/heading from README content.
pub fn print_project_heading(heading: &str) {
print!(
"{}>> {}{}",
SetForegroundColor(Color::DarkGrey),
heading,
ResetColor
);
println!();
}
#[cfg(test)]
mod tests {
use super::*;