pptx-author

tarafından anthropic

Canlı bir PowerPoint belgesini sürüklemek yerine, diskte (headless) bir .pptx dosyası oluşturun — açık bir Office uygulaması olmayan yönetilen ajan oturumları için.

npx skills add https://github.com/anthropics/financial-services --skill pptx-author

pptx-author

Use this skill when running headless (managed-agent / CMA mode) and you need to deliver a PowerPoint deck as a file artifact rather than editing a live document via mcp__office__powerpoint_*.

Output contract

  • Write to ./out/<name>.pptx. Create ./out/ if it does not exist.
  • Return the relative path in your final message so the orchestration layer can collect it.

How to build the deck

Write a short Python script and run it with Bash. Use python-pptx:

from pptx import Presentation
from pptx.util import Inches, Pt

prs = Presentation("./templates/firm-template.pptx")  # if a template is provided
# or: prs = Presentation()

slide = prs.slides.add_slide(prs.slide_layouts[5])    # title-only
slide.shapes.title.text = "Valuation Summary"
# ... add tables / charts / text boxes ...

prs.save("./out/pitch-<target>.pptx")

Conventions (mirror the live-Office pitch-deck skill)

  • One idea per slide. Title states the takeaway; body supports it.
  • Every number traces to the model. If a figure comes from ./out/model.xlsx, footnote the sheet and cell.
  • Use the firm template when one is mounted at ./templates/; otherwise default layouts.
  • Charts: prefer embedding a PNG rendered from the model over native pptx charts when fidelity matters.
  • No external sends. This skill writes a file; it never emails or uploads.

When NOT to use

If mcp__office__powerpoint_* tools are available (Cowork plugin mode), use those instead — they drive the user's live document with review checkpoints. This skill is the file-producing fallback for headless runs.

anthropic tarafından daha fazla skill

analyzing-financial-statements
anthropic
Bu beceri, yatırım analizi için finansal tablo verilerinden temel finansal oranları ve metrikleri hesaplar.
applying-brand-guidelines
anthropic
Bu beceri, oluşturulan tüm belgelere renkler, yazı tipleri, düzenler ve mesajlaşma dahil olmak üzere tutarlı kurumsal markalama ve stil uygular.
creating-financial-models
anthropic
Bu beceri, DCF analizi, duyarlılık testi, Monte Carlo simülasyonları ve yatırım için senaryo planlaması ile gelişmiş bir finansal modelleme paketi sunar…
board-minutes
anthropic
Kurul veya komite toplantı tutanaklarını ev formatınızda taslak haline getirir. Takviminizden yaklaşan kurul ve komite toplantılarını otomatik olarak algılar, gündemi sorar ve…
crm-cleanup
anthropic
HubSpot'u bayat fırsatlar, yinelenen kişiler ve eksik alanlar için tarar, ardından sahibinin onayladıklarını düzeltir. Fırsatlar, kişiler için isteğe bağlı kapsam argümanını kabul eder,…
redshift-api
anthropic
Amazon Redshift üzerinde SQL çalıştırın — ifadeler gönderin, durumu sorgulayın, sonuçlar arasında gezinin ve veritabanları/şemalar/tablolar arasında göz atın. Kullanıcı istediğinde bunu kullanın…
ticket-deflector
anthropic
Yönlendirilen bir müşteri e-postasını veya talebini okur, PayPal'dan sipariş/iade durumunu ve HubSpot'tan hesap geçmişini çeker, sahibinin üslubuna uygun bir yanıt taslağı oluşturur…
reg-feed-watcher
anthropic
Düzenleyici beslemeleri şimdi kontrol et ve son kontrolden bu yana yeni olanları, maddilik eşiğine göre filtreleyerek raporla. Kullanıcı "beslemeleri kontrol et" dediğinde kullanılır,…