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 bestdeejay-design/agent-skills --skill raster-to-svggit clone --depth 1 https://github.com/bestdeejay-design/agent-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/bestdeejay-design/agent-skills/raster-to-svg)<a href="https://agentmods.dev/skills/bestdeejay-design/agent-skills/raster-to-svg"><img src="https://agentmods.dev/badge/skills/bestdeejay-design/agent-skills/raster-to-svg/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/bestdeejay-design/agent-skills/raster-to-svg"><img src="https://agentmods.dev/badge/skills/bestdeejay-design/agent-skills/raster-to-svg.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.00244 | $0.02323 |
| Opus 5 | $0.00122 | $0.01162 |
| Sonnet 5 | $0.00049 | $0.00465 |
| Haiku 4.5 | $0.00024 | $0.00232 |
Grade A, and why
raster-to-svg scanned grade A with 0 findings 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 today.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Raster To SVG
Превращает растровую PNG-картинку в масштабируемый векторный SVG.
Загружай этот скилл когда нужно перевести растровое изображение в вектор: для логотипов, иконок, схем, README-ассетов или любого PNG, который должен масштабироваться без потери качества.
🎯 When to use
Use this skill when:
- Есть PNG-файл (логотип, иконка, схема) и нужен SVG для вставки в веб/документацию
- Просят «векторизировать картинку», «png в svg», «trace image», «convert png to svg»
- Нужна детерминированная трассировка без внешних зависимостей (только Python 3)
- Хочется стилизованный результат: контурную обводку или мозаику из примитивов
Do NOT use when:
- Исходник уже в векторе (SVG/PDF/EPS) — трассировка растра не нужна
- Нужна фотореалистичная векторизация сложных фото — лучше специализированный редактор
- Формат не PNG — CLI принимает только PNG на входе (в веб-интерфейсе JPG/JPEG/WEBP конвертируются автоматически в браузере)
📦 Files
SKILL.md— этот файлscripts/raster_to_svg.py— конвертер PNG → SVG (Python 3 stdlib, без pip)scripts/raster_to_svg_server.py— локальный веб-сервер с UI (стандартныйhttp.server)scripts/svg_export.py— конвертеры SVG → DXF R12 / EPS (слои по цвету заливки)scripts/raster_to_svg_mcp.py— опциональный MCP-сервер для AI-агентовexamples/web/— фронтенд (index.html+style.css+app.js): drag & drop (PNG/JPG/WEBP с локальной перекодировкой), sticky-превью с лупой ×4 на результате, 12 быстрых пресетов (плоский стиль, минимал, лайн-арт, иконка, логотип, фото-плоский, фото, дуотон, винтаж, чб, мозаика-постер, мозаика-круги) с меткой «ручные настройки» при ручном изменении, скрытие неактуальных групп настроек движка (vtracer/native/мозаика), подготовка фото (сглаживание + ступени цвета в браузере), прогресс-бар, код SVG, скачивание
🧰 Usage
# Базово: PNG → SVG с белым фоном:
python3 skills/raster-to-svg/scripts/raster_to_svg.py -i logo.png -o logo.svg --bg white
# Меньше цветов (нативный contour):
python3 raster_to_svg.py -i logo.png -o logo.svg --colors 4
# Мозаичный постер из примитивов:
python3 raster_to_svg.py -i icon.png -o icon.svg -m mosaic --cell 8 --shape auto
# Пайплайн stdin → stdout:
cat icon.png | python3 raster_to_svg.py -i - -o -
# Машиночитаемый отчёт:
python3 raster_to_svg.py -i logo.png -o logo.svg --json
# Принудительно нативный движок (без vtracer):
python3 raster_to_svg.py -i logo.png -o logo.svg --engine native
What ships with it
21 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- evals/evals.json 2.9 KB
- evals/fixtures/alpha.png 485 B
- evals/fixtures/gradient.png 815 B
- evals/fixtures/pixelart.png 165 B
- evals/fixtures/ring.png 452 B
- evals/fixtures/shapes.png 932 B
- evals/gen_fixtures.py 3.4 KB runs code
- evals/qa_pixels.py 4.8 KB runs code
- evals/qa_shapes-src.png 3.6 KB
- examples/web/app.js 47 KB runs code
- examples/web/index.html 18 KB
- examples/web/style.css 15 KB
- README.md 5.1 KB
- README.ru.md 7.7 KB
- references/BENCHMARK.md 2.6 KB
- scripts/raster_to_svg_mcp.py 13 KB runs code
- scripts/raster_to_svg_server.py 20 KB runs code
- scripts/raster_to_svg.py 40 KB runs code
- scripts/start_server.bat 482 B runs code
- scripts/svg_export.py 25 KB runs code
- skill.json 3.0 KB
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.
- today Changed · +8 lines 895ac6112f3c
- 12d ago First seen · 113 lines · 244 tokens per session scan A 7b7cbe9ea74c
raster-to-svg is a skill published in the GitHub repository bestdeejay-design/agent-skills (6 stars, last pushed today), licensed MIT. It adds 244 tokens to every session and 2,323 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
workflow
Use when a task is too large for turn-by-turn orchestration and should run through the big-task workflow lane: system-wide changes, large migrations, repo-wide audits, high-confidence verification, or tasks explicitly asking to run a workflow. Claude Code uses native dynamic workflows; Codex, OpenCode, and Grok use…
skill-compiler
Automatic solved-to-skill compiler — detects novel task completions and autonomously drafts new SKILL.md files. Stolen from Hermes Agent's learning loop (NousResearch, 2026-05-11).
context-compactor
9-section context compression with analysis scratchpad. Adapted from Claude Code's /compact system (2026-03-31).
daemon-loop
Autonomous recurring agent tasks — converts workflows into persistent background daemons that run on intervals. Stolen from Boris Cherny's Claude Code /loop pattern (2026-03-31).
trade-journal-analyzer
Unified post-trade analytics: journal pattern extraction + drawdown classification. Absorbs: drawdown-classifier.
Deep Research Loop
Multi-step web research, compilation, and synthesis workflow. Scrapes multiple sources, cross-references claims, and produces a structured research brief.