standup-report

Generate daily standup reports

Content Preview
# Standup Report

Generate daily standup reports

## Instructions

1. **Initial Setup**
   - Check Linear MCP server connection
   - Determine time range (default: last 24 hours)
   - Identify team members (from git config or user input)
   - Set report format preferences

2. **Data Collection**

#### Git Activity Analysis
```bash
# Collect commits from last 24 hours
git log --since="24 hours ago" --all --format="%h|%an|%ad|%s" --date=short

# Check branch activity
git for-each-ref --format='%(r
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/standup-report.md \
  https://raw.githubusercontent.com/qdhenry/Claude-Command-Suite/main/.claude/commands/team/standup-report.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/qdhenry/Claude-Command-Suite

Then reference at .claude/commands/team/standup-report.md

Related Skills