@leo-alvarenga/pi-todo-list 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/skills/track-progress.md +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leo-alvarenga/pi-todo-list",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Session-aware todo list overlay for Pi: todo tool, /todos command, and a live TUI panel",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "github.com/leo-alvarenga/pi-mono",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"files": [
|
|
17
17
|
"src",
|
|
18
|
+
"skills",
|
|
18
19
|
"README.md",
|
|
19
20
|
"LICENSE",
|
|
20
21
|
"!src/*.test.ts"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: track-progress
|
|
3
|
+
description: Track task progress through the todo tools (todo / todo_complete_all). Use for any multi-step task, plan execution, or ongoing work.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Track Progress
|
|
7
|
+
|
|
8
|
+
Track work with the todo tools unless the user explicitly says not to:
|
|
9
|
+
|
|
10
|
+
- `todo add` — record each item the user wants tracked (text or texts).
|
|
11
|
+
- `todo update` — set `status: completed` as items finish; update status on every progress change (in-progress, blocked, …).
|
|
12
|
+
- `todo remove` — drop tasks that are no longer relevant.
|
|
13
|
+
- "complete everything" / "done with all" → `todo_complete_all`, not a loop of `todo update`.
|