원클릭으로
gmail
Crear borradores de email en Gmail. Usa cuando el usuario diga "redactar email", "guardar borrador", "email borrador", "Gmail draft".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Crear borradores de email en Gmail. Usa cuando el usuario diga "redactar email", "guardar borrador", "email borrador", "Gmail draft".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
curate recent items from authority sources into a ranked editorial shortlist before any derivative content is drafted. use when chatgpt needs to fetch or review the latest accessible items from gartner, mckinsey, every, and ruben substack; normalize them into a shared schema; score alignment against david's narrative, proposal, and audience; present a shortlist for human selection; and only then hand off to derivative-content workflows. also use when planning manual or semi-automated source monitoring with research, n8n, linkedin-content, or linkedin-david if those skills are installed. do not use this skill to promise scraping behind logins or paywalls, or automatic publishing without real tooling and permissions.
Guardrail conductual cross-repo que previene exposición de tokens, secrets y API keys en outputs de agentes. Usar antes de commitear, publicar retros, escribir mailbox, pegar salida de az/gh/kubectl/curl, o generar cualquier output visible. Motivada por incidente AF-1k.16i1c (gate-token leak).
Process Granola meeting notes or transcripts into Notion raw intake, review them through the V1 `session_capitalizable` layer, extract action items, and create proactive follow-ups. Use when "subir transcripcion", "procesar granola", "reunion terminada", "compromisos reunion", or "propuesta de seguimiento".
PIT — Product Innovation Tournament: parser NL + alias /torneo_producto que convierte un pedido de David en pit_spec.yaml validado, confirma con gate literal "ok, arranca" y orquesta N lanes efímeras que compiten con prototipos + KPI (PROTOTYPE_URL + KPI_PACK + fulfillment). Incluye el modo PIT-DEV (spec v3): torneos de producto técnico usable con jueces ejecutores, security-egress y trazabilidad. NO es el torneo de código D3 (PR_URL) — ese es multi-agent-tournament-orchestrator.
Configurar sesiones, agentes y workspace en el Gateway OpenClaw dentro del Umbral Agent Stack. Incluye arquitectura Gateway, Pi integration, agents.list, bindings, Agent Loop, System Prompt, Context, Agent Workspace, OAuth, Presence, multi-agent routing y referencias oficiales. Use when "openclaw config", "agents.list", "workspace", "sessions", "bootstrap", "AGENTS.md SOUL.md", "auth-profiles", "context window", "compaction", "bindings".
curar redaccion, narrativa, lenguaje y voz de David en piezas editoriales de Umbral; revisar candidatos de Rick/OpenClaw cuando el copy sea correcto pero no suene a David; producir variantes controladas, detectar terminos no naturales como escalacion, y proponer ajustes de prompts/configuracion sin publicar ni tocar gates.
| name | gmail |
| description | Crear borradores de email en Gmail. Usa cuando el usuario diga "redactar email", "guardar borrador", "email borrador", "Gmail draft". |
| metadata | {"openclaw":{"emoji":"📧","requires":{"env":[]}}} |
Rick puede crear y listar borradores de email en Gmail a través de las Worker tasks del Umbral Agent Stack.
El Worker resuelve credenciales en este orden (ver worker/tasks/gmail.py):
GOOGLE_GMAIL_TOKEN — OAuth2 Bearer (caduca en ~1 h).GOOGLE_GMAIL_REFRESH_TOKEN + GOOGLE_GMAIL_CLIENT_ID + GOOGLE_GMAIL_CLIENT_SECRET — recomendado; el Worker renueva el access token (requiere google-auth).GOOGLE_SERVICE_ACCOUNT_JSON — ruta al JSON de service account con scopes Gmail.En el gateway, preferí las tools tipadas umbral_gmail_* del skill umbral-worker cuando ejecutes contra el Worker; este skill documenta payloads y comportamiento.
Documentación de obtención de tokens: docs/35-gmail-token-setup.md.
Task: gmail.create_draft
{
"to": "destinatario@email.com",
"subject": "Seguimiento reunión proyecto BIM",
"body": "Estimado equipo,\n\nAdjunto los compromisos de la reunión...",
"body_type": "plain",
"cc": ["copia@email.com"],
"reply_to": "responder@email.com"
}
Devuelve: {"ok": true, "draft_id": "...", "message_id": "..."}
Con HTML:
{
"to": "cliente@email.com",
"subject": "Propuesta adjunta",
"body": "<h1>Propuesta</h1><p>Detalle del proyecto...</p>",
"body_type": "html"
}
Task: gmail.list_drafts
{
"max_results": 10,
"q": "subject:seguimiento"
}
Devuelve: {"ok": true, "drafts": [{"id": "...", "message_id": "...", "snippet": "..."}, ...]}
Cuando granola.create_followup se llama con followup_type: "email_draft" y los
attendees incluyen direcciones de email, se crea automáticamente un borrador en Gmail
además de registrarlo en Notion.
google-auth).q usa la misma sintaxis de búsqueda de Gmail.