From d39410ac46b46de2515e6051f468fac11a9a58d5 Mon Sep 17 00:00:00 2001 From: hongyi-chen Date: Mon, 3 Aug 2026 17:18:08 +0000 Subject: [PATCH 1/2] docs: document the /copy-debugging-id slash command /copy-debugging-id is registered for both the GUI and the Warp Agent CLI but was missing from the slash commands reference table. Co-Authored-By: Oz --- src/content/docs/agents/capabilities/slash-commands.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/agents/capabilities/slash-commands.mdx b/src/content/docs/agents/capabilities/slash-commands.mdx index 328d7d3b..6b6e2ac8 100644 --- a/src/content/docs/agents/capabilities/slash-commands.mdx +++ b/src/content/docs/agents/capabilities/slash-commands.mdx @@ -18,7 +18,7 @@ As you type, the menu filters results in real time, making it easy to find and r Warp currently supports the following built-in Slash Commands: -
Slash CommandDescription
/add-mcpAdd a new MCP server.
/add-promptAdd a new Agent Prompt in Warp Drive.
/add-ruleAdd a new Global Rule for the Agent.
/agentStart a new agent conversation. Optionally include a prompt to send immediately.
/changelogOpen the latest Warp changelog.
/cloud-agentStart a new cloud agent conversation. {'*'}
/compactFree up context by summarizing conversation history.
/compact-andCompact the current conversation and then send a follow-up prompt.
/conversationsOpen conversation history.
/costToggle credit usage details in the current conversation.
/create-environmentCreate a Warp Environment (Docker image + repos) via guided setup. {'*'}
/create-new-projectHave the Agent walk you through creating a new coding project. {'*'}
/environmentSwitch the environment for the current cloud agent conversation.
/export-to-clipboardExport the current conversation to clipboard in markdown format.
/export-to-fileExport the current conversation to a markdown file.
/feedbackOpen the static feedback experience. See Using /feedback in Warp for details.
/forkForks the current conversation into a new thread with the full context and history of the original.

You can optionally include a prompt that will be sent immediately in the forked conversation.
/fork-and-compactForks the current conversation and automatically compacts the forked version.

Useful when you want a fresh, summarized starting point that preserves relevant context while trimming the rest.
/fork-fromOpen a searchable menu to fork the conversation from a specific query. Select a query to create a fork that includes everything up to that point.
/harnessSwitch the harness for the current cloud agent conversation.
/hostSwitch the execution host for the current cloud agent conversation.
/indexIndex the current codebase using Codebase Context.
/initIndex the current codebase and generate an AGENTS.md file. {'*'}
/modelSwitch the base agent model for the current conversation.
/newStart a new agent conversation (alias for /agent).
/open-code-reviewOpen the code review pane.
/open-fileOpen a file for editing in Warp's code editor.
/open-mcp-serversView the status of your MCP servers.
/open-project-rulesOpen the Project Rules file (AGENTS).
/open-repoSwitch to another indexed repository.
/open-rulesView all of your global and project rules.
/open-settings-fileOpen the Warp settings file (settings.toml) in Warp's code editor.
/open-skillOpen an interactive menu to browse and edit project or global skills.
/orchestrateBreak a task into subtasks and run them in parallel with multiple agents. See Multi-agent orchestration. {'*'}
/planPrompt the Agent to do some research and create a plan for a task.
/profileSwitch the active execution profile.
/promptsSearch saved prompts.
/queueQueue a prompt to send after the agent finishes responding. See Prompt Queueing.
/rename-conversationRename the current conversation.
/rename-tabRename the current tab. Include the new tab name as an argument (for example, /rename-tab deploy).
/rewindRewind to a previous point in the conversation.
/skillsInvoke a skill from a searchable menu.
/usageOpen billing and usage settings.
+
Slash CommandDescription
/add-mcpAdd a new MCP server.
/add-promptAdd a new Agent Prompt in Warp Drive.
/add-ruleAdd a new Global Rule for the Agent.
/agentStart a new agent conversation. Optionally include a prompt to send immediately.
/changelogOpen the latest Warp changelog.
/cloud-agentStart a new cloud agent conversation. {'*'}
/compactFree up context by summarizing conversation history.
/compact-andCompact the current conversation and then send a follow-up prompt.
/conversationsOpen conversation history.
/copy-debugging-idCopy debugging information for the current conversation to your clipboard, so you can include it when reporting an issue. Available while a conversation is active.
/costToggle credit usage details in the current conversation.
/create-environmentCreate a Warp Environment (Docker image + repos) via guided setup. {'*'}
/create-new-projectHave the Agent walk you through creating a new coding project. {'*'}
/environmentSwitch the environment for the current cloud agent conversation.
/export-to-clipboardExport the current conversation to clipboard in markdown format.
/export-to-fileExport the current conversation to a markdown file.
/feedbackOpen the static feedback experience. See Using /feedback in Warp for details.
/forkForks the current conversation into a new thread with the full context and history of the original.

You can optionally include a prompt that will be sent immediately in the forked conversation.
/fork-and-compactForks the current conversation and automatically compacts the forked version.

Useful when you want a fresh, summarized starting point that preserves relevant context while trimming the rest.
/fork-fromOpen a searchable menu to fork the conversation from a specific query. Select a query to create a fork that includes everything up to that point.
/harnessSwitch the harness for the current cloud agent conversation.
/hostSwitch the execution host for the current cloud agent conversation.
/indexIndex the current codebase using Codebase Context.
/initIndex the current codebase and generate an AGENTS.md file. {'*'}
/modelSwitch the base agent model for the current conversation.
/newStart a new agent conversation (alias for /agent).
/open-code-reviewOpen the code review pane.
/open-fileOpen a file for editing in Warp's code editor.
/open-mcp-serversView the status of your MCP servers.
/open-project-rulesOpen the Project Rules file (AGENTS).
/open-repoSwitch to another indexed repository.
/open-rulesView all of your global and project rules.
/open-settings-fileOpen the Warp settings file (settings.toml) in Warp's code editor.
/open-skillOpen an interactive menu to browse and edit project or global skills.
/orchestrateBreak a task into subtasks and run them in parallel with multiple agents. See Multi-agent orchestration. {'*'}
/planPrompt the Agent to do some research and create a plan for a task.
/profileSwitch the active execution profile.
/promptsSearch saved prompts.
/queueQueue a prompt to send after the agent finishes responding. See Prompt Queueing.
/rename-conversationRename the current conversation.
/rename-tabRename the current tab. Include the new tab name as an argument (for example, /rename-tab deploy).
/rewindRewind to a previous point in the conversation.
/skillsInvoke a skill from a searchable menu.
/usageOpen billing and usage settings.
:::caution Slash commands marked with a `*` consume credits to complete the task. From b801ca8a9a26f6efb2297812cf8697078db04ceb Mon Sep 17 00:00:00 2001 From: hongyi-chen Date: Wed, 5 Aug 2026 17:16:50 +0000 Subject: [PATCH 2/2] docs: extend /copy-debugging-id coverage to the CLI reference and feedback guide Add the command to the Warp Agent CLI slash command table and describe what it copies in the Sending feedback and logs guide. Co-Authored-By: Oz Co-Authored-By: Warp Agent --- src/content/docs/cli/reference.mdx | 3 +++ .../sending-us-feedback.mdx | 11 +++++++++++ 2 files changed, 14 insertions(+) diff --git a/src/content/docs/cli/reference.mdx b/src/content/docs/cli/reference.mdx index 2ad276cf..990ce13a 100644 --- a/src/content/docs/cli/reference.mdx +++ b/src/content/docs/cli/reference.mdx @@ -113,6 +113,7 @@ Type `/` at the start of the input to open the slash command menu. Commands that | `/clear` | `[prompt]` | Clear the transcript and start a new conversation | | `/compact` | `[instructions]` | Free up context by summarizing the conversation history | | `/conversations` | | Open conversation history | +| `/copy-debugging-id` | | Copy the current conversation's debugging information to the clipboard | | `/cost` | | Toggle per-response credit usage details | | `/create-new-project` | `` | Have the agent walk you through creating a new coding project | | `/exit` | | Exit the CLI | @@ -231,6 +232,8 @@ Run `/view-logs` in a session to bundle the current session's log and recent pre On macOS, CLI logs are stored in `~/Library/Logs/warp-cli/`. Logs rotate per session, and only a limited number of recent sessions are kept. The `/view-logs` archive is written to the same directory. +When the problem is with the agent's response rather than the CLI itself, run `/copy-debugging-id` in the session. It copies the conversation's debugging information to your clipboard so you can paste it into a bug report. See [Gathering AI conversation ID](/support-and-community/troubleshooting-and-support/sending-us-feedback/#gathering-ai-conversation-id). + ### The browser doesn't open during sign-in The CLI signs you in with a browser-based flow. It opens a verification page (or shows you the URL and a code to enter) and continues once you approve the sign-in. On a remote or browser-less machine, the CLI can't launch a browser, but the sign-in screen still shows the verification URL and code. diff --git a/src/content/docs/support-and-community/troubleshooting-and-support/sending-us-feedback.mdx b/src/content/docs/support-and-community/troubleshooting-and-support/sending-us-feedback.mdx index 08647ad6..0ffa5b17 100644 --- a/src/content/docs/support-and-community/troubleshooting-and-support/sending-us-feedback.mdx +++ b/src/content/docs/support-and-community/troubleshooting-and-support/sending-us-feedback.mdx @@ -7,6 +7,7 @@ sidebar: label: "Sending Feedback & Logs" --- import { Tabs, TabItem } from '@astrojs/starlight/components'; +import { VARS } from '@data/vars'; ## Sending Warp feedback @@ -260,4 +261,14 @@ To gather the conversation ID, `RIGHT-CLICK` on the AI conversation block in que Whenever there is an error in the Agent Conversation, there will also be an option to directly copy the conversation ID for the bug report. +### Using `/copy-debugging-id` + +The [`/copy-debugging-id`](/agents/capabilities/slash-commands/) slash command copies the same information without leaving the input. It works in both the Warp app and the [{VARS.WARP_CLI}](/cli/), and it applies to the conversation you're currently in: + +1. Run `/copy-debugging-id` in the conversation you want to report. +2. Warp confirms with a "Debugging information copied to clipboard" message. +3. Paste the copied text into your bug report. + +The copied text is a small JSON payload with the conversation ID, plus the request ID when the command is run on a specific agent response — for example, `{"conversation_id":"abc123"}`. If the conversation hasn't reached Warp's servers yet, the command reports that no debugging ID is available; send a prompt first, then run it again. + ![Agent Mode error message with Send Feedback button and debug information containing request and conversation IDs](../../../../assets/support-and-community/send-feedback-debugging-information.png)