Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

cm-daily-standup-generatorcm 每日站立发电机

Agent Skill

cm-daily-standup-generator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,091

周安装

45

GitHub Stars

公开资料未说明

下载量

356
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cm-daily-standup-generator(cm 每日站立发电机)
来源仓库:https://github.com/charlie-morrison/cm-daily-standup-generator
安装命令:
openclaw skills install cm-daily-standup-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cm-daily-standup-generator

简介

用于生成结构化每日站立报告,基于 git 提交、PR 和问题活动分析。

  • 输出昨天/今天/阻塞事项三部分内容,提升团队协作透明度。
  • 通过 clawhub 安装,需参考原始 README 了解仓库上下文获取方式。
  • 使用前应确认 Git 历史可读性和 PR 合并状态准确性依赖。
  • cm-daily-standup-generator 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
cm-daily-standup-generator
description
Generate structured daily standup reports by analyzing git commits, pull request activity, issue trackers, and project context. Produces yesterday/today/blockers summaries tailored to your team's standup format. Use when asked to prepare a standup, summarize yesterday's work, generate a daily status update, create a standup report, or draft a scrum update. Triggers on "standup", "daily standup", "scrum update", "daily status", "what did I do yesterday", "standup report", "daily report", "status update", "stand-up".
metadata
tags
["standup", "scrum", "agile", "productivity", "git", "project-management", "daily-report", "team-collaboration"]

Daily Standup Generator

Generate comprehensive daily standup reports by analyzing your actual development activity across git history, pull requests, issue trackers, and branch context. Instead of trying to remember what you did yesterday, this skill reads the evidence and builds an accurate, well-structured standup for you.

Usage

Invoke this skill when you need to prepare for a daily standup meeting or async status update. The agent examines your recent development activity and produces a structured report.

Basic invocation:

Generate my standup report

With options:

Generate my standup for the last 2 days Generate standup for user "jane.doe" in /path/to/repo Generate standup report covering repos /app and /infrastructure

The agent will ask clarifying questions if needed (which repo, which git author, time range).

How It Works

Step 1: Identify the Developer and Time Range

The agent determines who the standup is for and what period to cover:

  • Git author: detected from git config user.name and git config user.email in the target repository. Can be overridden if the user specifies a name or email.
  • Time range: defaults to "since yesterday morning" (the last working day). Adjusts for weekends and holidays automatically: if today is Monday, it covers Friday through Sunday. The user can request a custom range (e.g., "last 2 days", "since Tuesday").
# The agent runs these to identify context
git config user.name
git config user.email
date +%A    # Check day of week for weekend adjustment

Step 2: Gather Git Commit Activity

The agent collects all commits authored by the developer in the time range:

# Fetch recent commits with full context
git log --author="developer@email.com" --since="yesterday 00:00" \
  --format="%h|%s|%b|%ai|%D" --all

# For multi-repo setups, the agent repeats across each repository
git -C /path/to/repo log --author="developer@email.com" \
  --since="yesterday 00:00" --format="%h|%s|%b|%ai" --all

The agent then analyzes commits to:

  • Group by logical work stream: related commits are clustered (e.g., all commits touching auth module grouped under "Authentication refactor")
  • Extract meaningful descriptions: commit messages are parsed, conventional commit prefixes interpreted (feat, fix, refactor, docs, test, chore)
  • Identify scope of changes: git diff --stat for key commits to understand magnitude
  • Detect work patterns: large refactors vs. small fixes vs. new features
# Understand the scope of specific commits
git diff --stat HEAD~5..HEAD --author="developer@email.com"

# Check which files/modules were touched
git log --author="developer@email.com" --since="yesterday 00:00" \
  --name-only --format="" | sort -u

Step 3: Analyze Pull Request Activity

The agent checks GitHub/GitLab for PR-related work:

# PRs authored by the developer (opened, merged, updated)
gh pr list --author="@me" --state all --json title,state,url,updatedAt,reviews,labels

# PRs reviewed by the developer
gh pr list --json title,state,url,reviews \
  --jq '.[] | select(.reviews[]?.author.login == "username")'

# Recently merged PRs
gh pr list --author="@me" --state merged --json title,url,mergedAt \
  --jq '.[] | select(.mergedAt > "2026-04-29T00:00:00Z")'

The agent categorizes PR activity into:

  • PRs opened: new work submitted for review
  • PRs merged: completed work that shipped
  • PRs reviewed: code review contributions to teammates
  • PRs updated: addressed review feedback, resolved conflicts
  • PRs with blockers: PRs awaiting review, failing CI, or with unresolved conversations

Step 4: Check Issue Tracker Activity

The agent looks for issue movement:

# Issues assigned to the developer
gh issue list --assignee="@me" --state all \
  --json title,state,url,labels,updatedAt

# Recently closed issues
gh issue list --assignee="@me" --state closed \
  --json title,url,closedAt \
  --jq '.[] | select(.closedAt > "2026-04-29T00:00:00Z")'

# Issues with recent comments from the developer
gh issue list --json title,url,comments \
  --jq '.[] | select(.comments[-1]?.author.login == "username")'

Step 5: Detect Active Branches and Work-in-Progress

The agent identifies what the developer is currently working on:

# Current branch
git branch --show-current

# Recent branches with activity
git for-each-ref --sort=-committerdate --count=5 \
  --format='%(refname:short)|%(committerdate:relative)|%(subject)' \
  refs/heads/

# Uncommitted work (staged and unstaged)
git status --porcelain

# Stashed work
git stash list

This reveals:

  • Active feature branches and their purpose
  • Uncommitted changes that indicate ongoing work
  • Stashed work that might need attention

Step 6: Identify Blockers and Risks

The agent proactively identifies potential blockers by checking:

  • Failing CI: PRs with red checks
  gh pr checks --json name,state,conclusion \
    --jq '.[] | select(.conclusion == "failure")'
  • Stale PRs: PRs open more than 48 hours without review
  • Dependency waits: PR descriptions or commit messages mentioning "blocked by", "waiting for", "depends on"
  • Merge conflicts: branches that diverge significantly from main
  git log --oneline main..feature-branch | wc -l
  git merge-tree $(git merge-base main feature-branch) main feature-branch
  • Unresolved review threads: PRs with pending requested changes

Step 7: Synthesize the Standup Report

The agent compiles everything into a structured standup report with three sections:

Yesterday (What I Did)

The agent groups completed work into logical categories:

  • Feature development (commits, PRs merged)
  • Bug fixes (fix commits, issues closed)
  • Code reviews performed
  • Infrastructure/DevOps work
  • Documentation updates
  • Meetings and discussions (inferred from gaps in commit activity or mentioned in commit messages)

Each item includes:

  • A clear, human-readable description (not raw commit messages)
  • Links to relevant PRs and issues
  • Scope indication (e.g., "3 files changed" or "major refactor across 12 files")

Today (What I Plan to Do)

The agent infers planned work from:

  • Open PRs that need attention (review feedback to address)
  • In-progress branches with uncommitted work
  • Issues assigned and not yet started
  • Follow-up work from yesterday's PRs (e.g., "merge after CI passes")
  • Sprint board items (if accessible)

Blockers

The agent surfaces anything that could slow down progress:

  • PRs waiting for review (with reviewer names and wait time)
  • Failing CI pipelines (with failure details)
  • Merge conflicts
  • Dependencies on other team members' work
  • External dependencies (API access, credentials, environments)

Step 8: Format and Deliver

The agent produces the standup in the requested format:

Default format (concise bullet points):

## Standup — April 30, 2026

### Yesterday
- Completed authentication token refresh logic (PR #142, merged)
- Fixed race condition in session cleanup (commit a3f9c21)
- Reviewed 2 PRs: #138 (caching layer), #140 (metrics endpoint)

### Today
- Address review feedback on PR #145 (API rate limiting)
- Start work on PROJ-289: user export feature
- Merge PR #142 after CI passes

### Blockers
- PR #145 waiting for review from @backend-team (opened 2 days ago)
- Staging environment down since yesterday — can't test export feature

Verbose format adds context, file lists, and diff stats.

Slack format produces a compact message suitable for async standup channels.

JSON format for integration with standup bots and dashboards.

Output

The agent produces a standup report containing:

  • Yesterday section: 3-8 bullet points summarizing completed work, grouped by work stream, with PR/issue links
  • Today section: 2-5 bullet points of planned work, derived from open branches, assigned issues, and pending PRs
  • Blockers section: 0-3 items that could slow progress, with specific details (who, what, how long)
  • Optional metrics: commits count, files changed, PRs merged, reviews given

The report is written in first person, uses clear non-technical language where possible, and is sized for a 60-second verbal delivery (approximately 150-250 words).

Multi-Repo Support

For developers working across multiple repositories, the agent scans each repo and produces a unified standup:

Repos analyzed:
  /home/dev/backend-api (12 commits)
  /home/dev/infrastructure (3 commits)
  /home/dev/shared-libs (1 commit)

Work items from different repos are interleaved chronologically and grouped by logical theme rather than by repository.

Team Standup Mode

When invoked with a team flag, the agent generates standups for all team members:

Generate standup for the whole team in /path/to/repo

This produces individual sections per developer, useful for team leads preparing for standup facilitation. The agent identifies cross-team dependencies (e.g., "Alice's PR #142 blocks Bob's feature branch").

Tips for Best Results

  • Run this skill from within the git repository you want to analyze, or specify the path
  • Ensure gh CLI is authenticated (gh auth status) for PR and issue data
  • For the most accurate "Today" section, keep your issue tracker assignments current
  • Use conventional commit messages (feat:, fix:, docs:) for better categorization
  • The agent handles monorepos by detecting subdirectory-scoped changes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.79%
按下载量换算320

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills