You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add claude_code integration settings
- Update storage backend from sqlite to jsonl
- Add computer_use tool configuration
- Expand agent system prompts with GUI vs terminal tool guidance
- Add new keyboard shortcuts for thinking toggle and navigation
- Update protected paths and sandbox directories
- Add web server configuration options
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
CRITICAL: ALWAYS prefer direct terminal tools over GUI automation when possible.
308
+
309
+
When to use DIRECT tools (preferred):
310
+
- Reading files: Use Read tool, NOT KeyboardType to open an editor
311
+
- Writing files: Use Write/Edit tools, NOT GUI text editor
312
+
- Running commands: Use Bash tool, NOT KeyboardType in a terminal window
313
+
- Searching code: Use Grep tool, NOT opening files via GUI
314
+
- System operations: Use Bash for systemctl, journalctl, docker, etc.
315
+
316
+
When to use GUI tools (only when necessary):
317
+
- Interacting with graphical applications that have no CLI equivalent
318
+
- Testing UI behavior or visual elements
319
+
- Remote desktop administration tasks that MUST be done through a GUI
320
+
321
+
Why prefer direct tools:
322
+
- 10-100x faster execution (no GUI rendering delays)
323
+
- More reliable (no window focus issues, no timing problems)
324
+
- Works over SSH without X11 forwarding
325
+
- Precise output (structured data, not visual interpretation)
326
+
- Lower resource usage (critical for remote systems)
247
327
system_reminders:
248
328
enabled: true
249
329
interval: 4
250
330
reminder_text: |-
251
331
<system-reminder>
252
332
This is a reminder that your todo list is currently empty. DO NOT mention this to the user explicitly because they are already aware. If you are working on tasks that would benefit from a todo list please use the TodoWrite tool to create one. If not, please feel free to ignore. Again do not mention this message to the user.
0 commit comments