Major refactoring of ourdigital-custom-skills with new numbering system: ## Structure Changes - Each skill now has code/ (Claude Code) and desktop/ (Claude Desktop) versions - New progressive numbering: 01-09 General, 10-19 SEO, 20-29 GTM, 30-39 OurDigital, 40-49 Jamie ## Skill Reorganization - 01-notion-organizer (from 02) - 10-18: SEO tools split into focused skills (technical, on-page, local, schema, vitals, gsc, gateway) - 20-21: GTM audit and manager - 30-32: OurDigital designer, research, presentation - 40-41: Jamie brand editor and audit ## New Files - .claude/commands/: Slash command definitions for all skills - CLAUDE.md: Updated with new skill structure documentation - REFACTORING_PLAN.md: Migration documentation - COMPATIBILITY_REPORT.md, SKILLS_COMPARISON.md: Analysis docs ## Removed - Old skill directories (02-05, 10-14, 20-21 old numbering) - Consolidated into new structure with _archive/ for reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
83 lines
1.8 KiB
Markdown
83 lines
1.8 KiB
Markdown
# CLAUDE.md
|
|
|
|
## Overview
|
|
|
|
Notion-to-presentation workflow. Transforms research content into branded PowerPoint/Figma presentations.
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Full automated workflow
|
|
python scripts/run_workflow.py --notion-url [URL] --output presentation.pptx
|
|
|
|
# Step-by-step
|
|
python scripts/extract_notion.py [URL] > research.json
|
|
python scripts/synthesize_content.py research.json > synthesis.json
|
|
python scripts/apply_brand.py synthesis.json --output presentation.pptx
|
|
```
|
|
|
|
## Scripts
|
|
|
|
| Script | Purpose |
|
|
|--------|---------|
|
|
| `run_workflow.py` | Orchestrate full pipeline |
|
|
| `extract_notion.py` | Extract content from Notion pages |
|
|
| `synthesize_content.py` | Analyze and structure content |
|
|
| `apply_brand.py` | Apply corporate styling |
|
|
|
|
## Workflow Pipeline
|
|
|
|
```
|
|
extract_notion.py → synthesize_content.py → apply_brand.py
|
|
↓ ↓ ↓
|
|
research.json synthesis.json presentation.pptx
|
|
```
|
|
|
|
## Extract Notion
|
|
|
|
```bash
|
|
# Single page
|
|
python scripts/extract_notion.py notion://page/abc123 > research.json
|
|
|
|
# Database query
|
|
python scripts/extract_notion.py notion://database/def456 --filter "Status=Done"
|
|
```
|
|
|
|
## Synthesize Content
|
|
|
|
```bash
|
|
# Generate slide structure
|
|
python scripts/synthesize_content.py research.json > synthesis.json
|
|
|
|
# With presentation type
|
|
python scripts/synthesize_content.py research.json \
|
|
--type executive \
|
|
--max-slides 10
|
|
```
|
|
|
|
## Apply Brand
|
|
|
|
```bash
|
|
# PowerPoint output
|
|
python scripts/apply_brand.py synthesis.json \
|
|
--config assets/brand_config.json \
|
|
--output presentation.pptx
|
|
|
|
# Preview HTML
|
|
python scripts/apply_brand.py synthesis.json --preview
|
|
```
|
|
|
|
## Brand Configuration
|
|
|
|
See `assets/brand_config.json` for:
|
|
- Logo placement
|
|
- Color scheme
|
|
- Font settings
|
|
- Slide templates
|
|
|
|
## Output Formats
|
|
|
|
- PowerPoint (.pptx)
|
|
- Figma (via API)
|
|
- HTML preview
|