standup

Generates daily standup report suggestions from git commits and GitHub Project items.

Updated Jun 3, 2026
One-click install
npx skills add https://github.com/MathematicGuy/team-006-vin20k --skill standup-mathematicguy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: standup
Source: https://github.com/MathematicGuy/team-006-vin20k/tree/main/.claude/skills/standup
Command: npx skills add https://github.com/MathematicGuy/team-006-vin20k --skill standup-mathematicguy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Students in the AI20K program must submit a daily standup report on Discord covering what they did yesterday, what they plan today, and any blockers. Remembering and writing this from scratch every day is tedious, and this Skill drafts suggestions from real data so students can write their report faster. ## Core Features & Use Cases - Git history mining: Collects recent commits from the last 1-2 days to suggest what was accomplished yesterday. - GitHub Project integration: Reads project board items and classifies them by status (Done for yesterday, In Progress for today), prioritizing items assigned to the current user. - Open issues review: Lists open GitHub issues assigned to the user as potential blockers or planned work. - Use Case: A student types "standup" before their daily Discord submission and instantly receives a structured suggestion of yesterday's commits, today's in-progress tasks, and open issues, which they then rewrite in their own words. ## Quick Start Ask the assistant to prepare my daily standup suggestions based on my recent git commits and GitHub Project board.

Frequently Asked Questions about standup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a daily standup report from git commits?▼

Run git log with a time filter such as --since="1 day ago" to list recent commits, then summarize them as yesterday's work. This Skill automates that step and combines commits with GitHub Project items to draft standup suggestions.

How to list GitHub Project board items from the command line?▼

Use the GitHub CLI with gh project list to find the project, then gh project item-list with the project number and owner to retrieve items. Items can be classified by status such as Done or In Progress for standup reporting.

Does this standup tool submit the report automatically to Discord?▼

No, it only generates suggestions from git and GitHub data. Students must rewrite the content in their own words and submit the standup themselves through the Discord bot.

What happens if there are no recent commits or project tasks?▼

The Skill displays a fallback message explaining that no data was found and suggests adding tasks to the GitHub Project, committing code regularly, and manually noting non-code work like research or team discussions.

Does the standup generator modify any files or repository data?▼

No, it is strictly read-only. It runs git log and gh CLI queries to display suggestions and never writes to files, commits changes, or updates the project board.