You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Authenticate
gitscrum auth login
# Set defaults
gitscrum config set workspace my-company
gitscrum config set project my-project
# Start working
gitscrum tasks current
gitscrum timer start
Global Flags
All commands support these flags:
Flag
Description
--json
Output in JSON format
-q, --quiet
Minimal output (IDs only)
--no-color
Disable colored output
--help
Show command help
Common Workflows
Developer Daily Routine
# Morning
gitscrum notifications # Check what's new
gitscrum tasks # What's on my plate?
gitscrum sprints current # How's the sprint going?
gitscrum tasks branch GS-XXX # Start working on a task
gitscrum timer start # Track my time# Throughout the day
gitscrum tasks current # What am I working on?
gitscrum timer # How long have I been working?
gitscrum chat # Check team messages# End of day
gitscrum timer stop # Log my time
gitscrum timer report --day # Review my day
gitscrum standup # Prepare for tomorrow
Sprint Planning
# Create new sprint
gitscrum sprints create -n "Sprint 13" --start 2026-03-01 --end 2026-03-14
# Add tasks
gitscrum tasks update GS-XXX --sprint sprint-13
# Review analytics
gitscrum analytics velocity
# Close current sprint
gitscrum sprints close sprint-12