00-system/skills/google/google-slides/SKILL.md
Create and manage Google Slides presentations. Load when user mentions 'google slides', 'slides', 'presentation', 'create presentation', 'add slide', or references creating/editing slide decks.
npx skillsauth add abdullahbeam/nexus-design-abdullah google-slidesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create, edit, and manage Google Slides presentations via OAuth authentication.
python3 00-system/skills/google/google-master/scripts/google_auth.py --check --service slides
Exit codes:
python3 00-system/skills/google/google-master/scripts/google_auth.py --loginpython3 00-system/skills/google/google-slides/scripts/slides_operations.py list
python3 00-system/skills/google/google-slides/scripts/slides_operations.py list --query "quarterly"
python3 00-system/skills/google/google-slides/scripts/slides_operations.py info <presentation_id>
python3 00-system/skills/google/google-slides/scripts/slides_operations.py create "Q4 Sales Report"
python3 00-system/skills/google/google-slides/scripts/slides_operations.py read <presentation_id> --slide 1
python3 00-system/skills/google/google-slides/scripts/slides_operations.py add-slide <presentation_id>
python3 00-system/skills/google/google-slides/scripts/slides_operations.py add-slide <presentation_id> --layout title_body
python3 00-system/skills/google/google-slides/scripts/slides_operations.py delete-slide <presentation_id> <slide_id>
python3 00-system/skills/google/google-slides/scripts/slides_operations.py add-text <presentation_id> <slide_id> "Hello World" --x 100 --y 100
python3 00-system/skills/google/google-slides/scripts/slides_operations.py add-image <presentation_id> <slide_id> "https://example.com/image.png"
python3 00-system/skills/google/google-slides/scripts/slides_operations.py duplicate <presentation_id> "Copy of Presentation"
python3 00-system/skills/google/google-slides/scripts/slides_operations.py export <presentation_id> ./output.pdf --format pdf
python3 00-system/skills/google/google-slides/scripts/slides_operations.py export <presentation_id> ./output.pptx --format pptx
The ID is in the URL:
https://docs.google.com/presentation/d/[PRESENTATION_ID]/edit
| Layout | Description |
|--------|-------------|
| blank | Empty slide |
| title | Title slide (large centered title) |
| title_body | Title with body text |
| title_two_columns | Title with two columns |
| title_only | Just a title area |
| section | Section header |
| big_number | Large number display |
| caption | Caption only |
| Operation | Function | Description |
|-----------|----------|-------------|
| List | list_presentations() | List all presentations |
| Info | get_presentation_info() | Get presentation metadata |
| Create | create_presentation() | Create new presentation |
| Read | read_slide() | Get slide content |
| Add Slide | add_slide() | Add new slide |
| Delete Slide | delete_slide() | Remove slide |
| Add Text | add_text_box() | Insert text box |
| Add Image | add_image() | Insert image |
| Duplicate | duplicate_presentation() | Copy presentation |
| Export | export_presentation() | Export to PDF/PPTX |
Text boxes and images use points (pt) for positioning:
--x and --y: Position from top-left corner--width and --height: Element dimensionsStandard slide is approximately 720 x 540 points.
from slides_operations import create_presentation, add_slide, add_text_box
# Create presentation
pres = create_presentation("Monthly Report")
pres_id = pres['id']
# Get first slide ID
info = get_presentation_info(pres_id)
first_slide = info['slides'][0]['id']
# Add title
add_text_box(pres_id, first_slide, "Monthly Performance Report",
x=100, y=200, width=500, height=60)
# Add more slides
add_slide(pres_id, layout='title_body')
from slides_operations import export_presentation
# Export to PDF for email
export_presentation(presentation_id, "./report.pdf", format='pdf')
# Export to PowerPoint for editing
export_presentation(presentation_id, "./report.pptx", format='pptx')
See ../google-master/references/error-handling.md for common errors and solutions.
First-time setup: ../google-master/references/setup-guide.md
Quick start:
pip install google-auth google-auth-oauthlib google-api-python-client.env file at Nexus root:
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
GOOGLE_PROJECT_ID=your-project-id
python3 00-system/skills/google/google-master/scripts/google_auth.py --logindevelopment
Load when user says "mental model", "think through this", "structured thinking", "help me decide", "analyze this problem", "first principles", "pre-mortem", "stakeholder mapping", "what framework should I use", or any specific model name. Provides 59 thinking frameworks for decision-making, problem decomposition, and strategic analysis.
development
Generate comprehensive philosophy and standards documents for any domain (UX design, landing pages, email outbound, API design, etc.). Load when user says "create philosophy doc", "generate standards for [domain]", "build best practices guide", or "create benchmarking document". Conducts deep research, synthesizes findings, and produces structured philosophy documents with principles, frameworks, anti-patterns, checklists, case studies, and metrics.
development
Validate Nexus-v3 system integrity and fix common issues automatically. Load when user mentions "validate system", "check system", or "fix problems". Runs comprehensive checks on folder structure, metadata files, and framework consistency with auto-repair capabilities.
development
Load when user says "validate docs", "check documentation consistency", "docs vs implementation", or "find documentation mismatches". Systematically compares implementation code against documentation to identify and fix inconsistencies.