Fix missed tracking comment to be false

This commit is contained in:
km-anthropic
2025-07-24 13:25:26 -07:00
parent 02c804a6be
commit a53ce607e4
2 changed files with 2 additions and 2 deletions

View File

@@ -37,6 +37,6 @@ export const agentMode: Mode = {
},
shouldCreateTrackingComment() {
return true;
return false;
},
};

View File

@@ -19,7 +19,7 @@ describe("Agent Mode", () => {
expect(agentMode.description).toBe(
"Automation mode that always runs without trigger checking",
);
expect(agentMode.shouldCreateTrackingComment()).toBe(true);
expect(agentMode.shouldCreateTrackingComment()).toBe(false);
// Tool methods return empty arrays
expect(agentMode.getAllowedTools()).toEqual([]);