PO

positron-abstract-svg

Generates on-brand, abstract SVG visuals for IDE documentation.

Install

mkdir -p .claude/skills/positron-abstract-svg && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11939" && unzip -o skill.zip -d .claude/skills/positron-abstract-svg && rm skill.zip

Installs to .claude/skills/positron-abstract-svg

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Create or update abstract SVG illustrations for the Positron IDE -- for use in documentation, walkthrough steps, onboarding images, and feature previews. Use this skill whenever someone asks to make, update, or redesign an SVG image for Positron docs, walkthroughs, or any visual asset representing the Positron IDE UI. Also use it when asked to make images "consistent" with existing Positron walkthrough images, or to add a new image to match an existing set. Trigger on: "make an SVG for the walkthrough", "create an abstract image for the notebook feature", "update the hero image", "make it look like the other Positron SVGs", "add a docs image for X feature".
665 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Intermediate

Key capabilities

  • Create abstract SVG illustrations for Positron IDE
  • Update existing SVG images
  • Redesign SVG images for Positron docs
  • Ensure visual consistency with existing Positron SVGs
  • Depict any part of the Positron IDE UI
  • Apply specific color palette and styling rules

How it works

The skill creates or updates abstract SVG illustrations for the Positron IDE by applying critical constraints like no external CSS/JS, using a specific color palette, and adhering to icon and layering conventions.

Inputs & outputs

You give it
User request for an abstract SVG illustration for Positron IDE
You get back
A static SVG image adhering to Positron's styling conventions

When to use positron-abstract-svg

  • Create SVG for documentation
  • Update hero images
  • Maintain visual consistency

About this skill

Positron Abstract SVG Skill

This skill helps you create clean, on-brand abstract SVG illustrations of the Positron IDE for documentation, walkthroughs, onboarding, and feature previews.

It applies to any part of the Positron IDE -- editor, notebooks, data explorer, console, plots, variables pane, terminal, AI assistant, and so on. The bundled examples and component patterns happen to focus on notebooks (that is what has been built so far), so treat them as a starting library rather than the full scope: the constraints, palette, fonts, layering rules, and icon conventions generalize to any surface. For a surface not yet covered, work from a screenshot and compose new components from the same primitives in the same style.

Critical Constraints

These are static SVGs rendered as plain images (e.g. <img src="...">) in many different contexts -- documentation sites, in-app walkthroughs, READMEs, etc. They cannot rely on the host page's styles or scripts. This means:

  • No external CSS / CSS variables -- references like var(--some-token) will NOT resolve. All colors must be self-contained (hardcoded hex values, or an inline <style> block within the SVG itself).
  • No JavaScript -- static SVG only.
  • Assume a light background by default -- the palette and examples target a light context. Supporting both light and dark themes is a nice-to-have, not a requirement (see below); reach for it when the SVG will appear on surfaces of both kinds.
  • Sizing: walkthrough images are commonly width="520" height="260", but pick a size and aspect ratio that suits the surface you are depicting and where the image will appear.

For a light-only image, start with an opaque white background rect:

<rect width="520" height="260" fill="#FFFFFF"/>

To support light and dark, omit the opaque background and either use colors that read on both, or adapt with an inline <style> block inside the SVG (a @media (prefers-color-scheme: dark) rule honored when the SVG carries its own styles). Keep it simple and always preview on both backgrounds.

Color Palette

These images exist to communicate complex UI simply. Clarity comes first -- a color that helps the eye parse the layout is worth using even if it isn't an exact Positron theme color. Matching the Positron theme is a nice-to-have, not a requirement; reach for whatever reads clearly at small sizes.

The palette below is a tested starting point. #447099 is the Positron brand blue; reserve it for the focal point. Treat the grays as a coherent set rather than precise values to match.

ColorHexUse
Positron accent#3A78B1The theme's real accent, from positron_light.json: activity bar background, active tab underline (tab.activeBorderTop, panelTitle.activeBorder), buttons, badges, links, progress. Use it whenever you are depicting actual Positron chrome
Illustration blue#447099Focal-point highlights inside these images: active cell border, Python dropdown border, plot lines. Not present in any theme file -- don't reach for it to color chrome
Running kernel green#3DAA6ESession status dot in kernel/Python dropdown
Icon gray#5A5A5AAll toolbar and action bar icons
Line number blue#8DA5B8Code cell line numbers
Code placeholder#C8C8C8Gray rects representing code lines
Output placeholder#D0D0D0X-axis tick labels and secondary placeholder rects
Panel header bg#F4F4F4Panel headers (Variables, Posit Assistant)
Toolbar bg#FAFAFANotebook toolbar background
Tab bar bg#F2F2F2Inactive tab area
Active tab bg#FFFFFFActive file tab
Cell separator#EEEEEELine between code area and output area in cells
Panel separator#E0E0E0Vertical dividers between panels; toolbar bottom border
Inactive cell bg#F8F8F8Gray background of code area inside cells
Highlighted row#EEF3F8Selected/highlighted row in variables pane
Syntax: variable#447099Variable names in code (blue)
Syntax: number/value#098658Numbers and values in code (green)
Syntax: function#C75C5CFunction names like print (red)
Syntax: string#B07020String literals (orange-brown)
Header text#3E4246Panel header labels
Body text#333333Tab labels and readable text
Muted text#8A8A8AExecution count [n], secondary labels

Gathering Input Before You Start

The more context you have about the actual UI, the better the abstract image will be. Ask the user for:

  • A screenshot of the actual Positron UI being depicted -- this shows exact proportions, which elements are present, and what the focal point should be. If no screenshot is available, describe what you plan to show and confirm with the user.
  • Codicon names for any toolbar or action bar icons -- e.g., notebook-execute, debug-alt-small, run-above. Use the ready-made paths in references/codicons.md; these are the curated, consistent set the existing walkthrough images already use. For an icon not listed there, copy the d= from node_modules/@vscode/codicons/src/icons/<name>.svg, then simplify it to match the flat style of the existing set (upstream codicons have evolved, so a fresh pull may not match visually).
  • File type icons -- Positron uses the Seti UI file icon theme. It ships only as a font (extensions/theme-seti/icons/seti.woff), so there is no per-file SVG in the repo. Don't hand-draw one and don't fetch from the seti-ui repo over the network -- pull the exact glyph out of the font we ship. See "Extracting a Seti file icon" below.

Workflow

  1. Gather input -- screenshot of the UI, icon names, file types (see above).
  2. Plan the layout -- decide what panels/components to show and their proportions.
  3. Sketch in SVG -- write the SVG, starting with background elements, then building up layers.
  4. Preview -- always render a preview before saving to file; this catches layout issues early. In Claude Desktop, use the show_widget tool -- it renders the SVG inline and is the fastest way to iterate. In other environments (CLI, etc.), show_widget is unavailable, so preview by writing the SVG to a temp file and opening it in a browser or image viewer.
  5. Iterate -- adjust based on the preview, re-render, repeat until it looks right.
  6. Save -- write the final SVG to the correct path in the repository. If you previewed via a renderer (e.g. show_widget in Claude Desktop), strip any cruft it injected before saving: per-element style="fill:rgb(...);..." attributes (the fill="#hex" attribute already carries the color) and any Anthropic Sans / renderer-specific font names. Ship clean SVG with only the font stacks listed below.

SVG Layering (Z-order)

SVG renders elements in document order -- later elements appear on top. The general rule: draw containers before their contents, and floating/overlay elements last. For example:

  • Draw a container's border and background before the content inside it (a cell, panel, dialog, etc.).
  • Draw floating toolbars and overlays after their parent so they sit on top (e.g. a cell action bar).
  • Draw separator/divider lines early so later content overlaps them cleanly.

Fonts

  • UI labels, tab names, panel headers: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
  • Code and line numbers: 'Consolas', 'SF Mono', 'Menlo', monospace

Code Representation

Never write real readable text (code, labels, descriptions) in these illustrations unless the content is the focal point of the image. Use placeholder gray rects for any body text instead:

<!-- Good: placeholder code lines -->
<rect x="58" y="90" width="200" height="4" rx="2" fill="#C8C8C8"/>
<rect x="58" y="102" width="80" height="4" rx="2" fill="#C8C8C8"/>
<rect x="58" y="114" width="120" height="4" rx="2" fill="#C8C8C8"/>

When a specific piece of code IS the point (e.g., showing syntax highlighting for a kernel selector image), use <tspan> elements inside a <text> element for multi-color syntax:

<text x="58" y="86" font-family="'Consolas', 'SF Mono', 'Menlo', monospace" font-size="10.5">
  <tspan fill="#447099">x</tspan><tspan fill="#5A5A5A"> = </tspan><tspan fill="#098658">10</tspan>
</text>

Toolbar Icons (Codicons)

All toolbar icons use codicon SVG paths scaled to fit inside a 16x16 coordinate space. See references/codicons.md for the curated, ready-to-use icon paths.

Usage pattern -- scale icons to 16px at translate(x, y):

<g transform="translate(10, 37)" fill="#5A5A5A">
  <path d="...codicon path..."/>
</g>

For smaller contexts (cell action bar at ~11px), scale down:

<g transform="translate(35, 68) scale(0.7)" fill="#5A5A5A">
  <path d="...codicon path..."/>
</g>

The activity bar always gets real icons

The activity bar is the strip down the left edge of Positron (VS Code calls it the activity bar; it is the thing that switches which primary side bar view you see). Draw its icons as the actual codicons Positron shows there -- Explorer, Search, Source Control, Run and Debug, Extensions -- in that order. Never fill it with abstract squares, circles, or alternating shapes.

A row of nameless blobs is the one place in these images where abstraction costs more than it saves. Everywhere else a gray rect clearly stands in for text the reader is meant to skip. In the activity bar it just reads as noise, and it throws away the fastest cue that says "this is an IDE." Real glyphs also anchor the reader: they can find the same icons in their own window.

The rule holds even at small sizes. Explorer, Search, Source Control, and Extensions all stay readable down to about 9px; debug-alt is the first to turn to mush, so drop it before the others if you are showing fewer icons.


Content truncated.

When not to use it

  • When the SVG needs external CSS or JavaScript
  • When the SVG needs to rely on the host page's styles or scripts
  • When the image is not for Positron IDE documentation or previews

Limitations

  • No external CSS / CSS variables
  • No JavaScript
  • Assume a light background by default

How it compares

This skill ensures visual consistency and adherence to specific technical constraints for Positron IDE SVGs, unlike general SVG creation tools.

Compared to similar skills

positron-abstract-svg side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
positron-abstract-svg (this skill)01moNo flagsIntermediate
ohmycaptcha-image05moNo flagsBeginner
draw-io416moReviewIntermediate
theme-factory613moNo flagsBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

More by posit-dev

View all by posit-dev

positron-e2e-tests

posit-dev

This skill should be used when writing, debugging, or maintaining Playwright e2e tests for Positron. Load this skill when creating new test files, adding test cases, fixing flaky tests, or understanding the test infrastructure.

610

positron-intake-rotation

posit-dev

This skill should be used when handling issue intake rotation duties for the Positron repository. It provides workflows for reviewing and organizing new issues, responding to discussions, handling support tickets, and searching for related content. Use this skill when on intake rotation duty, when helping someone with intake tasks, or when learning the intake rotation process.

213

port-from-bslib

posit-dev

Comprehensive guide for porting UI components from R's bslib package to py-shiny. Use this skill when: (1) User asks to "port this feature" or "port a component" and mentions bslib or links to a bslib PR (e.g., github.com/rstudio/bslib/pull/...), (2) Porting a new component from bslib to py-shiny, (3) Adding a new input, output, or UI component that exists in bslib, (4) Implementing feature parity with bslib, (5) Working on bslib-related features or components. Covers the complete workflow including understanding source implementation, creating Python equivalents, vendoring assets (SCSS, CSS, JavaScript), creating tests, documentation, and all necessary project files.

17

positron-issue-creator

posit-dev

This skill should be used when drafting GitHub issues for the Positron repository. It provides workflows for searching duplicates, selecting appropriate labels, gathering complete context through questioning, and writing terse, fluff-free issues that precisely describe what is needed or wrong. The skill prepares issues for manual submission by the user. Use this skill when the user asks to draft or prepare an issue for Positron.

14

positron-pr-helper

posit-dev

Generates well-structured PR bodies with dynamically fetched e2e test tags

16

positron-qa-verify

posit-dev

Generates clear, actionable verification guides for QA testing of Positron bug fixes and features

12

You might also like

ohmycaptcha-image

shenhao-stu

Generate product visuals, README banners, documentation illustrations, and architecture diagrams for OhMyCaptcha. Use when the user asks for repository art, hero images, deployment diagrams, or marketing visuals for captcha infrastructure projects.

00

draw-io

davila7

draw.io diagram creation, editing, and review. Use for .drawio XML editing, PNG conversion, layout adjustment, and AWS icon usage.

41204

theme-factory

anthropics

Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.

61161

brand-guidelines

anthropics

Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.

9140

canvas-design

anthropics

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

26112

ui-design-system

davila7

UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.

29108

Search skills

Search the agent skills registry