Add session task tools for progress visibility
Integrate Claude Code's task tools (TaskCreate, TaskUpdate, TaskList) into skills and agents to provide spinner updates during multi-step operations like morning routines, weekly reviews, and batch processing. - Add task tools to allowed-tools in daily, weekly, goal-tracking skills - Add task tools to 4 agents (inbox-processor, weekly-reviewer, etc.) - Create task-tracking.md rule with naming conventions and best practices - Document progress patterns with concrete spinner output examples - Update CLAUDE.md and README.md with progress visibility feature Task tools are session-scoped progress indicators that complement (not replace) the existing markdown checkbox system in daily notes. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
---
|
||||
name: goal-tracking
|
||||
description: Track progress toward 3-year, yearly, monthly, and weekly goals. Calculate completion percentages, surface stalled goals, connect daily tasks to objectives. Use for goal reviews and progress tracking.
|
||||
allowed-tools: Read, Grep, Glob, Edit
|
||||
allowed-tools: Read, Grep, Glob, Edit, TaskCreate, TaskUpdate, TaskList
|
||||
---
|
||||
|
||||
# Goal Tracking Skill
|
||||
@@ -119,6 +119,23 @@ When adding tasks to daily notes:
|
||||
2. [Nearly complete goal - finish it]
|
||||
```
|
||||
|
||||
## Progress Tracking
|
||||
|
||||
The goal tracking skill uses session tasks when generating comprehensive progress reports:
|
||||
|
||||
### Progress Report Generation
|
||||
```
|
||||
[Spinner] Reading three-year goals...
|
||||
[Spinner] Reading yearly goals...
|
||||
[Spinner] Reading monthly goals...
|
||||
[Spinner] Scanning recent daily notes...
|
||||
[Spinner] Calculating completion percentages...
|
||||
[Spinner] Identifying stalled goals...
|
||||
[Done] Goal progress report complete (6/6 steps)
|
||||
```
|
||||
|
||||
This provides visibility when analyzing the full goal cascade across multiple files. Task tools are session-scoped and don't persist—your actual goal progress is tracked through markdown checkboxes and percentages in your goal files.
|
||||
|
||||
## Integration Points
|
||||
|
||||
- Weekly review: Full progress assessment
|
||||
|
||||
Reference in New Issue
Block a user