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>
This commit is contained in:
google-labs-jules[bot] 2026-03-18 01:01:59 +00:00
parent 7733e5c61d
commit a3b4764353

View file

@ -490,6 +490,12 @@ func DefaultConfig() *Config {
WriteFile: ToolConfig{
Enabled: true,
},
BrowserAction: ToolConfig{
Enabled: true,
},
GoEval: ToolConfig{
Enabled: true,
},
},
Heartbeat: HeartbeatConfig{
Enabled: true,