Daily Standup
Generate daily standup reports from Git activity, TODOs, and project status.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/sa9saq/daily-standupDaily Standup
Auto-generate standup reports from Git activity and project context.
Instructions
-
Gather Git activity:
# Yesterday's commits git log --since="yesterday 00:00" --until="today 00:00" --oneline --all --author="$(git config user.name)" # Today's commits git log --since="today 00:00" --oneline --all --author="$(git config user.name)" # Stats (24h) git log --since="24 hours ago" --shortstat --author="$(git config user.name)" # Files changed git log --since="24 hours ago" --name-only --pretty=format:"" | sort -u | grep . -
Check project context: TODO files, open branches, stale PRs
-
Generate report:
## 📋 Standup — 2025-02-08 ### ✅ Done (Yesterday) - feat: Add user auth endpoint (abc1234) - fix: Resolve login timeout (#42) ### 🔨 In Progress - Working on payment integration (branch: feature/payments) - 3 files changed today ### 🚧 Blockers - Waiting on API key from vendor ### 📊 Stats (24h) - Commits: 5 | Files: 12 | +340/-89 lines -
Multi-repo standup:
for dir in ~/projects/*/; do [ -d "$dir/.git" ] || continue commits=$(git -C "$dir" log --since="24 hours ago" --oneline --author="$(git config user.name)" 2>/dev/null) [ -n "$commits" ] && echo "### $(basename $dir)" && echo "$commits" done
Edge Cases
- No commits: Report "No activity" — don't error; ask about work done offline
- Multiple authors: Filter by
git config user.name; flag if not set - Detached HEAD / bare repos: Skip gracefully
- Weekend standups: Extend to "since Friday 00:00" on Mondays
Requirements
- Git repository (any project)
- No API keys or dependencies
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-sa9saq-daily-standup": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
threat-model
Threat modeling and attack scenario design. Identify risks before they become vulnerabilities. STRIDE, attack trees, risk matrix.
Sns Auto Poster
Schedule and automate social media posts to X/Twitter with cron-based queue management.
security-review
Comprehensive security review for code, configs, and operations. OWASP, prompt injection, crypto security. Auto-triggers on security-related changes.
Process Monitor
Monitor system processes, identify top CPU/memory consumers, and alert on resource thresholds.
Readme Generator
Auto-generate comprehensive README.md files by analyzing project structure and configuration.