From task-management
Generates next-week.md listing tasks due next week from tasks/ folder, grouped by day with YAML frontmatter and date headings.
How this command is triggered — by the user, by Claude, or both
Slash command
/task-management:next-weekThe summary Claude sees in its command listing — used to decide when to auto-load this command
# next-week
Generate next week's task list.
## Process
1. Run `python3 ${CLAUDE_PLUGIN_ROOT}/scripts/calculate-weeks.py` to get accurate dates
2. Use "Next Week: Monday:" and "Next Week: Sunday:" from the script output
3. Search all files in `tasks/` folder for tasks with `due:` between next week's Monday and Sunday (inclusive)
- Handle both date formats: with leading zeros (`YYYY-MM-DD`) and without (`YYYY-M-D`)
4. Generate `next-week.md` with:
- YAML frontmatter with `week_start` and `week_end` dates
- Heading: `# Next Week - Week of [Month Day]`
- Tasks grouped by day with...Generate next week's task list.
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/calculate-weeks.py to get accurate datestasks/ folder for tasks with due: between next week's Monday and Sunday (inclusive)
YYYY-MM-DD) and without (YYYY-M-D)next-week.md with:
week_start and week_end dates# Next Week - Week of [Month Day]## Monday, [Month Day], ## Tuesday, [Month Day], etc.- [ ] [[task-name]]No tasks scheduled for next week.Important: When searching for date ranges, use broad pattern like ^due: 2025-10- then filter results to match the specific date range, accounting for both leading zero and no-leading-zero formats
---
week_start: 2025-10-07
week_end: 2025-10-13
---
# Next Week - Week of October 7
## Monday, October 7
- [ ] [[quarterly-review]]
- [ ] [[team-meeting-prep]]
## Wednesday, October 9
- [ ] [[client-call]]
## Friday, October 11
- [ ] [[weekly-review]]
npx claudepluginhub ttorres33/teresa-torres-plugins --plugin task-management/meeting-todosExtracts action items from a meeting note and routes each task to the appropriate to-do file.
/plan-weekGenerates a weekly plan with priorities, risks, and success criteria by analyzing workspace files, git history, and MCP sources like GitHub PRs/issues and Linear tasks, outputting structured Markdown.
/todoManage TODO.md (show / add / complete / delete / update via natural language) and show today's calendar.
/SKILLGenerates focused daily plan from tasks.json, brain-dump.json, goals.json, and ai-context.md, with top priorities, brain dump triage, time blocks, and quick wins.
/todoManages project todos in todos.md: add tasks with optional due dates, complete/remove/undo/list by number, show past due or next task.
/todayGenerates a daily PM briefing by fetching Linear tasks due today and in progress, summarizing Slack discussions, and checking calendar events. Saves the briefing to a markdown file.