/ Каталог / Песочница / Mck-ppt-design-skill
● Сообщество likaku ⚡ Сразу

Mck-ppt-design-skill

автор likaku · likaku/Mck-ppt-design-skill

Teach Claude to design McKinsey-style PowerPoints: 70 consultancy layout patterns, flat design discipline, built on python-pptx.

An Agent Skill that gives Claude a library of consultancy-grade slide layouts (executive summary, horizontal/vertical timelines, matrix, waterfall, SWOT, pyramid) plus python-pptx helpers to render them. Point Claude at your content and it picks the right layout, writes the python-pptx code, and outputs a .pptx you can open in Keynote or PowerPoint.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

mck-ppt-design-skill.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "mck-ppt-design-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "mck-ppt-design-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/likaku/Mck-ppt-design-skill",
          "~/.claude/skills/Mck-ppt-design-skill"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add mck-ppt-design-skill -- git clone https://github.com/likaku/Mck-ppt-design-skill ~/.claude/skills/Mck-ppt-design-skill

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: Mck-ppt-design-skill

How to generate a McKinsey-style executive summary deck from notes

👤 Consultants, founders, and PMs who need to ship a deck fast ⏱ ~20 min intermediate

Когда использовать: You have the content (notes, data, a memo) but not the time to hand-build a clean deck.

Предварительные требования
  • Python 3.10+ with python-pptx installed — pip install python-pptx
  • Skill cloned — git clone https://github.com/likaku/Mck-ppt-design-skill ~/.claude/skills/Mck-ppt-design-skill
Поток
  1. Paste your content
    Here are my notes for a 10-slide deck on our Q1 strategy. Pick the right layout for each slide from the Mck skill and generate the python-pptx code.✓ Скопировано
    → Per-slide layout choice + rationale
  2. Run the script
    Save the script, run it, and give me the .pptx path.✓ Скопировано
    → A valid .pptx on disk
  3. Iterate on layout
    Slide 5 should be a 2x2 matrix, not a bulleted list — regenerate just that slide.✓ Скопировано
    → Updated slide without touching the rest

Итог: A 10-slide consultancy-style deck in ~15 minutes.

Подводные камни
  • Too many words per slide — Claude defaults to text-heavy — Constrain up-front: 'maximum 10 words per bullet, three bullets max'
  • Colors look generic — Supply a brand hex palette; the skill honors it
Сочетать с: filesystem

Convert a written memo into a visual deck

👤 Anyone who's been told 'can you make this a deck?' ⏱ ~15 min beginner

Когда использовать: You already have a written narrative and need slides that match.

Поток
  1. Feed the memo
    Here's the memo. Outline a 6-slide deck that preserves the argument arc, using Mck layouts.✓ Скопировано
    → Storyline with layout names
  2. Generate
    Write the python-pptx code.✓ Скопировано
    → Runnable script
  3. Export
    Render and save as Q1_memo.pptx.✓ Скопировано
    → File on disk

Итог: A deck whose story matches your memo's logical flow.

Подводные камни
  • Deck loses the 'so what' of each section — Ask for action titles ('Revenue dropped because…'), not topic titles ('Revenue')

Комбинации

Сочетайте с другими MCP — эффект x10

mck-ppt-design-skill + filesystem

Save decks to disk and iterate on the generated python

Generate the deck into ./decks/Q1/, then re-open slide 3 and tighten the bullets.✓ Скопировано
mck-ppt-design-skill + github

Commit deck source under version control and diff structure changes

Commit decks/Q1.py and open a PR so the team can review the structure before render.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
layout-selection slide intent + content Before rendering any slide 0
pptx-generation content + chosen layouts After layouts are decided 0
color-and-typography-rules (optional) brand palette Automatically during rendering 0

Стоимость и лимиты

Во что обходится

Квота API
none
Токенов на вызов
~3–10k tokens per deck depending on slide count
Деньги
free
Совет
Generate in batches of 5 slides — keeps each turn focused and easy to revise

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: none
Исходящий трафик: none — local python-pptx only

Устранение неполадок

Частые ошибки и исправления

python-pptx: ModuleNotFoundError

pip install python-pptx in the environment Claude Code runs scripts from.

Проверить: python -c 'import pptx; print(pptx.__version__)'
Deck opens but layouts look off

Ask Claude to regenerate using a strict layout id ('use layout #12: horizontal timeline')

Chinese fonts render as boxes

Specify a CJK font explicitly (e.g. 'Noto Sans CJK SC') and make sure it's installed on the renderer.

Проверить: fc-list :lang=zh

Альтернативы

Mck-ppt-design-skill в сравнении

АльтернативаКогда использоватьКомпромисс
manim-skillYou need animated technical visuals rather than static decksVideo output, steeper curve
excalidraw-skillYou want whiteboard-style sketches instead of polished slidesInformal vs executive-polish

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills