بنقرة واحدة
google-workspace
Google Workspace via gog CLI — Gmail + Calendar for Daniel's accounts
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Google Workspace via gog CLI — Gmail + Calendar for Daniel's accounts
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Skill: SF-Slides — Create & Edit Presentations. Use this skill whenever Daniel asks to create a presentation, generate slides, make a slide deck, build a presentation, or anything involving .sfslides files. Also trigger when the user mentions: presentation design, slide generation, keynote-style content, conference talks, pitch decks, or wants to export to PPTX. This skill gives you direct control over SF-Slides, a desktop presentation editor where you write JSON and the app renders it live. Even if the user just says 'make me some slides' or 'I need a deck for my talk', use this skill.
Generate and edit images using OpenRouter + Gemini. Use when Daniel asks to create, generate, or edit images. Can also inject generated images into the Draw/whiteboard canvas.
Genera paquetes visuales narrativos completos para videos de YouTube. Usar cuando Daniel provea un guion, transcript o idea de video y quiera un conjunto de imagenes didacticas (stick figures, fondo blanco) que expliquen la narrativa cronologicamente. Triggers: video visuals, paquete visual, imagenes para video, genera las imagenes, narrativa visual, imagenes del video, genera imagenes para el video, crea las imagenes del video, dibuja la narrativa.
| name | google-workspace |
| description | Google Workspace via gog CLI — Gmail + Calendar for Daniel's accounts |
| triggers | gmail, calendar, email, correo, eventos, agenda, scheduling, inbox |
| Account | Services | Use |
|---|---|---|
danielcarreong00@gmail.com | gmail, calendar | Personal — Gmail cleanup, calendar events |
daniel@saasfactory.so | calendar | Business — SaaS Factory calendar |
Always use these in cron jobs and scripted contexts:
--json — machine-readable output--no-input — never prompt for user input--max N — limit results (default 25 is too many)# Search inbox (threads)
gog gmail search "in:inbox newer_than:1d" --account=danielcarreong00@gmail.com --max 10 --json
# Search messages (individual emails, not threads)
gog gmail messages search "in:inbox is:unread" --account=danielcarreong00@gmail.com --max 10 --json
# Search by label
gog gmail search "label:PROMOCIONES newer_than:7d" --account=danielcarreong00@gmail.com --max 50
# List labels
gog gmail labels list --account=danielcarreong00@gmail.com --json
# Archive (remove INBOX label)
gog gmail messages modify <messageId> --remove-labels INBOX --account=danielcarreong00@gmail.com
# Send email (plain text)
gog gmail send --to recipient@example.com --subject "Subject" --body "Text" --account=danielcarreong00@gmail.com
# Send email (multi-line via stdin)
gog gmail send --to recipient@example.com --subject "Subject" --body-file - --account=danielcarreong00@gmail.com <<'EOF'
Message body here.
EOF
# Send email (HTML)
gog gmail send --to recipient@example.com --subject "Subject" --body-html "<p>HTML content</p>" --account=danielcarreong00@gmail.com
# Today's events (personal)
gog calendar events primary --from $(date +%Y-%m-%dT00:00:00) --to $(date +%Y-%m-%dT23:59:59) --account=danielcarreong00@gmail.com --json
# Tomorrow's events (personal)
gog calendar events primary --from $(date -v+1d +%Y-%m-%dT00:00:00) --to $(date -v+1d +%Y-%m-%dT23:59:59) --account=danielcarreong00@gmail.com --json
# Today's events (business)
gog calendar events primary --from $(date +%Y-%m-%dT00:00:00) --to $(date +%Y-%m-%dT23:59:59) --account=daniel@saasfactory.so --json
# Create event
gog calendar create primary --summary "Title" --from 2026-03-01T10:00:00 --to 2026-03-01T11:00:00 --account=danielcarreong00@gmail.com
in:inbox label:PROMOCIONES newer_than:7din:inbox label:NEWSLETTERS newer_than:7din:inbox label:NOTIFICACIONES newer_than:7dgog gmail search "in:inbox" --max 1 --json (check total)--account flag on every command — never rely on defaults