用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/stevehuang0115/crewly --skill daily-standup-report命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | Daily Standup Report |
| description | Generate a daily standup report from git commits, task status, and agent activity. |
| version | 1.0.0 |
| category | project-management |
| skillType | claude-skill |
| assignableRoles | ["product-manager","tpm","developer","generalist","fullstack-dev"] |
| triggers | ["standup","daily standup","standup report","what did we do yesterday"] |
| tags | ["standup","report","daily","git","status","project-management"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":30000}} |
Generate a daily standup report from git commits, task status, and agent activity. Answers the three standup questions: what was done, what's planned, and any blockers.
| Parameter | Required | Description |
|---|---|---|
projectPath | No | Path to the git project (defaults to .) |
days | No | Number of days to look back (default: 1) |
author | No | Filter git commits by author name or email |
includeTaskStatus | No | Include task board status from Crewly API (default: true) |
bash config/skills/agent/daily-standup-report/execute.sh '{"projectPath":"/path/to/project","days":1}'
bash config/skills/agent/daily-standup-report/execute.sh '{"projectPath":".","days":3}'
bash config/skills/agent/daily-standup-report/execute.sh '{"projectPath":".","days":1,"author":"steve"}'
JSON object with:
date — today's dateperiod — time range covereddone — array of commit messages from the periodplanned — array of active/in-progress tasksblockers — array of blocked tasksstats — git statistics (commits, files changed, insertions, deletions)report — pre-formatted markdown standup report