Agent Panel
The Agent Panel provides you with a way to interact with LLMs. You can use it for various tasks, such as generating code, asking questions about your code base, and general inquiries such as emails and documentation.
To open the Agent Panel, use the agent: new thread
action in the Command Palette or click the ✨ (sparkles) icon in the status bar.
If you're using the Agent Panel for the first time, you'll need to configure at least one LLM provider.
Overview
After you've configured one or more LLM providers, type at the message editor and hit enter
to submit your prompt.
If you need extra room to type, you can expand the message editor with shift-alt-escape|shift-alt-escape.
You should start to see the responses stream in with indications of which tools the AI is using to fulfill your prompt.
Editing Messages
Any message that you send to the AI is editable. You can click on the card that contains your message and re-submit it with an adjusted prompt and/or new pieces of context.
Checkpoints
Every time the AI performs an edit, you should see a "Restore Checkpoint" button to the top of your message, allowing you to return your codebase to the state it was in prior to that message.
Navigating History
To quickly navigate through recently opened threads, use the cmd-shift-j|ctrl-shift-j binding, when focused on the panel's editor, or click the hamburger icon button at the top left of the panel to open the dropdown that shows you the six most recent threads.
The items in this menu function similarly to tabs, and closing them doesn’t delete the thread; instead, it simply removes them from the recent list.
To view all historical conversations, reach for the View All
option from within the same menu or via the cmd-shift-h|ctrl-shift-h binding.
Following the Agent
Zed is built with collaboration natively integrated. This approach extends to collaboration with AI as well. To follow the agent reading through your codebase and performing edits, click on the "crosshair" icon button at the bottom left of the panel.
Get Notified
If you send a prompt to the Agent and then move elsewhere, thus putting Zed in the background, you can be notified of whether its response is finished either via:
- a visual notification that appears in the top right of your screen
- or a sound notification
Both notification methods can be used together or individually according to your preference.
You can customize their behavior, including turning them off entirely, by using the agent.notify_when_agent_waiting
and agent.play_sound_when_agent_done
settings keys.
Reviewing Changes
Once the agent has made changes to your project, the panel will surface which files, and how many of them, have been edited.
To see which files specifically have been edited, expand the accordion bar that shows up right above the message editor or click the Review Changes
button (shift-ctrl-r|shift-ctrl-r), which opens a multi-buffer tab with all changes.
You're able to reject or accept each individual change hunk, or the whole set of changes made by the agent.
Edit diffs also appear in individual buffers. So, if your active tab had edits made by the AI, you'll see diffs with the same accept/reject controls as in the multi-buffer.
Adding Context
Although Zed's agent is very efficient at reading through your codebase to autonomously pick up relevant files, directories, and other context, manually adding context is still encouraged as a way to speed up and improve the AI's response quality.
If you have a tab open when opening the Agent Panel, that tab appears as a suggested context in form of a dashed button.
You can also add other forms of context by either mentioning them with @
or hitting the +
icon button.
You can even add previous threads as context by mentioning them with @thread
, or by selecting the "New From Summary" option from the top-right menu to continue a longer conversation, keeping it within the context window.
Pasting images as context is also supported by the Agent Panel.
Token Usage
Zed surfaces how many tokens you are consuming for your currently active thread in the panel's toolbar. Depending on how many pieces of context you add, your token consumption can grow rapidly.
With that in mind, once you get close to the model's context window, a banner appears below the message editor suggesting to start a new thread with the current one summarized and added as context. You can also do this at any time with an ongoing thread via the "Agent Options" menu on the top right.
Changing Models
After you've configured your LLM providers—either via a custom API key or through Zed's hosted models—you can switch between them by clicking on the model selector on the message editor or by using the cmd-alt-/|ctrl-alt-/ keybinding.
Using Tools
The new Agent Panel supports tool calling, which enables agentic editing. Zed comes with several built-in tools that allow models to perform tasks such as searching through your codebase, editing files, running commands, and others.
You can also extend the set of available tools via MCP Servers.
Profiles
Profiles act as a way to group tools. Zed offers three built-in profiles and you can create as many custom ones as you want.
Built-in Profiles
Write
: A profile with tools to allow the LLM to write to your files and run terminal commands. This one essentially has all built-in tools turned on.Ask
: A profile with read-only tools. Best for asking questions about your code base without the concern of the agent making changes.Minimal
: A profile with no tools. Best for general conversations with the LLM where no knowledge of your code base is necessary.
You can explore the exact tools enabled in each profile by clicking on the profile selector button > Configure Profiles…
> the one you want to check out.
Custom Profiles
You can create a custom profile via the Configure Profiles…
option in the profile selector.
From here, you can choose to Add New Profile
or fork an existing one with a custom name and your preferred set of tools.
You can also override built-in profiles.
With a built-in profile selected, in the profile selector, navigate to Configure Tools
, and select the tools you'd like.
Zed will store this profile in your settings using the same profile name as the default you overrode.
All custom profiles can be edited via the UI or by hand under the assistant.profiles
key in your settings.json
file.
Model Support
Tool calling needs to be individually supported by each model and model provider. Therefore, despite the presence of tools, some models may not have the ability to pick them up yet in Zed. You should see a "No tools" label if you select a model that falls into this case.
We want to support all of them, though! We may prioritize which ones to focus on based on popularity and user feedback, so feel free to help and contribute to fast-track those that don't fit this bill.
All Zed's hosted models support tool calling out-of-the-box.
MCP Servers
Similarly to the built-in tools, some models may not support all tools included in a given MCP Server. Zed's UI will inform about this via a warning icon that appears close to the model selector.
Text Threads
"Text threads" present your conversation with the LLM in a different format—as raw text. With text threads, you have full control over the conversation data. You can remove and edit responses from the LLM, swap roles, and include more context earlier in the conversation.
For users who have been with us for some time, you'll notice that text threads are our original assistant panel—users love it for the control it offers. We do not plan to deprecate text threads, but it should be noted that if you want the AI to write to your code base autonomously, that's only available in the newer, and now default, "Threads".
Text Thread History
Content from text thread are saved to your file system. Visit the dedicated docs for more info.
Errors and Debugging
In case of any error or strange LLM response behavior, the best way to help the Zed team debug is by reaching for the agent: open thread as markdown
action and attaching that data as part of your issue on GitHub.
This action exposes the entire thread in the form of Markdown and allows for deeper understanding of what each tool call was doing.
You can also open threads as Markdown by clicking on the file icon button, to the right of the thumbs down button, when focused on the panel's editor.
Feedback
Every change we make to Zed's system prompt and tool set, needs to be backed by an eval with good scores.
Every time the LLM performs a weird change or investigates a certain topic in your codebase completely incorrectly, it's an indication that there's an improvement opportunity.
Note that rating responses will send your data related to that response to Zed's servers. See AI Improvement and Privacy and Security for more information about Zed's approach to AI improvement, privacy, and security. If you don't want data persisted on Zed's servers, don't rate. We will not collect data for improving our Agentic offering without you explicitly rating responses.
The best way you can help influence the next change to Zed's system prompt and tools is by rating the LLM's response via the thumbs up/down buttons at the end of every response. In case of a thumbs down, a new text area will show up where you can add more specifics about what happened.
You can provide feedback on the thread at any point after the agent responds, and multiple times within the same thread.