通过 QQ 或 163 邮箱发送和接收邮件。支持发送普通邮件、带附件邮件、接收邮件、检查新邮件。当用户要求发送邮件、查看邮件、检查新邮件时使用。
$ npx -y skills add countbot-ai/CountBot --skill email --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/email
Context preview
The summary Claude sees to decide when to auto-load this skill.
通过 QQ 或 163 邮箱发送和接收邮件。支持发送普通邮件、带附件邮件、接收邮件、检查新邮件。当用户要求发送邮件、查看邮件、检查新邮件时使用。
SKILL.md
email.SKILL.mdname: email
description: 通过 QQ 或 163 邮箱发送和接收邮件。支持发送普通邮件、带附件邮件、接收邮件、检查新邮件。当用户要求发送邮件、查看邮件、检查新邮件时使用。
homepage: https://github.com/countbot-ai/CountBot
邮件管理
通过 QQ 或 163 邮箱发送和接收邮件。
配置
编辑 `skills/email/scripts/config.json`,填写邮箱地址和授权码(非登录密码)。
授权码获取:
- QQ 邮箱:设置 > 账户 > 开启 IMAP/SMTP > 生成授权码
- 163 邮箱:设置 > POP3/SMTP/IMAP > 开启服务 > 设置授权密码
可通过 `default_mailbox` 字段设置默认邮箱(`"qq"` 或 `"163"`)。
命令行调用
# 发送邮件
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):POP3 协议不支持文件夹操作,删除始终是永久的,不可恢复。
Read more
name: email description: 通过 QQ 或 163 邮箱发送和接收邮件。支持发送普通邮件、带附件邮件、接收邮件、检查新邮件。当用户要求发送邮件、查看邮件、检查新邮件时使用。 homepage: https://github.com/countbot-ai/CountBot
邮件管理
通过 QQ 或 163 邮箱发送和接收邮件。
配置
编辑 `skills/email/scripts/config.json`,填写邮箱地址和授权码(非登录密码)。
授权码获取:
- QQ 邮箱:设置 > 账户 > 开启 IMAP/SMTP > 生成授权码
- 163 邮箱:设置 > POP3/SMTP/IMAP > 开启服务 > 设置授权密码
可通过 `default_mailbox` 字段设置默认邮箱(`"qq"` 或 `"163"`)。
命令行调用
# 发送邮件 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):POP3 协议不支持文件夹操作,删除始终是永久的,不可恢复。
更适配中文用户的轻量开源AI Agent | 国产大模型Coding plan支持 | 兼容OpenClaw Skills生态| 已接入微信ClawBot/微博龙虾/飞书/钉钉/QQ/小智AI/Telegram/deepseek-v4。
Repo: countbot-ai/CountBot
Other skills on countbot.
- /agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a
Open skill - /agent-team-manager
多智能体团队管理。创建、查看、修改、删除 CountBot 的多智能体团队,管理团队成员(角色)和团队级自定义模型配置。当用户要新建 Pipeline/Graph/Council 团队、调整成员分工、修改依赖关系、开关技能系统、设置团队专属模型时使用。
Open skill - /baidu-search
百度 AI 搜索。支持网页搜索、百度百科、秒懂百科、AI 智能生成四种模式。自动包含当前日期上下文。当用户要求搜索信息、查询百科、获取最新资讯、搜索新闻、查找资料时使用。
Open skill - /cron-manager
定时任务管理。创建、查看、修改、删除定时任务,管理任务会话数据。当用户需要设置提醒、定时执行任务、管理调度计划时使用。
Open skill - /find-skills
基于腾讯 SkillHub 搜索、安装和管理技能。用户提到“找技能”“安装 skill”“扩展功能”“启用/禁用 skill”“删除 skill”“安装 SkillHub CLI”时优先使用。
Open skill - /humanizer-1.0.0
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language,
Open skill

