Let’s generate your first standup note from your recent commits.
1
Generate a standup for today's work
Copy
devdaily standup
Or use the short alias:
Copy
dd s
DevDaily will:
Analyze your git commits from the last 24 hours
Fetch related PRs and tickets
Generate an AI-powered summary using GitHub Copilot CLI
Copy the result to your clipboard
2
Review the output
Example standup output:
Copy
╭──────────────────────────────────────────╮│ ││ Your Standup ││ │╰──────────────────────────────────────────╯## Completed- Implemented JWT token refresh logic in the auth service- Fixed race condition in WebSocket reconnection handler- Updated API rate limiting middleware to return proper 429 status codes## In Progress- Migrating user preferences to the new settings schema (PROJ-234)- Reviewing PR #42 for the dashboard CSV export feature## Blockers- Waiting on DevOps team for staging environment Redis upgrade────────────────────────────────────────────commits: 5 │ days: 1 │ PRs: 2 │ primary area: backend✓ Copied to clipboard
Create professional PR descriptions from your branch changes.
1
Create a feature branch and make some commits
Copy
git checkout -b feature/new-dashboard# ... make your changes and commit ...git add .git commit -m "feat: add user dashboard with analytics"
2
Generate a PR description
Copy
devdaily pr
Or use the short alias:
Copy
dd pr
DevDaily will:
Analyze your branch commits compared to the base branch
Extract ticket IDs from branch name and commits
Detect and use your PR template (if you have one)
Generate a comprehensive PR description
3
Review and choose an action
Example PR output:
Copy
╭──────────────────────────────────────────╮│ ││ PR Description Generator ││ │╰──────────────────────────────────────────╯Generated PR Description────────────────────────────────────────────# feat: add user dashboard with analytics## Description- Added user dashboard with real-time analytics- Implemented chart components using Recharts- Added data export functionality (CSV/JSON)## Type of Change- [x] New feature- [ ] Bug fix## Testing- Added unit tests for dashboard components- Manual testing against staging environment────────────────────────────────────────────? What would you like to do? ❯ Copy to clipboard Create PR on GitHub Create draft PR Configure labels & reviewers Exit
4
Create the PR directly (optional)
Skip the menu and create the PR immediately:
Copy
# Create a regular PRdevdaily pr --create# Create a draft PRdevdaily pr --draft# Interactive mode with labels and reviewersdevdaily pr --interactive
Copy
# Generate and copydevdaily pr# Select "Copy to clipboard" from the menu
Compile your weekly accomplishments across all commits, PRs, and tickets.
1
Generate this week's summary
Copy
devdaily week
Or use the short alias:
Copy
dd w
2
Review the summary
Example weekly output:
Copy
╭──────────────────────────────────────────╮│ ││ Weekly Summary ││ │╰──────────────────────────────────────────╯## HighlightsFocused on backend auth improvements and API reliability thisweek. Shipped JWT token refresh, fixed rate limiting, andclosed several long-standing bugs in the WebSocket layer.## Key Accomplishments### Features Shipped- Implemented automatic JWT token refresh with configurable expiry thresholds (PROJ-234)- Added CSV export for dashboard analytics reports (PROJ-289)- Built dark mode toggle for the settings page (#42)### Bug Fixes- Fixed API rate limiting to return HTTP 429 instead of 500- Resolved race condition in WebSocket reconnection handler- Fixed login page crash on mobile Safari (PROJ-201)### Technical Improvements- Refactored user service to use repository pattern- Added integration test suite for auth middleware- Updated CI pipeline to run tests in parallel## Stats23 commits │ 4 PRs merged │ 1 PR open │ 3 tickets closed────────────────────────────────────────────✓ Copied to clipboard
3
Try different time ranges
Copy
# Last weekdevdaily week --last# Specific date rangedevdaily week --from 2025-01-01 --to 2025-01-07# All projects (cross-repo summary)devdaily week --all-projects