- Add new 00-claude-code-setting skill for token usage optimization - Includes audit scripts for MCP servers, CLAUDE.md, and extensions - Auto-fix capability with backup for serverInstructions and frontmatter - Add YAML frontmatter to 17 command files - Target: keep baseline under 30% of 200K context limit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
---
|
|
description: Ourdigital Presentation command
|
|
---
|
|
|
|
# OurDigital Presentation
|
|
|
|
Notion-to-presentation workflow for branded slides.
|
|
|
|
## Triggers
|
|
- "create presentation", "Notion to PPT", "프레젠테이션 만들기"
|
|
|
|
## Capabilities
|
|
|
|
1. **Notion Extraction** - Pull content from Notion pages
|
|
2. **Content Synthesis** - Structure into slide format
|
|
3. **Brand Application** - Apply corporate styling
|
|
4. **Multi-format Output** - PowerPoint, Figma, HTML
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Full automated workflow
|
|
python ourdigital-custom-skills/32-ourdigital-presentation/code/scripts/run_workflow.py \
|
|
--notion-url [NOTION_URL] --output presentation.pptx
|
|
|
|
# Step-by-step
|
|
python ourdigital-custom-skills/32-ourdigital-presentation/code/scripts/extract_notion.py [URL] > research.json
|
|
python ourdigital-custom-skills/32-ourdigital-presentation/code/scripts/synthesize_content.py research.json > synthesis.json
|
|
python ourdigital-custom-skills/32-ourdigital-presentation/code/scripts/apply_brand.py synthesis.json --output presentation.pptx
|
|
```
|
|
|
|
## Pipeline
|
|
|
|
```
|
|
extract_notion.py → synthesize_content.py → apply_brand.py
|
|
↓ ↓ ↓
|
|
research.json synthesis.json presentation.pptx
|
|
```
|
|
|
|
## Output Formats
|
|
- PowerPoint (.pptx)
|
|
- Figma (via API)
|
|
- HTML preview
|
|
|
|
## Environment
|
|
- `NOTION_TOKEN` - Notion API token (required)
|