Complete implementation of OurDigital skills with dual-platform support (Claude Desktop + Claude Code) following standardized structure. Skills created: - 01-ourdigital-brand-guide: Brand reference & style guidelines - 02-ourdigital-blog: Korean blog drafts (blog.ourdigital.org) - 03-ourdigital-journal: English essays (journal.ourdigital.org) - 04-ourdigital-research: Research prompts & workflows - 05-ourdigital-document: Notion-to-presentation pipeline - 06-ourdigital-designer: Visual/image prompt generation - 07-ourdigital-ad-manager: Ad copywriting & keyword research - 08-ourdigital-trainer: Training materials & workshop planning - 09-ourdigital-backoffice: Quotes, proposals, cost analysis - 10-ourdigital-skill-creator: Meta skill for creating new skills Features: - YAML frontmatter with "ourdigital" or "our" prefix triggers - Standardized directory structure (code/, desktop/, shared/, docs/) - Shared environment setup (_ourdigital-shared/) - Comprehensive reference documentation - Cross-skill integration support 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 custom-skills/32-ourdigital-presentation/code/scripts/run_workflow.py \
|
|
--notion-url [NOTION_URL] --output presentation.pptx
|
|
|
|
# Step-by-step
|
|
python custom-skills/32-ourdigital-presentation/code/scripts/extract_notion.py [URL] > research.json
|
|
python custom-skills/32-ourdigital-presentation/code/scripts/synthesize_content.py research.json > synthesis.json
|
|
python 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)
|