SVG Recolor for Power BI

SVG Recolor for Power BI is a skill for Claude Code, Codex from CSalcedoDataBI/powerbi-pbip-tools. It costs 73 tokens per session (2,468 once invoked), scanned A, original, MIT.

A Power BI project utility for finding and changing real color values in SVG icon files. Power BI is Microsoft's data-reporting and dashboard software, and SVG is a scalable image format.

In plain words
What is it for?
Use it to scan PBIP projects for colors, preview replacements, and recolor selected SVG values with backups.
Why use it?
It avoids manually editing many SVG files and helps prevent accidental changes to references, CSS selectors, or file encoding.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to scan PBIP projects for colors, preview replacements, and recolor selected SVG values with backups.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/csalcedodatabi/powerbi-pbip-tools/skill-svg-recolor-powerbi
Install

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.

Any agent
npx skills add CSalcedoDataBI/powerbi-pbip-tools --skill skill-svg-recolor-powerbi
Clone the repo
git clone --depth 1 https://github.com/CSalcedoDataBI/powerbi-pbip-tools

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for SVG Recolor for Power BI

README.md
[![agentmods](https://agentmods.dev/badge/skills/csalcedodatabi/powerbi-pbip-tools/skill-svg-recolor-powerbi/github.svg)](https://agentmods.dev/skills/csalcedodatabi/powerbi-pbip-tools/skill-svg-recolor-powerbi)
Your own site
<a href="https://agentmods.dev/skills/csalcedodatabi/powerbi-pbip-tools/skill-svg-recolor-powerbi"><img src="https://agentmods.dev/badge/skills/csalcedodatabi/powerbi-pbip-tools/skill-svg-recolor-powerbi/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.

agentmods 80×15 button for SVG Recolor for Power BI

Your own site · 80×15
<a href="https://agentmods.dev/skills/csalcedodatabi/powerbi-pbip-tools/skill-svg-recolor-powerbi"><img src="https://agentmods.dev/badge/skills/csalcedodatabi/powerbi-pbip-tools/skill-svg-recolor-powerbi.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,468 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00073 $0.02468
Opus 5 $0.00036 $0.01234
Sonnet 5 $0.00015 $0.00494
Haiku 4.5 $0.00007 $0.00247

Measured 8d ago against content hash 784e9dbff3fa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

SVG Recolor for Power BI 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 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/detect-colors.ps1, scripts/recolor.ps1), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/skill-svg-recolor-powerbi/SKILL.md · 184 lines

How it starts

The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SVG Recolor for Power BI

🇬🇧 English version → SKILL.en.md

Los iconos de un informe de Power BI viven como .svg sueltos dentro del proyecto PBIP. Cambiar la paleta a mano significa abrir decenas o cientos de archivos. Esta skill hace dos cosas: decir qué colores hay y cambiarlos, con la promesa de que no toca nada más del archivo.

Clonar solo esta skill

git clone --filter=blob:none --sparse https://github.com/CSalcedoDataBI/powerbi-pbip-tools.git
cd powerbi-pbip-tools
git sparse-checkout set skills/skill-svg-recolor-powerbi

Flujo

Siempre en este orden. detect primero, porque -From sin saber qué hay dentro es adivinar.

detect-colors.ps1  →  recolor.ps1 -WhatIf  →  recolor.ps1 -Backup
   ¿qué hay?            ¿qué cambiaría?         hacerlo

1. Ver qué colores hay

.\scripts\detect-colors.ps1 -PbipDir "C:\MiProyecto"
SVGs   : 184 scanned (184 found)
Colors : 1 unique hex colors found

  #0078D4  (184 files)

Con -PassThru devuelve objetos (Report, Color, FileCount) en vez de texto, para encadenarlo con otro script.

2. Ver qué cambiaría, sin cambiarlo

.\scripts\recolor.ps1 -PbipDir "C:\MiProyecto" -From "#0078D4" -To "#DC143C" -WhatIf

3. Hacerlo

.\scripts\recolor.ps1 -PbipDir "C:\MiProyecto" -From "#0078D4" -To "#DC143C" -Backup

Parámetros

detect-colors.ps1

Parámetro Tipo Qué hace
-PbipDir obligatorio Carpeta del proyecto PBIP. Se recorren todas las carpetas .Report que contenga
-PassThru switch Emite objetos en vez de imprimir un informe
-Scope Resources|Dax|Visuals|All Igual que en recolor.ps1. Por defecto Resources

recolor.ps1

Parámetro Tipo Qué hace
-PbipDir obligatorio Carpeta del proyecto PBIP
-To obligatorio Color destino. #RGB, #RGBA, #RRGGBB o #RRGGBBAA
-From lista Solo estos colores. Sin -From, se sustituye todo color detectado
-Exclude lista Colores que no se tocan. Gana sobre -From
-Backup switch Copia los SVG antes de escribir
-BackupRoot ruta Dónde va la copia. Por defecto fuera del proyecto, para que no acabe siendo entrada del siguiente escaneo
-WhatIf switch No escribe nada; informa de lo que haría
-Scope Resources|Dax|Visuals|All Dónde buscar. Por defecto Resources

Read the full file on GitHub · 184 lines

Files

What ships with it

7 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.

Changes

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.

  1. 8d ago First seen · 184 lines · 73 tokens per session scan A 784e9dbff3fa

Subscribe to this mod's changes

SVG Recolor for Power BI is a skill published in the GitHub repository CSalcedoDataBI/powerbi-pbip-tools (4 stars, last pushed 9d ago), licensed MIT. It adds 73 tokens to every session and 2,468 once invoked, about $0.0004 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-09-04.

Related

Other skills, from other repositories

taiyi-ui-design

A design-planning guide for describing how an application's user interface should look and behave. It produces a UI-DESIGN.md document covering layouts, components, interactions, accessibility, and error states.

Dong90/oh-my-taiyiforge · 35 tokens

taiyi-diagram-arch

A workflow for turning written system or product architecture into readable, version-controlled diagrams using Mermaid or exported SVG and PNG files. Architecture diagrams show components, boundaries, data flows, and deployment relationships.

Dong90/oh-my-taiyiforge · 48 tokens

taiyi-restyle

A planning guide for breaking a large user-interface redesign into smaller, independently reviewable tasks. A user interface is the part of an application that people see and use.

Dong90/oh-my-taiyiforge · 39 tokens

taiyi-diagram-pipeline

A pipeline that creates and updates architecture diagrams in three stages: a C4 model from the code, an engineering architecture diagram, and an exported PNG image. C4 is a way to describe software architecture at several levels of detail.

Dong90/oh-my-taiyiforge · 52 tokens

taiyi-diagram-render

A tool for rendering existing C4 or architecture Mermaid diagrams as SVG or PNG images. C4 is a way to show software systems at different levels, while Mermaid is a text format for diagrams.

Dong90/oh-my-taiyiforge · 50 tokens

flowchart-creator

Create HTML flowcharts and process diagrams with decision trees, color-coded stages, arrows, and swimlanes. Use when users request flowcharts, process diagrams, workflow visualizations, or decision trees.

mhattingpete/claude-skills-marketplace · 45 tokens