From f22824ecac9cf9cb79cbb28a9e894123c3092ea4 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Fri, 31 Oct 2025 11:04:16 -0400 Subject: [PATCH] add SVG guidelines Co-authored-by: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> --- docs/src/extensions/agent-servers.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/src/extensions/agent-servers.md b/docs/src/extensions/agent-servers.md index fdda0474b7350b857a60c4a9d53c3ce41acd33aa..f5892868c7ca40f30fc895b46999b5c5a5c4bfb8 100644 --- a/docs/src/extensions/agent-servers.md +++ b/docs/src/extensions/agent-servers.md @@ -137,5 +137,14 @@ To test your Agent Server Extension: 3. Select your Agent Server from the list 4. Verify that it downloads, installs, and launches correctly 5. Test its functionality by conversing with it and watching the [ACP logs](../ai/external-agents.md#debugging-agents) +## Icon Guideline +In case your agent server has a logo, we highly recommend adding it as an SVG icon. +For optimal display, follow these guidelines: + +- Make sure you resize your SVG to fit a 16x16 bounding box, with a padding of around one or two pixels +- Ensure you have a clean SVG code by processing it through [SVGOMG](https://jakearchibald.github.io/svgomg/) +- Avoid including icons with gradients as they will often make the SVG more complicated and possibly not render perfectly + +Note that we won't include colors; any icon you include will be displayed in monochrome so as to preserve Zed's design consistency. This is all you need to distribute an agent server through Zed's extension system!