Skip to content

Release V1.0.0

Choose a tag to compare

@ramxcodes ramxcodes released this 22 Feb 11:59
· 2 commits to master since this release

Usage

Run from a git repo or a directory that contains git repos:

standup

Options

Flag Short Description
--days -d Number of days to look back (default: 1)
--author -a Filter commits by author (default: current git user)
--version -v Show version

AI (Gemini)

Flag Description
--set-api-key Set your Gemini API key
--set-model-name Set Gemini model name
--show-api-key Show stored API key (masked)
--remove-api-key Remove stored API key
--enable-ai Enable AI summary
--disable-ai Disable AI summary

Examples

# Last day (default)
standup

# Last 3 days
standup -d 3

# Last 2 days, only your commits
standup -d 2 -a "Your Name"

# One-time: set API key and enable AI
standup --set-api-key YOUR_GEMINI_API_KEY
standup --enable-ai

# Then run as usual — AI summary will be included when enabled
standup -d 2