fix(i18n): point session banners + overflow error at /new and /sessions#698
Merged
Conversation
The top-level /forget command was removed in the slash refactor, but the resumed-session and new-session banners + the context-overflow error still told users to type it. Point them at the surviving paths instead: /new for a fresh start, /sessions ([d] to delete) for manage / rename / drop. Closes #697
ChasLui
pushed a commit
to ChasLui/DeepSeek-Reasonix
that referenced
this pull request
May 23, 2026
…ns (esengine#698) The top-level /forget command was removed in the slash refactor, but the resumed-session and new-session banners + the context-overflow error still told users to type it. Point them at the surviving paths instead: /new for a fresh start, /sessions ([d] to delete) for manage / rename / drop. Closes esengine#697
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The top-level
/forgetslash command was removed in the slash-surface refactor that cut 11 commands, but the resumed-session banner, new-session banner, and the DeepSeek 400 context-overflow error message still tell users to type it. Repoint those three strings (× EN + zh-CN) at the paths that actually survived:/new— start a fresh conversation/sessions— open the picker,[d]deletes the rowAlso straightens out the only code comment that referenced the dead command.
Sub-commands that still own the word
forget(/memory forget <name>,/checkpoint forget <id>) are untouched — they still work and stay in the help text.Closes #697
Test plan
tests/loop-error.test.ts— updated the overflow-error assertion from/forgetto/sessionsso it tracks the new copygrep -rE "/forget" src docsreturns no hitsnpx vitest run— 2681 passed / 2 skippednpm run lint— cleannpm run typecheck— clean