@firstpick/pi-extension-todo-progress 0.1.0 → 0.1.1
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 +30 -6
- package/package.json +18 -4
package/README.md
CHANGED
|
@@ -1,9 +1,33 @@
|
|
|
1
1
|
# @firstpick/pi-extension-todo-progress
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Auto todo/progress tracking for multi-goal prompts.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
5
|
+
## What it does
|
|
6
|
+
|
|
7
|
+
- Auto-creates todos when prompts appear multi-step.
|
|
8
|
+
- Keeps a progress widget visible until completion.
|
|
9
|
+
- Shows up to 5 rows.
|
|
10
|
+
- Supports mouse wheel scrolling in custom UI.
|
|
11
|
+
- Supports hiding completed list.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pi install npm:@firstpick/pi-extension-todo-progress
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Configuration
|
|
20
|
+
|
|
21
|
+
No required configuration.
|
|
22
|
+
|
|
23
|
+
## Commands
|
|
24
|
+
|
|
25
|
+
None.
|
|
26
|
+
|
|
27
|
+
## Shortcuts
|
|
28
|
+
|
|
29
|
+
- `Ctrl+Alt+X` — hide completed list.
|
|
30
|
+
|
|
31
|
+
## Tools
|
|
32
|
+
|
|
33
|
+
None.
|
package/package.json
CHANGED
|
@@ -1,13 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firstpick/pi-extension-todo-progress",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Aggressive automatic todo progress widget for multi-goal prompts in Pi.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"keywords": [
|
|
7
|
-
|
|
6
|
+
"keywords": [
|
|
7
|
+
"pi-package",
|
|
8
|
+
"pi",
|
|
9
|
+
"extension",
|
|
10
|
+
"todo",
|
|
11
|
+
"progress"
|
|
12
|
+
],
|
|
13
|
+
"pi": {
|
|
14
|
+
"extensions": [
|
|
15
|
+
"./index.ts"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
8
18
|
"peerDependencies": {
|
|
9
19
|
"@mariozechner/pi-coding-agent": "*",
|
|
10
20
|
"@mariozechner/pi-tui": "*"
|
|
11
21
|
},
|
|
12
|
-
"files": [
|
|
22
|
+
"files": [
|
|
23
|
+
"index.ts",
|
|
24
|
+
"README.md",
|
|
25
|
+
"LICENSE"
|
|
26
|
+
]
|
|
13
27
|
}
|