Replies: 1 comment
|
+1, we need a function like that. I've been missing this in Codex since switching over from CC too. Alternative approach with the same result: A function "Settle & start new task" This would simplify this feature to just UI work inside T3, without any provider specific logic, since codex app-server does not have /clear support |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Problem
There is no way to start over inside a thread. To get a clean context and a clean
scrollback I have to settle the thread and create a new one, which means a new
title, re-picking model/mode, and losing the "place" I was working in.
Claude Code in the terminal has
/clear: one command, the transcript is gone, andI am in a fresh conversation in the same working directory. In T3 the equivalent
takes several UI steps and produces a pile of settled threads.
Current behavior
/clearis not a T3 command, so it is forwarded to the provider as plain text.The model usually replies that the context was cleared, but nothing changed — see
#7402, where the event log shows
/clearpersisted as an ordinarythread.message-sentfollowed by a normal turn. The assistant answering "done"while keeping everything is worse than an error.
Proposal
Make
/cleara native T3 command (alongside/modeland/plan):"Context cleared" is enough; the old messages can stay retrievable.
/clear(and other unsupported reset commands) with avisible "not supported" message instead of sending them to the model.
Why
Long-lived threads pinned to a worktree are the natural unit of work in T3; being
able to reset context without abandoning the thread keeps the sidebar sane and
matches what every provider CLI already offers.
All reactions