Group of 3 Use it now Notable
Claude Code can now suggest or pre-fill your next prompt after a turn, controlled by a new Prompt suggestions setting
What
- A new setting, "Prompt suggestions" (
promptSuggestionEnabled), lets Claude Code generate a predicted next prompt after each turn and either suggest it to you or fill it directly into the input box. - The input draft controller gained
fillDraftandsuggestDraftmethods that write or propose this suggested text, setting apromptSuggestionstate (status: 'generated', the suggested text, and a generation request ID) once a turn ends — but only when the input box is empty and no dialog is open. - Plugins gained two new corresponding actions,
prompt.fillandprompt.suggest, added to the plugin action-dispatch table alongside existing actions likeprompt.submit,tool.call,agent.spawn, andui.ask, each with their own budget tracking, letting a plugin programmatically fill the prompt box or suggest text to the user. - A session-config field
promptSuggestionsand a telemetry event description ("Predicted next user prompt, emitted after each turn when promptSuggestions is enabled") back the feature.
Why This gives Claude Code the ability to proactively suggest what you might want to type next, saving time on repetitive or predictable follow-up prompts, and gives plugins a supported way to drive the same behavior.
Names in the bundlepromptSuggestionEnabled
Documented inclaude-code/env-vars