@ygncode/pi-insights 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -13,6 +13,21 @@ Beautiful analytics reports for your [pi coding agent](https://pi.dev) sessions.
13
13
  - **Rage 🤬** — Profanity analytics: swear rate, filthiest model, peak hour, top words, and project breakdown
14
14
  - **Portable report** — Single self-contained HTML file; no server required, works from `file://`
15
15
 
16
+ ## Preview
17
+
18
+ <video controls width="100%" src="https://raw.githubusercontent.com/ygncode/pi-insights/main/assets/demo.mp4"></video>
19
+
20
+ If the embedded video does not render in your client, [watch the demo video](https://raw.githubusercontent.com/ygncode/pi-insights/main/assets/demo.mp4).
21
+
22
+ ![pi-insights overview](assets/pi-insights-01-overview.png)
23
+
24
+ More screenshots:
25
+
26
+ - [Models](assets/pi-insights-02-models.png)
27
+ - [Projects](assets/pi-insights-03-projects.png)
28
+ - [Sessions](assets/pi-insights-04-sessions.png)
29
+ - [Rage analytics](assets/pi-insights-05-rage.png)
30
+
16
31
  ## Install
17
32
 
18
33
  ### From npm
@@ -84,6 +99,8 @@ This package is prepared for the [Pi package gallery](https://pi.dev/packages):
84
99
  - GitHub repo: `https://github.com/ygncode/pi-insights`
85
100
  - Pi package keyword: `pi-package`
86
101
  - Pi extension manifest: `pi.extensions = ["./index.ts"]`
102
+ - Gallery image: `assets/pi-insights-01-overview.png`
103
+ - Gallery video: `assets/demo.mp4`
87
104
 
88
105
  After publishing to npm, submit or list the package on <https://pi.dev/packages> using the npm package URL/name.
89
106
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ygncode/pi-insights",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Beautiful analytics reports for pi coding-agent sessions.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -33,7 +33,9 @@
33
33
  "pi": {
34
34
  "extensions": [
35
35
  "./index.ts"
36
- ]
36
+ ],
37
+ "image": "https://raw.githubusercontent.com/ygncode/pi-insights/main/assets/pi-insights-01-overview.png",
38
+ "video": "https://raw.githubusercontent.com/ygncode/pi-insights/main/assets/demo.mp4"
37
39
  },
38
40
  "scripts": {
39
41
  "build": "vite build",