ast-outline 2.1.1

Final ast-outline release. Renamed to ast-bro — install via `cargo install ast-bro`. This 2.1.1 ships the new `ast-bro` and `sb` binaries alongside `ast-outline` so existing users can transition.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::path::PathBuf;

#[derive(Debug, Clone)]
pub struct ToolCallEvent {
    pub tool_name: String,
    pub file_path: Option<PathBuf>,
    pub has_offset_or_limit: bool,
}

#[derive(Debug, Clone)]
pub enum Decision {
    PassThrough,
    Substitute { content: String },
}