# Send gmailcleaner to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gmailcleaner",
    "name": "gmailcleaner",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Coorops25/gmailcleaner",
    "canonicalUrl": "https://clawhub.ai/Coorops25/gmailcleaner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gmailcleaner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gmailcleaner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "email-reader-SKILL.md",
      "mnt/user-data/outputs/openclaw-email-skills-v2/email-analyzer/SKILL.md",
      "mnt/user-data/outputs/openclaw-email-skills-v2/email-organizer/SKILL.md",
      "mnt/user-data/outputs/openclaw-email-skills-v2/email-reporter/SKILL.md",
      "mnt/user-data/outputs/openclaw-email-skills-v2/email-responder/SKILL.md",
      "mnt/user-data/outputs/openclaw-email-skills-v2/email-scheduler/SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gmailcleaner",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T20:42:00.224Z",
      "expiresAt": "2026-05-08T20:42:00.224Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gmailcleaner",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gmailcleaner",
        "contentDisposition": "attachment; filename=\"gmailcleaner-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gmailcleaner"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gmailcleaner"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gmailcleaner",
    "downloadUrl": "https://openagent3.xyz/downloads/gmailcleaner",
    "agentUrl": "https://openagent3.xyz/skills/gmailcleaner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gmailcleaner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gmailcleaner/agent.md"
  }
}
```
## Documentation

### Email Reader

Lee correos de Gmail usando el CLI gog. Requiere que gog auth esté
configurado. Si no lo está, ejecuta el setup primero.

### Setup inicial (solo una vez)

gog auth credentials /ruta/a/client_secret.json
gog auth add $GOG_ACCOUNT --services gmail
gog auth list   # verificar que quedó bien

### Cuándo usar esta skill

"Revisa mi correo"
"¿Qué correos nuevos tengo?"
"Muéstrame los no leídos de hoy"
"Lee los correos de Juan"
"Busca correos sobre la propuesta del Q1"
"¿Cuántos correos de spam tengo?"
"Muéstrame el hilo de [asunto]"
"Lee la carpeta Clientes"

### Leer inbox (correos recientes)

gog gmail search 'in:inbox newer_than:1d' --max 20 --json
gog gmail search 'in:inbox is:unread' --max 50 --json
gog gmail search 'in:inbox newer_than:7d' --max 100 --json

### Leer spam

gog gmail search 'in:spam newer_than:30d' --max 50 --json

### Leer una carpeta/etiqueta específica

# Etiquetas de sistema
gog gmail search 'in:sent newer_than:7d' --max 20 --json
gog gmail search 'in:drafts' --max 20 --json
gog gmail search 'in:trash newer_than:30d' --max 20 --json
gog gmail search 'is:starred' --max 20 --json

# Etiquetas personalizadas (carpetas del usuario)
gog gmail search 'label:Clientes newer_than:30d' --max 20 --json
gog gmail search 'label:Proyectos' --max 20 --json
gog gmail search 'label:Facturas newer_than:90d' --max 20 --json

### Buscar correos

# Por remitente
gog gmail search 'from:juan@empresa.com newer_than:30d' --max 20 --json

# Por asunto
gog gmail search 'subject:propuesta' --max 10 --json

# Por contenido
gog gmail search 'propuesta presupuesto 2026' --max 10 --json

# Combinado
gog gmail search 'from:ceo@empresa.com is:unread newer_than:7d' --max 10 --json

# Con adjuntos
gog gmail search 'has:attachment in:inbox newer_than:7d' --max 10 --json

### Filtros de tiempo útiles

FiltroSignificadonewer_than:1dúltimo díanewer_than:7dúltima semananewer_than:30dúltimo mesolder_than:180dmás de 6 mesesafter:2026/01/01desde fecha exacta

### Presentación de resultados

Después de obtener el JSON, presenta un resumen claro al usuario:

📥 INBOX — 8 correos nuevos (3 no leídos)

  ⭐ [hoy 09:14] ceo@empresa.com
     "Reunión urgente esta tarde"

  📧 [hoy 08:30] juan@empresa.com
     "Re: Propuesta Q1 2026"

  📰 [ayer 18:00] newsletter@medium.com
     "Top 10 AI tools this week"
  ...

¿Quieres que analice estos correos o que responda alguno?

### Múltiples cuentas

Si el usuario tiene más de una cuenta de Gmail:

# Listar cuentas configuradas
gog auth list

# Leer de una cuenta específica
gog gmail search 'in:inbox is:unread' --account otra@gmail.com --max 20 --json

# Cambiar cuenta por defecto
export GOG_ACCOUNT=otra@gmail.com

### Notas importantes

Usar siempre --json para obtener datos estructurados
Usar --no-input en modo automático/cron para evitar prompts interactivos
El flag --max limita resultados; aumentar si el usuario quiere más
Los resultados de búsqueda de Gmail usan la misma sintaxis que gmail.com
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Coorops25
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T20:42:00.224Z
- Expires at: 2026-05-08T20:42:00.224Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gmailcleaner)
- [Send to Agent page](https://openagent3.xyz/skills/gmailcleaner/agent)
- [JSON manifest](https://openagent3.xyz/skills/gmailcleaner/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gmailcleaner/agent.md)
- [Download page](https://openagent3.xyz/downloads/gmailcleaner)