mckinsey-charts

mckinsey-charts is a skill for Claude Code, Codex from sruthir28/enterprise-ai-skills. It costs 83 tokens per session (1,141 once invoked), scanned A, original, MIT.

A set of Python tools for creating three editable PowerPoint chart types: highlighted bars, stacked columns over time, and waterfalls. A waterfall chart shows how separate increases and decreases move one number to another.

In plain words
What is it for?
Use it to show a single key number, changes in composition over time, or the factors connecting a starting value to an ending value.
Why use it?
It avoids using screenshots or images that are hard to edit and provides chart structures suited to common business explanations.

Skill for Claude CodeCodex

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

Good fit Use it to show a single key number, changes in composition over time, or the factors connecting a starting value to an ending value.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sruthir28/enterprise-ai-skills/mckinsey-charts
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 sruthir28/enterprise-ai-skills --skill mckinsey-charts
Clone the repo
git clone --depth 1 https://github.com/sruthir28/enterprise-ai-skills

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 mckinsey-charts

README.md
[![agentmods](https://agentmods.dev/badge/skills/sruthir28/enterprise-ai-skills/mckinsey-charts/github.svg)](https://agentmods.dev/skills/sruthir28/enterprise-ai-skills/mckinsey-charts)
Your own site
<a href="https://agentmods.dev/skills/sruthir28/enterprise-ai-skills/mckinsey-charts"><img src="https://agentmods.dev/badge/skills/sruthir28/enterprise-ai-skills/mckinsey-charts/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 mckinsey-charts

Your own site · 80×15
<a href="https://agentmods.dev/skills/sruthir28/enterprise-ai-skills/mckinsey-charts"><img src="https://agentmods.dev/badge/skills/sruthir28/enterprise-ai-skills/mckinsey-charts.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,141 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00083 $0.01141
Opus 5 $0.00042 $0.00571
Sonnet 5 $0.00017 $0.00228
Haiku 4.5 $0.00008 $0.00114

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

Security

Grade A, and why

mckinsey-charts 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (charts.py, test_charts.py), 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.

mckinsey-charts/SKILL.md · 92 lines

How it starts

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

McKinsey Charts

Drop-in chart builders for python-pptx. Charts are inserted as native PowerPoint chart objects — your audience can edit the data, change the colors, copy the chart to their own deck. No images, no screenshots.

The Three Charts

Type When to use Example
bar_callout One number is the story. TAM, market size, headcount, anything where you want to anchor on a single highlighted bar with a big callout. "RTD coffee TAM will hit $42.5B by 2028"
stacked_bar_over_time Composition over time. Revenue by segment, usage by feature, headcount by function. Shows both total growth and mix shift. "Revenue grew 3x, but enterprise segment grew 7x"
waterfall Bridging two numbers. Revenue walk, cost walk, headcount changes, any "start → adds → subtracts → end" story. "FY24 → FY25 revenue bridge: $80M → $112M"

Design choices (intentional, not configurable)

  • Title is a claim, not a label. "RTD market will hit $42.5B by 2028" beats "Market Size."
  • One highlight color, everything else grey. McKinsey decks don't rainbow. The chart points at one thing.
  • No gridlines, no chart border, no legend unless multi-series. Less ink → more signal.
  • Source line at the bottom in light grey italic. Always include it.
  • Single font (Inter) at consistent sizes. Title 20pt, axis 10pt, source 9pt.

How to use

from pptx import Presentation
from pptx.util import Inches
from charts import add_bar_callout, add_stacked_bar_over_time, add_waterfall, new_deck

prs = new_deck()  # 16:9 with title slide layout
slide = prs.slides.add_slide(prs.slide_layouts[6])  # blank

add_bar_callout(
    slide,
    title="RTD coffee TAM will hit $42.5B by 2028",
    categories=["2023", "2024", "2025", "2026", "2027", "2028"],
    values=[28.1, 30.8, 33.6, 36.5, 39.4, 42.5],
    highlight_index=5,        # which bar to highlight (last one here)
    callout="$42.5B\n2028 TAM",
    y_label="USD, billions",
    source="Euromonitor 2025; Mintel; team analysis",
)

prs.save("output.pptx")

Read the full file on GitHub · 92 lines

Files

What ships with it

2 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. 12d ago First seen · 92 lines · 83 tokens per session scan A e31f8f632e3e

Subscribe to this mod's changes

mckinsey-charts is a skill published in the GitHub repository sruthir28/enterprise-ai-skills (139 stars, last pushed 11d ago), licensed MIT. It adds 83 tokens to every session and 1,141 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-08-30.