From a3b476435359b7a7f12623cc1eb8312f98826afb Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2026 01:01:59 +0000 Subject: [PATCH] feat(config): enable BrowserAction and GoEval tools by default This change enables the `BrowserAction` and `GoEval` tools by default in `pkg/config/defaults.go`. This allows the agent to execute autonomous system-level tasks and interact with web browsers without requiring manual configuration, fulfilling the objective of transitioning the agent from passive information retrieval to active task execution. Co-authored-by: hobbyistlabs-coder <267281733+hobbyistlabs-coder@users.noreply.github.com> --- pkg/config/defaults.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/config/defaults.go b/pkg/config/defaults.go index bd5b524d7..093c798f4 100644 --- a/pkg/config/defaults.go +++ b/pkg/config/defaults.go @@ -490,6 +490,12 @@ func DefaultConfig() *Config { WriteFile: ToolConfig{ Enabled: true, }, + BrowserAction: ToolConfig{ + Enabled: true, + }, + GoEval: ToolConfig{ + Enabled: true, + }, }, Heartbeat: HeartbeatConfig{ Enabled: true,