Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add bgorkem/bgorkem-skills --skill svg-to-pnggit clone --depth 1 https://github.com/bgorkem/bgorkem-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bgorkem/bgorkem-skills/svg-to-png)<a href="https://agentmods.dev/skills/bgorkem/bgorkem-skills/svg-to-png"><img src="https://agentmods.dev/badge/skills/bgorkem/bgorkem-skills/svg-to-png/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bgorkem/bgorkem-skills/svg-to-png"><img src="https://agentmods.dev/badge/skills/bgorkem/bgorkem-skills/svg-to-png.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00103 | $0.02530 |
| Opus 5 | $0.00051 | $0.01265 |
| Sonnet 5 | $0.00021 | $0.00506 |
| Haiku 4.5 | $0.00010 | $0.00253 |
Grade B, and why
svg-to-png scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- Ubuntu/Debian/Raspberry Pi OS: `sudo apt install librsvg2-bin` How it starts
The opening of the file, as written. The whole thing — 174 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SVG to PNG
Convert a single SVG file to a PNG using rsvg-convert. Produces a high-resolution raster suitable for platforms that don't render SVG inline (Medium, Notion, slide decks, social posts).
The default render width is 1600px, chosen as a sensible 2× density for Medium's ~700px content column. Override when the destination calls for something different.
When to use
Trigger on any of:
- "Convert
<file>.svgto png" - "Render this svg as a png"
- "Export the diagram as png for Medium"
- "Make a png version of
<file>.svg"
If the user asks to convert multiple SVGs at once, or to convert a folder of SVGs, this skill is not the right fit — it deliberately handles one file per call. Either run it once per file, or tell the user that batch conversion isn't supported by this skill and offer to do them one at a time.
If the user asks to convert to JPEG, WebP, PDF, or any non-PNG format, this skill isn't the right fit — say so and suggest rsvg-convert -f <format> directly (it supports pdf, ps, eps, but not JPEG/WebP — for those they'd need ImageMagick).
Requirements
rsvg-convertmust be installed and on the system PATH. Install methods:- macOS:
brew install librsvg - Ubuntu/Debian/Raspberry Pi OS:
sudo apt install librsvg2-bin - Verify with:
rsvg-convert --version
- macOS:
If rsvg-convert is missing, stop and tell the user how to install it for their platform — don't fall back to ImageMagick or other tools, because their SVG renderers handle CSS classes and modern SVG features poorly.
Inputs
The user provides — or this skill infers from context — these values:
| Input | Required | Default | Notes |
|---|---|---|---|
input_path |
Yes | — | Path to the source SVG file. Can be absolute or relative to cwd. |
output_path |
No | Same path as input with .svg replaced by .png |
Where to write the PNG. |
width |
No | 1600 |
Render width in pixels. Height is computed from the SVG's aspect ratio. |
background_color |
No | transparent | Any CSS color value: named (black, white), hex (#1e1e1e), or rgba(r,g,b,a). Omit the flag entirely to keep the default transparent background. |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 174 lines · 103 tokens per session scan B b526513e9d32
svg-to-png is a skill published in the GitHub repository bgorkem/bgorkem-skills (4 stars, last pushed 2mo ago), licensed MIT. It adds 103 tokens to every session and 2,530 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
information-architecture
Design the structure of a website or product including sitemap, navigation, URL structure, content types, taxonomy, and labeling. Use this skill whenever the user asks to plan a sitemap, design navigation, structure URLs, define content types, build taxonomies, design site search, or organize content at the system…
journey-mapping
Build customer journey maps and service blueprints that visualize the end-to-end user experience including touchpoints, emotions, friction, and underlying systems. Use this skill whenever the user wants to map a customer journey, build a service blueprint, identify friction across an experience, align teams on the…
usability-testing
Plan and run usability tests on existing or prototype designs including test design, task scripts, moderation, observation, and findings synthesis. Use this skill whenever the user wants to test usability, run a moderated test, run an unmoderated test, validate a design, find usability issues, or improve task…
brand-style-guide
Build or audit a comprehensive brand style guide that documents the full brand system including story, logo system, color, typography, imagery, voice, applications, and dos/don'ts. Use this skill whenever the user wants to create brand guidelines, document an existing brand, build a brand book, audit an existing style…
visual-qa
Runs rigorous visual QA across web, terminal, and paginated surfaces with screenshot evidence and a verdict. Use for any UI build or change, or when asked whether a page, component, or TUI looks right.
frontend
Builds, styles, and polishes web UI and UX. Use for any frontend, page, component, styling, layout, animation, or visual-quality task, or when asked to make an interface look or feel a certain way.