-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Allow prompt suggestions to be inserted into the input for editing before sending #9842
Copy link
Copy link
Open
Labels
area:agentAgent workflows, conversations, prompts, cloud mode, and AI-specific UI.Agent workflows, conversations, prompts, cloud mode, and AI-specific UI.area:suggestionsAI-predictive suggestions, prompt predictions, next-command suggestions, and auto-suggest heuristicsAI-predictive suggestions, prompt predictions, next-command suggestions, and auto-suggest heuristicsarea:terminal-inputTerminal command-line input, cursor movement, key handling, and input editing.Terminal command-line input, cursor movement, key handling, and input editing.enhancementNew feature or request.New feature or request.in-app-feedbackFeedback items sourced from in-app feedback flows.Feedback items sourced from in-app feedback flows.needs-mocksrepro:highThe report includes enough evidence that the issue appears highly reproducible.The report includes enough evidence that the issue appears highly reproducible.triagedIssue has received an initial automated triage pass.Issue has received an initial automated triage pass.
Metadata
Metadata
Assignees
Labels
area:agentAgent workflows, conversations, prompts, cloud mode, and AI-specific UI.Agent workflows, conversations, prompts, cloud mode, and AI-specific UI.area:suggestionsAI-predictive suggestions, prompt predictions, next-command suggestions, and auto-suggest heuristicsAI-predictive suggestions, prompt predictions, next-command suggestions, and auto-suggest heuristicsarea:terminal-inputTerminal command-line input, cursor movement, key handling, and input editing.Terminal command-line input, cursor movement, key handling, and input editing.enhancementNew feature or request.New feature or request.in-app-feedbackFeedback items sourced from in-app feedback flows.Feedback items sourced from in-app feedback flows.needs-mocksrepro:highThe report includes enough evidence that the issue appears highly reproducible.The report includes enough evidence that the issue appears highly reproducible.triagedIssue has received an initial automated triage pass.Issue has received an initial automated triage pass.
Summary
Feature request: make prompt suggestions reusable as editable draft prompts, so a user can start from a suggestion, revise it, and send the final prompt themselves.
Problem
Prompt suggestions can be useful starting points, but the current experience does not appear to let the user take a suggestion and treat it as an editable draft before sending. This makes suggestions feel all-or-nothing: either accept the suggestion as-is or manually retype or recreate the idea in a new prompt.
Reproduction steps or desired workflow
Artifacts
Warp version
Unknown.
Operating system
macOS.
Possible source references
app/src/terminal/view/init.rs: containsTerminalAction::ResolvePromptSuggestion(...), which appears related to accepting prompt suggestions.app/src/terminal/view/inline_banner/prompt_suggestions.rs: defines zero-state prompt suggestion types and likely owns the inline prompt suggestion UI.app/src/ai/blocklist/controller.rs: includessend_zero_state_prompt_suggestion(...), which may be relevant to the current accept/send behavior.