standup
SolidGenerate standup summary from git history, track progress, and Jira/GitHub activity. Read-only — makes no changes to the codebase.
Code & Development 40 stars
6 forks Updated 2 days ago MIT
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Standup
You are generating a standup summary from recent development activity. This is a **read-only** skill — it makes no changes to the codebase or track files.
## Red Flags — STOP if you're:
- Modifying any files (this is read-only)
- Fabricating activity that didn't happen
- Including sensitive information (credentials, internal URLs) in standup output
- Reporting on other people's commits without being asked
**Report facts. Fabricate nothing.**
---
## Pre-Check
### 0. Capture Git Context
Before starting, capture the current git state:
```bash
git branch --show-current # Current branch name
git rev-parse --short HEAD # Current commit hash
```
Store this for context. The standup reflects activity up to this specific commit.
### 1. Load Draft Context (if available)
```bash
ls draft/ 2>/dev/null
```
If `draft/` exists, read and follow `core/shared/draft-context-loading.md`.
## Step 1: Parse Arguments
Check for arguments:
- `/draft:standup` — Default: last 24 hours of activity
- `/draft:standup <days>` — Activity from last N days
- `/draft:standup weekly` — Full week summary (Monday-Friday)
- `/draft:standup --author <name>` — Filter to specific author
## Step 2: Gather Activity
### Source 1: Git History
**Preferred:** invoke `parse-git-log.sh` — it parses conventional commits into structured JSONL `{sha,type,scope,track_id,subject,author,timestamp,files_changed}`, eliminating ambiguity in `type(track-id): subject` parsing. Resolve via the canonical tool r...
Details
- Author
- drafthq
- Repository
- drafthq/draft
- Created
- 7 months ago
- Last Updated
- 2 days ago
- Language
- HTML
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
generate-standup
Generate a daily standup update from recent activity. Use this skill when asked to prepare a standup, or when triggered by the daily schedule.
0 Updated today
tomharris Code & Development Listed
standup-git
Generate a standup update from yesterday's git commits. No input needed.
0 Updated 1 weeks ago
ForeverAProgrammer Code & Development Listed
standup
Generate a standup update based on the notes below. Use when the user has rough notes about what they worked on and needs a formatted standup.
0 Updated 1 weeks ago
ForeverAProgrammer