pub(super) const ACTION_TOOLS: &[&str] =
&["Write", "Edit", "NotebookEdit", "Bash", "Task", "Agent"];
pub(super) const SKIP_TOOLS: &[&str] = &[
"ListMcpResourcesTool",
"SlashCommand",
"Skill",
"TodoWrite",
"AskUserQuestion",
"TaskCreate",
"TaskUpdate",
"TaskList",
"TaskGet",
"EnterPlanMode",
"ExitPlanMode",
];
pub(super) const BASH_SKIP_PREFIXES: &[&str] = &[
"git status",
"git log",
"git diff",
"git branch",
"git stash list",
"git remote",
"git fetch",
"git show",
"ls",
"pwd",
"echo ",
"which ",
"type ",
"whereis ",
"cat ",
"head ",
"tail ",
"wc ",
"file ",
"npm install",
"npm ci",
"yarn install",
"pnpm install",
"cargo build",
"cargo check",
"cargo clippy",
"cargo fmt",
"cd ",
"pushd ",
"popd",
"lsof ",
"ps ",
"top",
"htop",
"df ",
"du ",
"grep ",
"rg ",
"find ",
"git grep",
];