每日日报生成器

v1.0.0

Daily report generator - automatically summarizes today's tasks and generates formatted daily reports. Use when user asks for daily report, work summary, or...

1· 149·0 current·0 all-time
by小艺@youyancheng1

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for youyancheng1/dailys-report.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "每日日报生成器" (youyancheng1/dailys-report) from ClawHub.
Skill page: https://clawhub.ai/youyancheng1/dailys-report
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install dailys-report

ClawHub CLI

Package manager switcher

npx clawhub@latest install dailys-report
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included scripts and SKILL.md. The script reads local memory and PROJECTS.md files and generates formatted text/Markdown/Word reports — this matches the stated purpose. No unrelated credentials or external services are required.
Instruction Scope
Runtime instructions tell the agent to run scripts/generate_report.py and to read/write files under the user's home (~/.openclaw workspace, config, and Desktop). The Python script only reads those local files, parses list items, and writes report files; it does not access the network, other system config, shell history, or secrets.
Install Mechanism
No install specification. The package contains plain Python scripts and reference files only; there is no download-from-URL or installer that would write arbitrary code to disk beyond these provided files.
Credentials
No environment variables or external credentials are requested. The config and workspace paths (~/.openclaw/...) used are reasonable for a local reporting tool. The only external requirement is an optional python-docx library for Word export (noted in SKILL.md).
Persistence & Privilege
The skill does not request 'always' inclusion, does not modify other skills or global agent configs, and only interacts with files inside the user's home. It will write output files (Desktop or --output) which is expected behavior.
Assessment
This skill appears to be a local report generator that reads files from ~/.openclaw/workspace (memory and PROJECTS.md) and writes reports (default to your Desktop). Before installing or running: 1) inspect the memory files it will read to ensure they don't contain sensitive data you don't want processed; 2) if you don't want files written to Desktop, run with the --output flag or change the config; 3) install python-docx only if you need .docx export; 4) because this is an instruction-only skill that executes bundled Python scripts, only enable it if you trust the skill source and are comfortable running its code locally.

Like a lobster shell, security has layers — review code before you run it.

latestvk9763hhvdk7chjyrghmyyqj9en832t7b
149downloads
1stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Daily Report Generator (每日日报生成器)

自动汇总今日任务,生成格式化日报。

Features

  • 📋 自动汇总 - 从 memory 文件提取今日任务
  • 📝 格式化输出 - 生成结构化日报
  • 📄 Word导出 - 支持导出 .docx 格式
  • ⚙️ 自定义模板 - 可配置日报模板

Quick Start

Generate Today's Report

生成今日日报
帮我写个日报
今天的日报

Export to Word

生成日报并导出Word
导出今日日报到桌面

Commands

# 生成今日日报(纯文本)
python3 {baseDir}/scripts/generate_report.py

# 生成今日日报(Markdown格式)
python3 {baseDir}/scripts/generate_report.py --format md

# 生成并导出Word文档
python3 {baseDir}/scripts/generate_report.py --format docx --output daily_report.docx

# 指定日期
python3 {baseDir}/scripts/generate_report.py --date 2026-03-17

Output Format

默认格式

【日报】2026-03-17

一、今日完成
- [x] 任务1
- [x] 任务2
- [ ] 任务3 (进行中)

二、工作总结
...

三、明日计划
- 任务A
- 任务B

四、备注
...

Markdown格式

# 每日日报 - 2026年03月17日

## ✅ 今日完成
- 任务1
- 任务2

## 📊 工作总结
...

## 📅 明日计划
- [ ] 任务A
- [ ] 任务B

## 📝 备注
...

Configuration

配置文件:~/.openclaw/daily-report-config.json

{
  "template": "default",
  "output_dir": "~/Desktop",
  "include_time": true,
  "include_stats": true,
  "language": "zh-CN"
}

Data Sources

日报内容来源(按优先级):

  1. memory/YYYY-MM-DD.md - 今日记忆文件
  2. PROJECTS.md - 项目任务清单
  3. 用户输入 - 即时提供的任务列表

Custom Templates

模板文件:~/.openclaw/templates/daily-report.md

# {{date}} 工作日报

## 今日完成
{{completed_tasks}}

## 工作内容
{{work_summary}}

## 明日计划
{{tomorrow_plan}}

## 备注
{{notes}}

Example Usage

场景1:快速生成

生成今日日报

场景2:导出分享

生成日报导出到桌面,我要发给领导

场景3:自定义内容

帮我生成日报,今天完成了:1.写完效果图 2.和客户沟通 3.整理文件

Notes

  • 默认从 memory 文件自动提取内容
  • 支持手动补充任务
  • Word 导出需要安装 python-docx
  • 模板支持自定义变量替换

Comments

Loading comments...