Files
AX-Copilot-Codex/src/AxCopilot/skills/pptx-creator.skill.md
lacvet f8067a1f9b AX Agent 창 제목 고정 및 PPT 품질 재루프 고도화
- 채팅창 Windows 제목을 AX Agent로 고정해 작업 표시줄/Alt+Tab에서 대화 제목이 섞이지 않도록 조정

- Assets/ppt manifest와 템플릿 카탈로그를 추가해 basic100/core100 등 고품질 PPT 자산을 실행 폴더, 소스 루트, AppData 템플릿 폴더에서 안정적으로 탐색하도록 개선

- pptx_create 결과에서 asset missing과 color fallback을 구분해 진단 메시지를 남기고 Cowork에서는 PPT quality/slide alerts/Needs work 기준으로 최대 2회 재생성 루프를 타도록 품질 게이트 추가

- PPT 시스템 프롬프트와 pptx-creator 스킬 지시를 document_plan -> pptx_create 중심으로 정렬

- 검증: dotnet build ...verify_ppt_quality_gate 경고 0/오류 0, dotnet test ...PptxSkillTemplatePackTests|PptxSkillAutoRepairTests|PptxSkillGoldenDeckTests|PptQualityGatePolicyTests|PptxTemplateManifestCatalogTests 통과 12
2026-04-15 21:49:09 +09:00

2.8 KiB

name, label, description, icon, when_to_use, argument-hint, allowed-tools, tabs
name label description icon when_to_use argument-hint allowed-tools tabs
pptx-creator PPT deck creator Create consulting-style PowerPoint decks with AX native PPT generation. \uE7BE Use for executive decks, board updates, PMO steering materials, operating model proposals, KPI review decks, or any request that needs a polished PPTX deliverable. <topic or deck objective>
folder_map
document_plan
document_read
file_read
pptx_create
cowork

Use document_plan plus pptx_create as the default path for business decks. Do not start with ad-hoc slide arrays unless the user already gave a very detailed deck structure.

Default workflow

  1. Review the workspace for existing presentation files, reports, or templates.
  2. Use document_plan with document_type: presentation to define the storyline first.
  3. Build a deck brief with audience, objective, decision_ask, and optional storyline.
  4. Generate the deck with pptx_create.
  5. Prefer template_pack or a bundled template (basic100, core100, etc.) when the deck needs branded polish.
  6. If the returned quality summary is weak, revise the storyline and regenerate the same file instead of stopping.
  7. Return the file path together with the storyline and quality summary.

Quality rules

  • Keep one message per slide.
  • Prefer 3-5 concise bullets, not long paragraphs.
  • Use a message headline, not a vague topic label.
  • Include Executive Summary, Recommendation, and Roadmap in most business decks.
  • Add Appendix or Evidence when the deck is 6 slides or longer.
  • Use comparison, chart, KPI, or evidence slides when data exists.

Useful layouts

  • title
  • executive_summary
  • comparison
  • recommendation
  • roadmap
  • kpi_dashboard
  • chart
  • table
  • issue_tree
  • before_after
  • decision_matrix
  • risk_heatmap
  • benefit_waterfall
  • operating_model
  • appendix_evidence

Example

{
  "path": "strategy-deck.pptx",
  "template": "basic100",
  "audience": "executive committee",
  "objective": "customer growth strategy recommendation",
  "decision_ask": "approve phase-1 CRM and retention program funding",
  "storyline": [
    "Executive Summary",
    "Current State",
    "Options",
    "Recommendation",
    "Roadmap",
    "Impact & Ask"
  ],
  "slides": [
    {
      "layout": "executive_summary",
      "title": "Executive Summary",
      "headline": "Focus on retention and CRM automation to restore growth within two quarters.",
      "summary_points": [
        "Three priority cohorts explain most of the growth gap.",
        "Workflow automation reduces manual operating cost.",
        "Phase-1 actions and medium-term changes are clearly separated."
      ],
      "recommendation": "Approve phase-1 CRM upgrade and retention program launch."
    }
  ]
}