Loading...
Loading...
Interactive daily productivity review with guided priority setting. Supports morning planning, midday check-ins, and end-of-day wrap-ups. Use for daily ritual or cron automation.
npx skill4agent add vamseeachanta/workspace-hub today# Interactive review (auto-detects morning/midday/evening)
/today
# Specific modes
/today morning # Full review + set priorities
/today midday # Quick progress check
/today --eod # End-of-day wrap-up
# Weekly review
/today --week
# Cron automation (runs at 6 AM)
0 6 * * * /path/to/workspace-hub/scripts/productivity/daily_today.sh| Mode | When | Duration | What It Does |
|---|---|---|---|
| Morning | Before noon | 5 min | Full review, set 3 priorities |
| Midday | Noon-5pm | 2 min | Progress check, log blockers |
| Evening | After 5pm / | 3 min | Wrap-up, capture tomorrow's focus |
| Source | What to Extract |
|---|---|
| Git logs | Commits from last 24h across all repos |
| TODO files | Open items in |
| Specs | In-progress specs in |
| Calendar | Today's meetings (if integrated) |
| Notes | Recent entries in daily notes |
## Daily Summary - {DATE}
### Completed Yesterday
- [ ] List completed tasks from git commits
- [ ] Closed issues/PRs
### In Progress
- [ ] Active branches/PRs
- [ ] Open specs/plans
### Blocked/Waiting
- [ ] Items awaiting input
- [ ] Dependency blockers
### Today's Focus (Recommended)
1. **High Priority:** [Most impactful task]
2. **Quick Wins:** [Tasks completable in <30min]
3. **Deep Work:** [Requires focus time]| Pattern | Suggestion |
|---|---|
| Many small commits | Consider batching related changes |
| Stale branches | Clean up or merge abandoned work |
| Repeated context switches | Block focus time for deep work |
| No tests in commits | Add TDD to workflow |
| Large uncommitted changes | Commit more frequently |
logs/daily/{YYYY-MM-DD}.md---
date: {YYYY-MM-DD}
generated: auto
reviewed: false
---
# Daily Log - {DATE}
## Summary
[Auto-generated summary]
## Priorities
1.
2.
3.
## Notes
[Space for manual notes]
## End of Day Review
- [ ] Completed priorities
- [ ] Blockers encountered
- [ ] Tomorrow's focus.claude/config/today.yamltoday:
sources:
git:
enabled: true
lookback_hours: 24
repos:
- . # Current repo
- ../related-project
files:
todo_patterns:
- "**/TODO.md"
- "**/TASKS.md"
- "**/.todo"
notes_dir: "logs/daily"
calendar:
enabled: false # Requires calendar integration
output:
daily_log_dir: "logs/daily"
summary_format: "markdown"
automation:
cron_enabled: true
notify_on_complete: false# Make script executable
chmod +x scripts/productivity/daily_today.sh
# Add to crontab (runs at 6 AM daily)
crontab -e
# Add line:
0 6 * * * /path/to/workspace-hub/scripts/productivity/daily_today.sh >> /tmp/daily_today.log 2>&1logs/daily/User: /today
Claude: ## Daily Summary - 2026-01-21
### Completed Yesterday
- Merged PR #42: Add user authentication
- Fixed 3 bugs in payment module
- Updated API documentation
### In Progress
- Feature: Dashboard analytics (branch: feature/analytics)
- Spec: Mobile app redesign (specs/modules/mobile-v2/)
### Blocked
- Waiting: Design review for mobile spec
- Dependency: Backend team to deploy auth service
### Today's Focus (Recommended)
1. **High Priority:** Complete analytics dashboard tests
2. **Quick Wins:** Review open PRs (2 waiting)
3. **Deep Work:** Start mobile navigation implementation
### Long-Term Suggestions
- Consider: 15 context switches yesterday - block 2h focus time
- Action: Stale branch `feature/old-feature` (30 days) - archive or deleteUser: /today --week
Claude: ## Weekly Summary - Week of 2026-01-20
### Accomplishments
- 23 commits across 4 repositories
- 5 PRs merged, 2 pending
- 2 specs completed
### Patterns Observed
- Most productive: Tuesday (8 commits)
- Most meetings: Wednesday (4 hours)
- Suggestion: Protect Tuesday mornings for deep work
### Next Week Focus
1. Complete mobile spec review
2. Ship analytics v1
3. Technical debt: Refactor auth module/today| Situation | Action |
|---|---|
| No git activity | Note "No commits" - suggest catching up |
| Missing config | Use defaults, create template config |
| Calendar unavailable | Skip calendar section, note in summary |
| Cron fails | Check log at |
| Metric | Target | Description |
|---|---|---|
| Daily completion rate | >70% | Priorities marked done |
| Focus time | >4h/day | Uninterrupted work blocks |
| Context switches | <10/day | Task transitions |
| Commit frequency | 3-8/day | Healthy progress indicators |
| Output | Location |
|---|---|
| Daily logs | |
| Weekly summaries | |
| Cron output | |
| Config | |