通过 QQ 或 163 邮箱发送和接收邮件。支持发送普通邮件、带附件邮件、接收邮件、检查新邮件。当用户要求发送邮件、查看邮件、检查新邮件时使用。
npx skills add countbot-ai/CountBot --skill email --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 邮件管理 通过 QQ 或 163 邮箱发送和接收邮件。 ## 配置 编辑 `skills/email/scripts/config.json`,填写邮箱地址和授权码(非登录密码)。 授权码获取: - QQ 邮箱:设置 > 账户 > 开启 IMAP/SMTP > 生成授权码 - 163 邮箱:设置 > POP3/SMTP/IMAP > 开启服务 > 设置授权密码 可通过 `default_mailbox` 字段设置默认邮箱(`"qq"` 或 `"163"`)。 ## 命令行调用 ```bash # 发送邮件 python3 skills/email/scripts/mail.py send --to user@example.com --subject "主题" --content "内容" # 发送带附件 python3 skills/email/scripts/mail.py send --to user@example.com --subject "报告" --content "请查收" --attach report.pdf # 接收最新邮件 python3 skills/email/scripts/mail.py receive --limit 5 # 接收邮件(JSON 输出,推荐 AI 使用) python3 skills/email/scripts/mail.py receive --limit 5 --json # 检查新邮件(最近 N 天) python3 skills/email/scripts/mail.py check-new --since 1 # 检查新邮件(JSON 输出) python3 skills/email/scripts/mail.py check-new --since 1 --json # 删除邮件(移到已删除文件夹,QQ邮箱可恢复) python3 skills/email/scripts/mail.py delete --ids 123 # 批量删除 python3 skills/email/scripts/mail.py delete --ids 123 124 125 # 彻底删除(不可恢复) python3 skills/email/scripts/mail.py delete --ids 123 --permanent # 指定邮箱类型 python3 skills/email/scripts/mail.py --mailbox 163 send --to user@example.com --subject "测试" ``` ## 删除邮件说明 - QQ 邮箱(IMAP):默认移到「已删除」文件夹,可以从已删除中恢复。加 `--permanent` 彻底删除。 - 163 邮箱(POP3):POP
- 配置
- 命令行调用
- 删除邮件说明
python3 skills/email/scripts/mail.py send --to user@example.com --subject "主题" --content "内容" python3 skills/email/scripts/mail.py send --to user@example.com --subject "报告" --content "请查收" --attach report.pdf python3 skills/email/scripts/mail.py receive --limit 5 python3 skills/email/scripts/mail.py receive --limit 5 --json python3 skills/email/scripts/mail.py check-new --since 1 python3 skills/email/scripts/mail.py check-new --since 1 --json python3 skills/email/scripts/mail.py delete --ids 123 python3 skills/email/scripts/mail.py delete --ids 123 124 125 python3 skills/email/scripts/mail.py delete --ids 123 --permanent python3 skills/email/scripts/mail.py --mailbox 163 send --to user@example.com --subject "测试"
What does the email skill do?
通过 QQ 或 163 邮箱发送和接收邮件。支持发送普通邮件、带附件邮件、接收邮件、检查新邮件。当用户要求发送邮件、查看邮件、检查新邮件时使用。
How do I install it?
Run `npx skills add countbot-ai/CountBot --skill email --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From countbot-ai/CountBot, a repository with 760 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
