@firstpick/pi-extension-todo-progress 0.1.3 → 0.1.5
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 +11 -0
- package/index.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -33,3 +33,14 @@ None.
|
|
|
33
33
|
## Tools
|
|
34
34
|
|
|
35
35
|
None.
|
|
36
|
+
|
|
37
|
+
## Example view
|
|
38
|
+
|
|
39
|
+
```text
|
|
40
|
+
Todo
|
|
41
|
+
- [x] Inspect package structure
|
|
42
|
+
- [-] Update README examples
|
|
43
|
+
- [ ] Run readiness checks
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
For multi-step requests, Pi keeps a compact progress widget visible and updates it as work moves from planned to in-progress to done.
|
package/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExtensionAPI, ExtensionContext } from "@
|
|
1
|
+
import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
2
2
|
|
|
3
3
|
type TodoStatus = "todo" | "partial" | "done";
|
|
4
4
|
type TodoItem = { text: string; status: TodoStatus };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firstpick/pi-extension-todo-progress",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Aggressive automatic todo progress widget for multi-goal prompts in Pi.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
]
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@
|
|
20
|
-
"@
|
|
19
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
20
|
+
"@earendil-works/pi-tui": "*"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"index.ts",
|