@hk_net/pi-timestamp 0.1.7 → 0.1.8
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 +10 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# pi-timestamp
|
|
2
2
|
|
|
3
|
-
Shows timestamps for user input and agent completion timing. Requires pi `>=0.
|
|
3
|
+
Shows timestamps for user input and agent completion timing. Requires pi `>=0.81.1`.
|
|
4
4
|
|
|
5
5
|
## What it does
|
|
6
6
|
|
|
@@ -30,3 +30,12 @@ cp packages/pi-timestamp/timestamp.ts ~/.pi/agent/extensions/timestamp.ts
|
|
|
30
30
|
## Duration measurement
|
|
31
31
|
|
|
32
32
|
Captured from `agent_start` (when the model starts processing) to `agent_end` (when all tool calls and model processing are done).
|
|
33
|
+
|
|
34
|
+
## Issues and feedback
|
|
35
|
+
|
|
36
|
+
Found a bug or have a feature request? Please report it on
|
|
37
|
+
[GitHub Issues](https://github.com/hknet/pi-extensions/issues).
|
|
38
|
+
|
|
39
|
+
For security vulnerabilities, please use
|
|
40
|
+
[GitHub's private vulnerability reporting](https://github.com/hknet/pi-extensions/security/advisories/new)
|
|
41
|
+
instead of opening a public issue.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hk_net/pi-timestamp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Pi extension that shows timestamps for user input and agent completion timing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"README.md"
|
|
27
27
|
],
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@earendil-works/pi-coding-agent": ">=0.
|
|
30
|
-
"@earendil-works/pi-tui": ">=0.
|
|
29
|
+
"@earendil-works/pi-coding-agent": ">=0.81.1",
|
|
30
|
+
"@earendil-works/pi-tui": ">=0.81.1"
|
|
31
31
|
},
|
|
32
32
|
"pi": {
|
|
33
33
|
"extensions": [
|