- 채팅창 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
2.8 KiB
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> |
|
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
- Review the workspace for existing presentation files, reports, or templates.
- Use
document_planwithdocument_type: presentationto define the storyline first. - Build a deck brief with
audience,objective,decision_ask, and optionalstoryline. - Generate the deck with
pptx_create. - Prefer
template_packor a bundled template (basic100,core100, etc.) when the deck needs branded polish. - If the returned quality summary is weak, revise the storyline and regenerate the same file instead of stopping.
- 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, andRoadmapin most business decks. - Add
AppendixorEvidencewhen the deck is 6 slides or longer. - Use comparison, chart, KPI, or evidence slides when data exists.
Useful layouts
titleexecutive_summarycomparisonrecommendationroadmapkpi_dashboardcharttableissue_treebefore_afterdecision_matrixrisk_heatmapbenefit_waterfalloperating_modelappendix_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."
}
]
}