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
feat(settings): add rtk compression toggle, on by default
One boolean in Settings > Advanced, "Compress command output", default on. When off: local and worktree sessions get POSTHOG_RTK=0 on the agent environment (start and reconnect), and cloud runs send rtk_enabled: false into TaskRun.state so the sandbox launches with rtk disabled. When on, nothing is sent and the server-side default (enabled) applies.
Generated-By: PostHog Code
Task-Id: 2d6eed7f-9209-4d1f-be54-ae3e22bf2990
@@ -41,6 +43,12 @@ export function AdvancedSettings() {
41
43
size="1"
42
44
/>
43
45
</SettingRow>
46
+
<SettingRow
47
+
label="Compress command output"
48
+
description="Route eligible shell commands through rtk so their verbose output is compressed before it reaches the model, reducing token usage. Applies to local, worktree, and cloud runs"
0 commit comments