pi-thinking-timer 0.1.0 → 0.1.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
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
# pi-thinking-timer
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
|
|
3
6
|
A small **pi** extension that shows a live timer next to the collapsed **Thinking** label.
|
|
4
7
|
|
|
8
|
+

|
|
9
|
+
|
|
5
10
|
Instead of only:
|
|
6
11
|
|
|
7
12
|
```
|
|
@@ -56,7 +61,7 @@ Clone and run pi with the local extension file:
|
|
|
56
61
|
```bash
|
|
57
62
|
git clone https://github.com/xRyul/pi-thinking-timer
|
|
58
63
|
cd pi-thinking-timer
|
|
59
|
-
pi -e ./
|
|
64
|
+
pi -e ./thinking-timer.ts
|
|
60
65
|
```
|
|
61
66
|
|
|
62
67
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-thinking-timer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Pi extension that shows a live timer next to collapsed Thinking blocks.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "xryul",
|
|
@@ -18,14 +18,15 @@
|
|
|
18
18
|
"pi-extension"
|
|
19
19
|
],
|
|
20
20
|
"pi": {
|
|
21
|
-
"extensions": ["./
|
|
21
|
+
"extensions": ["./thinking-timer.ts"],
|
|
22
|
+
"image": "https://raw.githubusercontent.com/xRyul/pi-thinking-timer/main/assets/demo.gif"
|
|
22
23
|
},
|
|
23
24
|
"peerDependencies": {
|
|
24
25
|
"@mariozechner/pi-coding-agent": "*",
|
|
25
26
|
"@mariozechner/pi-tui": "*"
|
|
26
27
|
},
|
|
27
28
|
"files": [
|
|
28
|
-
"
|
|
29
|
+
"thinking-timer.ts",
|
|
29
30
|
"README.md",
|
|
30
31
|
"LICENSE",
|
|
31
32
|
"package.json"
|
|
File without changes
|