← 返回 Skills 市场
daimingvip-a11y

Ai Secretary Bundle

作者 daimingvip-a11y · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
102
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ai-secretary-bundle
功能描述
AI秘书套装 - 24小时智能助理,整合邮件管理、日程提醒、新闻摘要、待办管理四大核心能力。专为企业高管、自由职业者和忙碌专业人士设计,每天节省1-2小时工作时间。定价¥99/套。
使用说明 (SKILL.md)

AI秘书套装 (AI Secretary Bundle)

你的24小时智能助理,让效率翻倍,让时间自由

💼 套装定位

专为忙碌的专业人士、企业主和高管设计,整合邮件、日程、资讯和任务管理四大核心能力,打造一站式AI秘书体验。


🎯 包含技能

1. 邮件管理 (email-mail-master)

  • 功能:多邮箱统一管理、智能摘要、自动分类、定时发送
  • 适用场景:每日邮件处理、批量回复、邮件归档
  • 价值:节省每天1-2小时邮件处理时间

2. 日程提醒 (qqbot-cron / cron)

  • 功能:智能定时提醒、周期性任务、重要事项通知
  • 适用场景:会议提醒、截止日期、习惯养成
  • 价值:不再错过任何重要事项

3. 每日新闻摘要 (ai-news-collector / ai-news-oracle)

  • 功能:AI领域最新动态、热度排序、中文摘要
  • 适用场景:晨间简报、行业动态追踪
  • 价值:10分钟掌握全天重要资讯

4. 待办管理 (task-tracker)

  • 功能:任务状态追踪、进度更新、失败恢复
  • 适用场景:项目管理、个人任务追踪
  • 价值:任务可视化,进度一目了然

📦 套装内容

ai-secretary-bundle/
├── SKILL.md                 # 本文件 - 套装总览
├── config/
│   ├── email-config.yaml    # 邮箱配置模板
│   ├── cron-schedule.yaml   # 定时任务模板
│   └── news-sources.yaml    # 新闻源配置
├── examples/
│   ├── daily-routine.md     # 每日工作流程示例
│   ├── meeting-prep.md      # 会议准备示例
│   └── weekly-review.md     # 周回顾示例
└── README.md                # 快速上手指南

🚀 快速开始

第一步:安装技能

# 安装邮件管理
py -m clawhub install email-mail-master

# 安装定时提醒
py -m clawhub install qqbot-cron

# 安装新闻收集
py -m clawhub install ai-news-collector

# 安装任务追踪
py -m clawhub install task-tracker

第二步:配置邮箱

编辑 config/email-config.yaml

email_accounts:
  - name: "工作邮箱"
    type: "imap"
    server: "imap.company.com"
    username: "[email protected]"
    password: "${EMAIL_PASSWORD}"
    folders:
      - "INBOX"
      - "Sent"
      - "Important"
  
  - name: "个人邮箱"
    type: "gmail"
    username: "[email protected]"
    app_password: "${GMAIL_APP_PASSWORD}"

第三步:设置每日简报

# 设置每天早上8点的新闻摘要
py -m clawhub run cron:add --name "daily-news" --schedule "0 8 * * *" --task "ai-news-collector --category=ai --summary=true"

💡 典型使用场景

场景1:晨间例行 (Morning Routine)

用户:开始我的一天

AI秘书:
📧 邮件摘要:您有5封新邮件,2封需要回复
   - 来自张总:项目进度询问(高优先级)
   - 来自李经理:会议改期通知

📰 今日AI资讯(3条热榜):
   1. OpenAI发布GPT-5预览版...
   2. Google Gemini 2.0重大更新...
   3. 国内大模型价格战升级...

📋 今日待办:
   ☐ 上午10点 - 产品评审会
   ☐ 下午2点 - 客户电话
   ☐ 本周五前 - 提交季度报告

需要我帮您回复张总的邮件吗?

场景2:会议准备

用户:帮我准备下午3点的项目评审会

AI秘书:
✅ 已为您准备会议资料:

📎 相关邮件:
   - 项目启动邮件(3月15日)
   - 上周进度更新(3月18日)

📊 待讨论事项:
   1. 技术方案确认
   2. 时间节点调整
   3. 资源分配问题

⏰ 已设置会议提醒:下午2:45
📧 已发送会议议程给参会人员

场景3:周回顾

用户:帮我做本周回顾

AI秘书:
📈 本周数据概览:
   - 处理邮件:127封
   - 完成任务:23项
   - 参加会议:8场
   - 节省时间:约12小时

🎯 下周重点:
   - 周一:产品发布准备
   - 周三:客户演示
   - 周五:团队复盘

⚠️ 需要关注:
   - 3个任务即将到期
   - 2封邮件待回复超过48小时

⚙️ 配置模板

定时任务配置

# config/cron-schedule.yaml
cron_jobs:
  - name: "morning-briefing"
    schedule: "0 8 * * 1-5"
    tasks:
      - "email-mail-master:summary --unread-only"
      - "ai-news-collector --category=ai,tech"
      - "task-tracker:list --today"
  
  - name: "weekly-review"
    schedule: "0 18 * * 5"
    tasks:
      - "email-mail-master:stats --week"
      - "task-tracker:report --week"
  
  - name: "end-of-day"
    schedule: "0 18 * * 1-5"
    tasks:
      - "task-tracker:remind --tomorrow"
      - "email-mail-master:check --flagged"

新闻源配置

# config/news-sources.yaml
news_sources:
  ai:
    - "OpenAI Blog"
    - "Google AI Blog"
    - "Anthropic News"
    - "机器之心"
    - "量子位"
  
  tech:
    - "TechCrunch"
    - "The Verge"
    - "36氪"
    - "虎嗅"
  
  filter:
    keywords:
      - "AI"
      - "大模型"
      - "ChatGPT"
      - "Claude"
    exclude:
      - "广告"
      - "招聘"

💰 定价与价值

项目 传统方案 AI秘书套装
邮件处理 2小时/天 30分钟/天
资讯获取 1小时/天 10分钟/天
任务管理 手动记录 自动追踪
月度成本 ¥3000+ (助理) ¥99

套装定价:¥99/套(一次性购买,终身使用)


🛠️ 技术要求

  • OpenClaw >= 2.0
  • Windows 10/11 或 macOS 或 Linux
  • 网络连接(用于邮件同步和新闻获取)

📞 售后支持

  • 文档:https://docs.clawhub.com/ai-secretary
  • 社区:加入飞书群获取更新
  • 更新:购买后终身免费更新

让AI成为你的超级助理,把时间留给更重要的事。

安全使用建议
This bundle appears to do what it says (manage mail, schedule reminders, fetch news), but exercise caution before installing or entering credentials: 1) Verify the author/source and prefer an official/homepage or known repository before trusting automatic email access. 2) Do not put your primary account password in config files; use app-specific passwords or OAuth where possible, and store secrets in a secure secrets manager or environment variables (and confirm the skill supports that). 3) Confirm where credentials will be stored and whether the installed sub-skills (email-mail-master, qqbot-cron, ai-news-collector, task-tracker) are trustworthy — ask the publisher for their origins and code. 4) Because the skill can read/send email and run scheduled tasks, limit its scope to low-privilege/test accounts first, and monitor outgoing messages and logs. 5) Ask the maintainer to update the manifest to declare required env vars (EMAIL_PASSWORD, GMAIL_APP_PASSWORD or OAuth tokens) and to document credential handling; lack of those declarations is the main inconsistency here.
功能分析
Type: OpenClaw Skill Name: ai-secretary-bundle Version: 1.0.0 The ai-secretary-bundle is a productivity suite designed to orchestrate multiple sub-skills for email management, scheduling, and news aggregation. The bundle consists of configuration templates (YAML) and documentation (SKILL.md, README.md) that define the AI agent's persona and task workflows. It follows standard OpenClaw patterns, such as using environment variables for sensitive credentials and providing clear manual installation steps. No evidence of malicious intent, data exfiltration, or unauthorized execution was found in the provided files.
能力评估
Purpose & Capability
The skill claims email management, scheduling, news collection and task tracking — those capabilities justify needing email/news access. However, the package does not declare any required environment variables or primary credential even though the SKILL.md and config templates explicitly expect email credentials (EMAIL_PASSWORD, GMAIL_APP_PASSWORD). That omission is an incoherence: a mail-management skill should explicitly declare and justify credential requirements.
Instruction Scope
Runtime instructions ask you to place email account credentials (or env placeholders) in config/email-config.yaml and to run scheduled tasks that will access mail and external news sources. The instructions do not direct the agent to read unrelated system files, but they do enable automated reading/sending of email and periodic cron tasks — behaviours with significant data-access implications that are not accompanied by guidance on safe credential handling, least privilege, or OAuth vs. plaintext storage.
Install Mechanism
This is an instruction-only skill with no install spec or code files to execute. The SKILL.md references installing related skills via py -m clawhub and cloning a GitHub repo, which are expected for this type of bundle and present lower installation risk than downloading arbitrary archives from unknown hosts.
Credentials
The skill will need email credentials to function, but requires.env is empty and primary credential is not declared. The config examples reference environment-style placeholders (${EMAIL_PASSWORD}, ${GMAIL_APP_PASSWORD}) that are not listed in the manifest. Storing passwords in config files (as the README suggests editing the file directly) risks plaintext credential exposure; the skill gives no guidance to use app-specific passwords, OAuth, or secrets storage.
Persistence & Privilege
The skill is not force-enabled (always: false) and does not declare any capability to modify other skills or system-wide agent settings. It will run scheduled tasks per the provided cron templates, which is expected for an assistant bundle and consistent with its purpose.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-secretary-bundle
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-secretary-bundle 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
AI秘书套装 1.0.0 首发版本上线,整合多项核心助理功能: - 首次发布,针对高管和专业人士,提供四合一AI秘书体验。 - 集成邮件管理、日程提醒、每日新闻摘要、待办任务追踪模块。 - 提供详细配置模板与典型应用场景,支持快速部署与个性化设置。 - 优化日常办公流程,助力用户每天节省1-2小时工作时间。 - 一次性定价 ¥99,包含终身免费更新与社区支持。
元数据
Slug ai-secretary-bundle
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Ai Secretary Bundle 是什么?

AI秘书套装 - 24小时智能助理,整合邮件管理、日程提醒、新闻摘要、待办管理四大核心能力。专为企业高管、自由职业者和忙碌专业人士设计,每天节省1-2小时工作时间。定价¥99/套。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 102 次。

如何安装 Ai Secretary Bundle?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-secretary-bundle」即可一键安装,无需额外配置。

Ai Secretary Bundle 是免费的吗?

是的,Ai Secretary Bundle 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Ai Secretary Bundle 支持哪些平台?

Ai Secretary Bundle 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ai Secretary Bundle?

由 daimingvip-a11y(@daimingvip-a11y)开发并维护,当前版本 v1.0.0。

💬 留言讨论