# Send Daily Email Summary 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "email-summary",
    "name": "Daily Email Summary",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/bbdyno/email-summary",
    "canonicalUrl": "https://clawhub.ai/bbdyno/email-summary",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/email-summary",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=email-summary",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "requirements.txt",
      "README.md",
      "SKILL.md",
      "scripts/fetch_emails.py",
      "examples/sample_output.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "email-summary",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:37:10.126Z",
      "expiresAt": "2026-05-06T15:37:10.126Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=email-summary",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=email-summary",
        "contentDisposition": "attachment; filename=\"email-summary-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "email-summary"
      },
      "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/email-summary"
    },
    "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/email-summary",
    "downloadUrl": "https://openagent3.xyz/downloads/email-summary",
    "agentUrl": "https://openagent3.xyz/skills/email-summary/agent",
    "manifestUrl": "https://openagent3.xyz/skills/email-summary/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/email-summary/agent.md"
  }
}
```
## Documentation

### Email Summary Skill

This skill fetches recent emails from your Gmail account and provides AI-powered summaries.

### How it works

When invoked, this skill will:

Authenticate with Gmail API using credentials at $GMAIL_CREDENTIALS_PATH
Fetch recent emails (default: last 10 unread emails)
Summarize each email with:

Sender and subject
Key points from the email body
Recommended actions or responses


Present results in an organized, easy-to-scan format

### Instructions for the Agent

When this skill is invoked:

First, verify that the Gmail API credentials exist at the path specified in $GMAIL_CREDENTIALS_PATH environment variable
Run the helper script located at {baseDir}/scripts/fetch_emails.py with the appropriate arguments:

Default: python3 {baseDir}/scripts/fetch_emails.py --count 10
With arguments: python3 {baseDir}/scripts/fetch_emails.py $ARGUMENTS


Parse the JSON output from the script
For each email, provide a concise summary including:

From: Sender name and email
Subject: Email subject line
Summary: 2-3 sentence summary of key points
Action: Suggested action (reply, archive, flag for follow-up, etc.)


Present all summaries in a well-formatted list

### Usage Examples

/email-summary

Fetches and summarizes the last 10 unread emails.

/email-summary --count 20

Fetches and summarizes the last 20 unread emails.

/email-summary --all

Fetches and summarizes all unread emails.

### Setup Requirements

Before using this skill, ensure:

Gmail API credentials are configured
Environment variable GMAIL_CREDENTIALS_PATH points to your credentials JSON file
Python 3 and required packages are installed (see setup guide in README.md)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: bbdyno
- 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-04-29T15:37:10.126Z
- Expires at: 2026-05-06T15:37:10.126Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/email-summary)
- [Send to Agent page](https://openagent3.xyz/skills/email-summary/agent)
- [JSON manifest](https://openagent3.xyz/skills/email-summary/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/email-summary/agent.md)
- [Download page](https://openagent3.xyz/downloads/email-summary)