Agents: drop bash tool alias

This commit is contained in:
Tak hoffman
2026-01-24 01:21:50 -06:00
committed by Peter Steinberger
parent 15620b1092
commit ff52aec38e
4 changed files with 2 additions and 14 deletions

View File

@@ -6,8 +6,8 @@ describe("tool-policy", () => {
const expanded = expandToolGroups(["group:runtime", "BASH", "apply-patch", "group:fs"]);
const set = new Set(expanded);
expect(set.has("exec")).toBe(true);
expect(set.has("bash")).toBe(true);
expect(set.has("process")).toBe(true);
expect(set.has("bash")).toBe(false);
expect(set.has("apply_patch")).toBe(true);
expect(set.has("read")).toBe(true);
expect(set.has("write")).toBe(true);