@oscarfalero/pi-opencode-go 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 +10 -0
- package/assets/go-usage.png +0 -0
- package/assets/status-bar.png +0 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -4,6 +4,16 @@ OpenCode Go usage in pi status bar — rolling 5h / weekly / monthly + `/go-usag
|
|
|
4
4
|
|
|
5
5
|
Ultra-compact status bar indicator for your [OpenCode Go](https://opencode.ai) subscription, designed for [pi](https://github.com/earendil-works/pi-coding-agent) (the pi coding agent / TUI).
|
|
6
6
|
|
|
7
|
+
## Screenshots
|
|
8
|
+
|
|
9
|
+
Compact status bar indicator — `Go 12/34/56%` reads as rolling/weekly/monthly, shown only when an `opencode-go` model is active:
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
Detailed `/go-usage` panel with reset countdowns:
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+
|
|
7
17
|
## Install
|
|
8
18
|
|
|
9
19
|
### From npm via pi
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oscarfalero/pi-opencode-go",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "OpenCode Go usage in pi status bar — rolling 5h / weekly / monthly + /go-usage + /go-status toggle",
|
|
5
5
|
"keywords": ["pi-package", "opencode", "pi-extension", "go"],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "oscarfalero",
|
|
8
8
|
"type": "module",
|
|
9
|
-
"files": ["extensions/", "README.md", "LICENSE"],
|
|
9
|
+
"files": ["extensions/", "assets/", "README.md", "LICENSE"],
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "git+https://github.com/oscarfalero/pi-opencode-go.git"
|
|
13
13
|
},
|
|
14
14
|
"pi": {
|
|
15
|
-
"extensions": ["./extensions"]
|
|
15
|
+
"extensions": ["./extensions"],
|
|
16
|
+
"image": "https://raw.githubusercontent.com/oscarfalero/pi-opencode-go/main/assets/status-bar.png"
|
|
16
17
|
},
|
|
17
18
|
"peerDependencies": {
|
|
18
19
|
"@earendil-works/pi-coding-agent": "*"
|