← Back to Skills Marketplace
174
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install daily-progress-tracker
Description
帮助用户进行每日工作汇总,生成结构化的日报。当用户提到「日报」「工作总结」「今日汇报」「总结今天」时激活。
README (SKILL.md)
每日工作进度跟踪
帮助用户整理每日工作内容,生成结构化的日报文档。
工作流程
- 询问今日工作 - 引导用户列出今天完成的工作
- 按项目分类 - 将工作内容按项目/模块分组
- 标注状态 - 每项工作标注状态:
- ✅ 已完成
- 🔄 进行中
- 🚫 阻塞
- 生成日报 - 输出 Markdown 格式
- 保存文件 - 存储到指定目录
日报模板
# 工作日报 - {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)
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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).
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install daily-progress-tracker - After installation, invoke the skill by name or use
/daily-progress-tracker - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
1.0.0
Metadata
Frequently Asked Questions
What is daily-progress-tracker?
帮助用户进行每日工作汇总,生成结构化的日报。当用户提到「日报」「工作总结」「今日汇报」「总结今天」时激活。 It is an AI Agent Skill for Claude Code / OpenClaw, with 174 downloads so far.
How do I install daily-progress-tracker?
Run "/install daily-progress-tracker" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is daily-progress-tracker free?
Yes, daily-progress-tracker is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does daily-progress-tracker support?
daily-progress-tracker is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created daily-progress-tracker?
It is built and maintained by yying01 (@yying01); the current version is v1.0.0.
More Skills