@leo-alvarenga/pi-todo-list 0.4.0 → 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/README.md +8 -5
- package/package.json +2 -1
- package/skills/track-progress.md +13 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# pi-todo-list
|
|
1
|
+
# @leo-alvarenga/pi-todo-list
|
|
2
2
|
|
|
3
3
|
Session-aware todo list overlay for the [Pi coding agent](https://github.com/earendil-works/pi-mono).
|
|
4
4
|
The agent manages tasks with a `todo` tool while you watch them live in a panel above the input editor.
|
|
@@ -9,10 +9,13 @@ The agent manages tasks with a `todo` tool while you watch them live in a panel
|
|
|
9
9
|
(`pending` → `in-progress` → `completed`), declare dependencies
|
|
10
10
|
(`blockedBy`), remove, list, and clear. Invalid operations (unknown ids,
|
|
11
11
|
self-blocks, dependency cycles) are rejected before any state change.
|
|
12
|
-
- **Live TUI panel** above the input editor —
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
-
|
|
12
|
+
- **Live TUI panel** above the input editor — a header line with a
|
|
13
|
+
collapse/expand chevron and per-status counters, Nerd Font status glyphs
|
|
14
|
+
( pending, in-progress, completed), blocked-task hints, and a hardcoded
|
|
15
|
+
8-row budget with a `… +N more` summary line. The panel hides itself
|
|
16
|
+
entirely while the list is empty.
|
|
17
|
+
- **Toggle with `Alt+T`** — collapsed by default; collapsed shows just the
|
|
18
|
+
header line.
|
|
16
19
|
- **`/todos` command** — prints the full list grouped by status straight to
|
|
17
20
|
the terminal transcript.
|
|
18
21
|
- **Batch operations** — `todo add` accepts a `texts` array to add many at
|
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`.
|