Clarify Codex skill invocation hint in the composer#1653
Open
ZeuxMD wants to merge 1 commit intopingdotgg:mainfrom
Open
Clarify Codex skill invocation hint in the composer#1653ZeuxMD wants to merge 1 commit intopingdotgg:mainfrom
ZeuxMD wants to merge 1 commit intopingdotgg:mainfrom
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
What Changed
Updated the web composer placeholder copy to explicitly mention that Codex users can type
$in the message box to mention skills.The hint is only shown for Codex so Claude threads keep their existing copy.
I also extracted the placeholder strings into small helpers and added focused tests for the Codex and non-Codex variants.
Why
T3 Code already supports passing raw prompt text through to Codex, but the composer UI only advertised
@mentions and/commands.That makes skill invocation easy to miss. This keeps the change small and local while clarifying the supported syntax in the place users actually type it.
UI Changes
Before (Codex new/disconnected thread):
Ask for follow-up changes or attach imagesAfter (Codex new/disconnected thread):
Ask for follow-up changes, type $ to mention skills, or attach imagesBefore (Codex connected/default composer state):
Ask anything, @tag files/folders, or use / to show available commandsAfter (Codex connected/default composer state):
Ask anything, @tag files/folders, type $ to mention skills, or use / to show available commandsNo motion or interaction behavior changed.
Checklist
Note
Low Risk
Low risk: UI copy-only change gated by provider (
codex) plus small helper extraction; no message dispatching or state logic is modified.Overview
Updates the chat composer placeholder text to explicitly advertise
$skill invocation for Codex (both default and disconnected phases), while keeping non-Codex providers’ placeholder copy unchanged.Extracts the placeholder strings into
buildDefaultComposerPlaceholder/buildDisconnectedComposerPlaceholderhelpers inChatView.logic, updatesChatViewto use them, and adds focused unit tests to lock in the provider-specific copy.Written by Cursor Bugbot for commit f98b001. This will update automatically on new commits. Configure here.
Note
Show skill invocation hint in composer placeholder for Codex provider
Adds provider-aware placeholder text to the composer input in ChatView.tsx. Two new utility functions,
buildDefaultComposerPlaceholderandbuildDisconnectedComposerPlaceholderin ChatView.logic.ts, return a placeholder that includes "type '$' to mention skills" when the provider iscodex, and the previous placeholder text for all other providers.Macroscope summarized f98b001.