← 返回 Skills 市场
yying01

daily-progress-tracker

作者 yying01 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
174
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install daily-progress-tracker
功能描述
帮助用户进行每日工作汇总,生成结构化的日报。当用户提到「日报」「工作总结」「今日汇报」「总结今天」时激活。
使用说明 (SKILL.md)

每日工作进度跟踪

帮助用户整理每日工作内容,生成结构化的日报文档。

工作流程

  1. 询问今日工作 - 引导用户列出今天完成的工作
  2. 按项目分类 - 将工作内容按项目/模块分组
  3. 标注状态 - 每项工作标注状态:
    • ✅ 已完成
    • 🔄 进行中
    • 🚫 阻塞
  4. 生成日报 - 输出 Markdown 格式
  5. 保存文件 - 存储到指定目录

日报模板

# 工作日报 - {YYYY-MM-DD}

## 项目A
- ✅ 完成功能X开发
- 🔄 进行中:接口对接(预计明天完成)
- 🚫 阻塞:等待设计稿

## 项目B
- ✅ 修复 Bug #123
- ✅ 代码评审

## 明日计划
- [ ] 继续接口对接
- [ ] 开始新功能开发

## 备注
- 今日会议:产品需求评审 14:00-15:00

环境变量

  • REPORTS_DIR - 日报存储目录,默认 ~/reports

脚本

保存日报

node {baseDir}/scripts/save-report.mjs \x3Ccontent>

自动保存到 ~/reports/YYYY-MM-DD.md(或 $REPORTS_DIR/YYYY-MM-DD.md

安全使用建议
This skill is essentially a small helper that formats and saves a daily report file. Things to consider before installing: - The skill will write files to ~/reports by default (or $REPORTS_DIR if you set that environment variable). Confirm you are okay with the agent creating/writing files in that location. - The registry metadata did not declare REPORTS_DIR as a required env var even though the SKILL.md and script reference it — treat this as a documentation gap, not a hidden secret. If you rely on a custom path, set REPORTS_DIR before use. - The included script requires Node.js to run and accepts the report content as a single command-line argument; ensure the agent or invocation quotes/encodes multiline content properly (otherwise content may be truncated or incorrectly passed). - The script overwrites the same YYYY-MM-DD.md file for the day; if you need append behavior or versioning, modify the script or keep backups. - There is no network activity or credential access in the code, so it does not exfiltrate data by itself. However, saved reports may contain sensitive information—avoid including secrets in reports unless you trust the environment. If you want higher assurance: run the included script in a sandbox/local environment, set REPORTS_DIR to a safe test directory, and review the code (it's short and readable). If you plan to use it in production, request that the skill author update the metadata to list REPORTS_DIR in requirements to eliminate the mismatch.
功能分析
Type: OpenClaw Skill Name: daily-progress-tracker Version: 1.0.0 The daily-progress-tracker skill is a standard utility for generating and saving daily work reports. The provided Node.js script (save-report.mjs) simply writes user-provided content to a local directory (~/reports) using a date-based filename, and the SKILL.md instructions align perfectly with this functionality without any signs of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description match the included behavior: prompting the user, generating Markdown, and saving a file. The only minor mismatch is that the registry metadata lists no required env vars while SKILL.md and the script reference REPORTS_DIR as an environment variable (with a sensible default). Otherwise no unexpected capabilities (no network, no unrelated binaries).
Instruction Scope
SKILL.md instructions are narrowly scoped to gathering user input, formatting a report, and saving it. The runtime script only reads REPORTS_DIR (or uses the home directory), creates the directory if needed, and writes the report file. It does not read other files or transmit data externally.
Install Mechanism
Instruction-only skill with a small included script; there is no install spec, no downloads, and nothing written to disk by an installer. This is the lowest-risk install posture.
Credentials
No credentials or sensitive env vars are requested. The script does use REPORTS_DIR if present, but the skill metadata did not declare that env var as required — this is a documentation/metadata mismatch (not an obvious security problem) and should be fixed for clarity.
Persistence & Privilege
The skill is not always-enabled, does not request elevated privileges, and does not modify other skills or global agent config. Its only persistent effect is writing a daily Markdown file under the user's home (or REPORTS_DIR).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install daily-progress-tracker
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /daily-progress-tracker 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
1.0.0
元数据
Slug daily-progress-tracker
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

daily-progress-tracker 是什么?

帮助用户进行每日工作汇总,生成结构化的日报。当用户提到「日报」「工作总结」「今日汇报」「总结今天」时激活。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 174 次。

如何安装 daily-progress-tracker?

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

daily-progress-tracker 是免费的吗?

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

daily-progress-tracker 支持哪些平台?

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

谁开发了 daily-progress-tracker?

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

💬 留言讨论