feat(conversation): add :rename command to set custom conversation titles#2760
Merged
tusharmath merged 5 commits intoantinomyhq:mainfrom Apr 1, 2026
Merged
Conversation
e4feccf to
8137107
Compare
tusharmath
reviewed
Apr 1, 2026
8137107 to
a59b909
Compare
…tles Adds the ability to rename conversations via `/rename <name>` (alias: `/rn`) in interactive mode, and `forge conversation rename <id> <name>` from the CLI. Closes #2759
- :rename <name> — renames the current active conversation - :conversation-rename — interactive fzf picker to select and rename - :conversation-rename <id> <name> — rename a specific conversation by ID
a59b909 to
43d82b2
Compare
:rename command to set custom conversation titles
This was referenced Apr 1, 2026
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
Adds the ability to rename conversations with a custom title, so they show up with meaningful names in
/conversationsinstead of just UUIDs./rename <name>(alias:/rn) renames the current conversationforge conversation rename <id> <name>renames any conversation by IDtitlefield in the conversation schema — no migrations neededCloses #2759
Changes
forge_api/src/api.rsrename_conversationto theAPItraitforge_api/src/forge_api.rsmodify_conversationforge_main/src/model.rsRename(String)variant,/rename+/rnparsing, reserved command registrationforge_main/src/cli.rsRenamesubcommand toConversationCommandforge_main/src/ui.rsforge_main/src/built_in_commands.jsonforge_repo/src/conversation/conversation_repo.rsTest plan
cargo test --lib -p forge_main -- rename+cargo test --lib -p forge_repo -- rename)cargo clippyclean on all changed crates/rename my-session,/rn auth-refactor,/rename auth refactor work(multi-word)/renamewith no args returns helpful error/rename padded name→padded nameNone