mcpbeat Sign in

Whiteboard To Infographic Agent Skill

>- Convert a hand-drawn whiteboard photo (or sketched process/diagram) from a discovery or working session into a polished, client-ready infographic as an editable PowerPoint slide (.pptx). Use this whenever someone uploads or references a photo of a whiteboard, a hand sketch of a process or system, or session-capture notes and wants it "cleaned up", "made presentable", "turned into a diagram/infographic", "converted for the client", or similar — even if they don't say the word "infographic". Covers two layout archetypes — linear process flows (left-to-right step rails) and network/topology maps (locations, systems, or actors connected by labeled flows). Built for consulting/ERP discovery capture but works for any whiteboard-to-deliverable conversion. Do NOT use for charts/graphs from numeric data, for editing an existing polished design, or for generating diagrams with no source sketch.

7k tokens
context cost
the whole folder, loaded on every use
5
files
instructions only
0
copies elsewhere
how many repositories repackaged it
57 d ago
last touched
this folder, not the whole repository

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/cat-agent-skills --skill whiteboard-to-infographic

What comes with it

19 561 bytes besides the instruction
README.md
metadata.json
references/network-map.md
references/process-rail.md

The instruction itself

6 sections, as written by the author

Whiteboard to Infographic

Turn a messy hand-drawn capture into a clean, branded one-page infographic —

delivered as a single editable PowerPoint slide — that a consultant can put

in front of a client. The hard, non-delegable work is reading the handwriting

correctly and choosing the right structure; the styling and layout are codified

here so every output looks consistent.

The discipline (do this in order — do not skip ahead to styling)

This is structure-first. Producing a polished deliverable from a misread sketch

is the main failure mode, so confirm interpretation before building.

  • Read the source carefully. The photo is the source of truth. Zoom and

crop aggressively — examine the image, then crop it into regions and

re-examine at 2–3x so the handwriting is legible. Transcribe every box,

label, arrow, annotation, and margin note. Do not silently drop anything you

can't read — list it as a question.

  • Confirm interpretation and lock structure. Before building the slide,

send the user a compact transcription: the nodes/steps, the

connections/flows, and any side notes or requirements. Explicitly flag:

ambiguous words, unexpanded acronyms, and anything you're inferring. Ask the

questions that change the build (see "Questions to ask"). Wait for

confirmation. Build only what's on the board — never invent steps, fields, or

connections to make it look complete. If a relationship isn't drawn, don't

draw it.

  • Get the color palette. The palette is client-specific and is NOT baked

into this skill. If the user gave colors in the prompt or context, use them.

Otherwise, ask before building. You need hex values for these roles:

  • ink — primary structure, dark text, node borders (e.g. a deep navy)
  • secondary — sub-heads, connectors, region boundaries (e.g. steel blue)
  • accent — sequence numbers, bullets, flags, emphasis (e.g. a signal red)
  • card — light fill for callout cards / cluster fills (e.g. pale blue-gray)
  • accent-tint — light wash behind accent-flagged items (e.g. pale red)

Derive sensible text tints (e.g. a muted slate for sub-captions) from these.

Offer to suggest a palette if the user has no preference, but don't assume.

  • Choose the archetype (state your choice and why):
  • Process rail — the sketch is a sequence/flow with a clear order

(step 1 → step 2 → …). Read references/process-rail.md.

  • Network map — the sketch is locations/systems/actors connected by

flows, with no single linear order (a topology). Read

references/network-map.md.

If it's genuinely both, lead with the dominant reading and ask.

  • Build, verify, iterate. Build the slide with python-pptx per the chosen

archetype's reference. The layout is deterministic — **code decides every

coordinate** — so verify structurally rather than by eye: every step/node

present, columns/nodes evenly spaced, no shape overlapping another, every

label inside its box, drop-lines landing on their cards, edges approaching

nodes straight-on and not crossing through them. If your runtime can

rasterize the slide, optionally do a visual critique pass; if it can't, lean

entirely on the computed geometry. Fix in code and rebuild. Faithfulness

beats polish — never add a step, field, or connection that wasn't on the

board.

Building the slide (native python-pptx)

Build the infographic as a single editable slide with python-pptx, drawn

natively as shapes — no HTML, no image rendering, no external render step. It

runs inside the agent's Python container and returns a .pptx the client can

open and edit.

The layout is deterministic — code decides every coordinate. Design on a

fixed 1600×1000 grid mapped to a 13.333in slide (see each reference for the

PX() scale helper), and compute every position from the step/node count and

the canvas so the slide is correct by construction. Use the house-style system

fonts (Arial Narrow for condensed display, Arial for body) so nothing

depends on font downloads. Turn off the default autoshape shadow

(shape.shadow.inherit = False) for the flat house look. Save the deck and

return the single .pptx as the deliverable — no PNG/PDF/HTML side-artifacts.

Revisions: never reuse a filename. When the user asks for changes to an

infographic you have already delivered, build the revision as a **new file with

a new name** — infographic-v1.pptx, infographic-v2.pptx, infographic-v3.pptx,

and so on — incrementing on every subsequent revision for the life of the

conversation. Do not overwrite, re-save, or re-deliver an existing filename: a

reused name can prevent the updated file from reaching the user, who then

receives the earlier version or no file at all. One revision, one new filename,

every time.

Conventions (shared by both archetypes)

These are the house style. Keep them consistent across a client engagement.

  • Header band: condensed uppercase title + a thin small-caps subtitle, a

full-width accent rule under it, and an optional right-aligned scope/context

note. A short eyebrow label (e.g. "THE PROCESS", "SUPPLY NETWORK") sits above

each major band.

  • Accent flags encode meaning — don't decorate with them:
  • A solid accent "GAP" pill marks a gap between the standard system and the

client's process (a fit/gap item). Use only where the user confirms a gap.

  • A hollow "need details" tag marks an open item to define in follow-up.
  • Include a one-line legend explaining any flag you use.
  • Faithfulness: behaviors/notes with no home in the visual go in a list, not

invented shapes. Keep the client's exact terms and acronyms; don't expand or

rename acronyms the client already knows unless asked.

  • Restraint: spend boldness on one signature device (the numbered chevron

rail, or the region cluster), keep everything else quiet. Whitespace where the

source is sparse is honest — don't pad it with invented detail.

Questions to ask before building

Ask only the ones that actually change the build; don't interrogate.

  • Unreadable words / unexpanded acronyms (transcribe what you can, ask the rest).
  • Archetype if ambiguous (rail vs. map).
  • For a rail: is there a meaningful sequence number/priority on any step? What

goes in the bottom band — principles, requirements, or nothing?

  • For a map: which connections must be explicit vs. summarized in a legend;

what each node/edge label means; does anything apply across all nodes.

  • Whether a "detailed" companion version is wanted (dense capture of every

margin note) in addition to a clean executive version.

  • The color palette, if not already provided.

References

  • references/process-rail.md — linear flow archetype: deterministic banded

layout (header, numbered chevron rail with drop-lines, callout cards,

principles/requirements bottom band), as a python-pptx skeleton with color

placeholders.

  • references/network-map.md — topology archetype: node/edge/cluster helpers

(labeled edges with arrowheads, dashed region clusters, edge-label chips, flow

legend, requirements band), as a python-pptx skeleton with color

placeholders.

Other skills for the same job

different authors, same section of the catalogue
Legacy Circuit Mockups
by github
vendor ×1

Generate breadboard circuit mockups and visual diagrams using HTML5 Canvas drawing techniques. Use when asked to create circuit layouts, visualize electronic component placements, draw breadboard diagrams, mockup 6502 builds, generate retro computer schematics, or design vintage electronics projects. Supports 555 timers, W65C02S microprocessors, 28C256 EEPROMs, W65C22 VIA chips, 7400-series logic gates, LEDs, resistors, capacitors, switches, buttons, crystals, and wires.

37k tokens
Hyperframes Keyframes
by aiskillstore
×1

> Use when a HyperFrames composition needs seek-safe 2D/3D keyframes, GSAP timelines, CSS keyframes, Anime.js, WAAPI, FLIP, paths, masks, SVG morph/draw, text trails, 3D depth, or `hyperframes keyframes` diagnostics. Don't use for broad scene strategy, brand design, media sourcing, captions, or general video planning.

17k tokens
Anydesign
by uxKero
×1

Analyze images, websites, and Figma files to extract their design and generate a `design.md` with token system, component inventory, and reconstruction notes. Use this skill whenever the user wants to understand, document, replicate, or audit the design of something visual: a screenshot, a URL, a Figma link, a Pinterest reference, a mockup, a competitor's site, a component, a dashboard, a landing page. Also when they ask 'extract the design system from X', 'document the style of Y', 'analyze this visually', 'convert this image into tokens', 'help me replicate this design', 'what palette does this site use', 'how is this built'. Also for single elements: 'copy this navbar', 'recreate this illustration', 'give me a prompt to regenerate this graphic' — element mode outputs a focused element.md, with token-grounded image-model prompts when the element is visual art. If the user brings any visual source and wants to understand it at a design level — this skill should activate.

728k tokens scripts
Brandkit
by lornshrimp
×1

Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized for intentional logo concepting, refined composition, sparse typography, strong symbolic meaning, premium mockups, art-directed imagery, and flexible grid layouts.

4k tokens
Imagegen Frontend Mobile
by lornshrimp
×1

Elite mobile app image-generation skill for creating premium, app-native screen concepts and flows. Designed for iOS, Android, and cross-platform mobile products. Prioritizes clean hierarchy, comfortably readable text, strong multi-screen consistency, controlled color palettes, non-generic creative direction, textured surfaces, image-led composition, tasteful custom iconography, and clean phone mockup framing. By default, screens should be shown inside a subtle premium iPhone or similar phone mockup with a visible frame, while the main focus stays on the app content itself. This skill generates images only. It does not write code.

10k tokens
Perf Web Optimization
by christophacham
×1

Optimize web performance: bundle size, images, caching, lazy loading, and overall page speed. Use when site is slow, reducing bundle size, fixing layout shifts, improving Time to Interactive, or optimizing for Lighthouse scores. Triggers on: web performance, bundle size, page speed, slow site, lazy loading. Do NOT use for Core Web Vitals-specific fixes (use core-web-vitals), running Lighthouse audits (use perf-lighthouse), or Astro-specific optimization (use perf-astro).

4k tokens
Brandkit
by nexu-io

| Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized for intentional logo concepting, refined composition, sparse typography, strong symbolic meaning, premium mockups, art-directed imagery, and flexible grid layouts.

4k tokens
Gsap Performance
by nexu-io

| Official GSAP skill for performance — prefer transforms, avoid layout thrashing, will-change, batching. Use when optimizing GSAP animations, reducing jank, or when the user asks about animation performance, FPS, or smooth 60fps.

1k tokens

How to use it

Copy the folder

Take microsoft/whiteboard-to-infographic from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.