team-daily-report

自动汇总团队内 agent、cron、skill 进展与关键事件,生成并推送结构化日报。

33 stars

Best use case

team-daily-report is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

自动汇总团队内 agent、cron、skill 进展与关键事件,生成并推送结构化日报。

Teams using team-daily-report should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/team-daily-report/SKILL.md --create-dirs "https://raw.githubusercontent.com/aAAaqwq/AGI-Super-Team/main/skills/team-daily-report/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/team-daily-report/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How team-daily-report Compares

Feature / Agentteam-daily-reportStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

自动汇总团队内 agent、cron、skill 进展与关键事件,生成并推送结构化日报。

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 小a团队日报 Skill

每日自动生成并推送团队日报,汇总当天所有agent工作、cron执行、skill进度、关键事件。

## 触发方式

- Cron: 每天 23:00 自动执行
- 手动: `python3 ~/clawd/scripts/team_daily_report.py`

## 推送渠道

| 目标 | 方式 | Bot |
|------|------|-----|
| DailyNews群 (-1003824568687) | 脚本内置 sendPhoto + sendText | NewsRobot (@fkkanfnnfbot) |
| Daniel私聊 (8518085684) | cron agent 用 message tool | 主Bot |

## 执行流程

### 步骤1: Dump当日cron状态

cron agent 用 `cron(action='list')` 获取所有job,筛选今天执行过的,写入:

```
~/clawd/config/cron-status-today.json
```

格式:
```json
[
  {"name": "任务名", "status": "ok", "time": "HH:MM", "dur": 秒数},
  ...
]
```

提取逻辑:遍历每个job的 `state.lastRunAtMs`,转为日期,匹配今天的,提取 name/lastStatus/time/lastDurationMs。

### 步骤2: 运行日报脚本

```bash
python3 ~/clawd/scripts/team_daily_report.py
```

脚本自动完成:
1. 读取数据源(见下方)
2. 生成文字报告
3. 通过NewsRobot推送封面图+文字到DailyNews群
4. 保存到 `~/clawd/reports/daily/team-report-{date}.txt`

### 步骤3: 发送到Daniel私聊

cron agent 读取生成的 txt 文件,用 message tool 发送给 Daniel。

## 数据源

| 数据 | 来源 | 变化频率 |
|------|------|---------|
| Cron执行记录 | `~/clawd/config/cron-status-today.json` | 每日dump |
| Skill装备进度 | `~/clawd/config/agent-learning-progress.json` | 每小时(skill收集cron更新) |
| 今日亮点 | `~/clawd/memory/{YYYY-MM-DD}.md` | 全天累积 |
| 学习记录数 | `~/clawd/memory/learning-log.md` | 夜间学习cron更新 |
| 天气 | wttr.in/Shanghai API | 实时 |
| 封面图 | `~/clawd/assets/daily-report-covers/` | 按日期轮换 |

## 报告格式

```
🤖 小a团队日报 | 2026-02-11 周三
📍 上海 12°C Partly Cloudy · 封面: 莱依拉
━━━━━━━━━━━━━━━━━━━━

📊 今日概览
  成员 15 · 任务 10 · 成功 9 · 失败 1
  Skill 59/475 (12%) · 学习 1
  ██░░░░░░░░░░░░░░░░░░ 12%

👥 各Agent今日状态

🟣 claude-opus-4-6
  📊 数据分析师 █░░░░░░░ 3/31
  ⚖️ 法务顾问 █░░░░░░░ 5/32
  ...

🔵 glm-4.7
  📋 项目经理 █░░░░░░░ 3/32
  ...

🟢 kimi-k2.5
  💼 销售专家 ██░░░░░░ 8/33
  ...

🟡 gemini-3-pro
  🎧 客服专家 █░░░░░░░ 5/32
  ...

⚡ Cron执行记录
  06:29 ✅ 小a 夜间自我学习 (303s)
  09:01 ✅ 医疗企业融资监控 (72s)
  ...

💡 今日亮点
  · 亮点1
  · 亮点2

━━━━━━━━━━━━━━━━━━━━
⏰ 23:00 · v2.3
```

## 封面轮换规则

12张原神cosplay封面,按 `day_of_year % 12` 轮换:

| 序号 | 角色 | 文件 |
|------|------|------|
| 0 | 神里绫华 | ayaka.jpeg |
| 1 | 芭芭拉 | barbara.jpeg |
| 2 | 哥伦比娅 | colombina.jpeg |
| 3 | 甘雨 | ganyu.jpeg |
| 4 | 胡桃 | hutao.jpeg |
| 5 | 刻晴 | keqing.jpeg |
| 6 | 莱依拉 ||
| 7 | 丽莎 | lisa.jpeg |
| 8 | 琳妮特 | lynette.jpeg |
| 9 | 纳西妲 | nahida.jpeg |
| 10 | 雷电将军 | raiden.jpeg |
| 11 | 宵宫 | yoimiya.jpeg |

## 15个Agent配置

| Agent | 模型 | Emoji |
|-------|------|-------|
| sales | kimi-k2.5 | 💼 |
| support | gemini-3-pro | 🎧 |
| data | claude-opus-4-6 | 📊 |
| pm | glm-4.7 | 📋 |
| crm | kimi-k2.5 | 🤝 |
| finance | glm-4.7 | 💰 |
| legal | claude-opus-4-6 | ⚖️ |
| marketing | kimi-k2.5 | 🚀 |
| product | glm-4.7 | 🎯 |
| research | claude-opus-4-6 | 🔬 |
| ops | glm-4.7 | 🔧 |
| content | kimi-k2.5 | ✍️ |
| knowledge | gemini-3-pro | 📚 |
| news | kimi-k2.5 | 📰 |
| healthcare-monitor | claude-opus-4-6 | 🏥 |

## 关键文件

| 文件 | 用途 |
|------|------|
| `~/clawd/scripts/team_daily_report.py` | 日报生成+推送脚本 |
| `~/clawd/scripts/newsbot_send.py` | NewsRobot通用推送 |
| `~/clawd/config/cron-status-today.json` | 当日cron执行状态 |
| `~/clawd/config/agent-learning-progress.json` | Skill装备进度 |
| `~/clawd/config/agent-skills-map.json` | Agent-Skill映射 |
| `~/clawd/memory/learning-log.md` | 学习日志 |
| `~/clawd/assets/daily-report-covers/` | 12张cosplay封面 |
| `~/clawd/reports/daily/` | 历史日报存档 |

## Telegram限制

- sendPhoto caption: 最大1024字符
- sendMessage text: 最大4096字符
- 策略: 封面图用短caption,详细报告作为reply消息发送

## 注意事项

- NewsRobot token: `pass show tokens/telegram-newsrobot`
- 密钥永不硬编码
- 天气API偶尔超时,显示N/A不影响整体
- cron-status-today.json 必须在脚本运行前由agent dump,否则cron记录为空

Related Skills

token-reporter

33
from aAAaqwq/AGI-Super-Team

每日自动统计 OpenClaw 实例 Token 消耗和工作产出,上报到飞书多维表格。扫描 JSONL 日志按模型聚合 token,收集各 agent 当日工作摘要,写入飞书 Bitable。触发:'token报告'、'token report'、'日报'、'每日汇报'、'飞书上报'。

Team Foreman — 团队监工巡查 Skill

33
from aAAaqwq/AGI-Super-Team

> 每 15 分钟由 cron 调用。核心目标:**真实推进任务,不是写报告。**

team-coordinator

33
from aAAaqwq/AGI-Super-Team

团队协调与智能任务分配。作为高管,将用户任务拆解并分配给最合适的员工 agent 执行,协调多 agent 并行协作,汇总审核产出。

clawbio-pharmgx-reporter

33
from aAAaqwq/AGI-Super-Team

Pharmacogenomic report from DTC genetic data (23andMe/AncestryDNA)

microsoft-teams-automation

33
from aAAaqwq/AGI-Super-Team

Automate Microsoft Teams tasks via Rube MCP (Composio): send messages, manage channels, create meetings, handle chats, and search messages. Always search tools first for current schemas.

hunt-report

33
from aAAaqwq/AGI-Super-Team

Crypto hunt report — aggregate 4-hour hunting logs into actionable intelligence

daily-xhs-content — 小红书每日内容生产

33
from aAAaqwq/AGI-Super-Team

> Cron: `daily-xhs-content` | 每日 21:00 | agentId: content

daily-trending

33
from aAAaqwq/AGI-Super-Team

获取今日热榜,从tophub.today抓取各平台热搜榜单。当用户询问"今天有什么热搜"、"热榜"、"微博热搜"时触发。

daily-reflection

33
from aAAaqwq/AGI-Super-Team

Evening reflection — full P&L review and strategy adjustment at end of day

daily-portfolio

33
from aAAaqwq/AGI-Super-Team

Morning portfolio review — full position snapshot and daily P&L report

daily-gzh-content — 公众号每日内容生产

33
from aAAaqwq/AGI-Super-Team

> Cron: `daily-gzh-content` | 每日 21:30 | agentId: content

daily-douyin-content — 抖音每日内容生产

33
from aAAaqwq/AGI-Super-Team

> Cron: `daily-douyin-content` | 每日 22:00 | agentId: content