opencode-usage-coach 0.13.5 → 0.13.6
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 +18 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,19 +58,31 @@ Restart opencode — you're done. The sidebar panel appears (toggle with `Alt+H`
|
|
|
58
58
|
|
|
59
59
|
### Quota sensing (optional but recommended)
|
|
60
60
|
|
|
61
|
-
The plugin works in **GO-only mode** out of the box (no quota sensing). To enable real-time quota monitoring, install [
|
|
61
|
+
The plugin works in **GO-only mode** out of the box (no quota sensing). To enable real-time quota monitoring, install [CodexBar](https://github.com/steipete/CodexBar):
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
# macOS
|
|
65
|
-
|
|
64
|
+
# macOS
|
|
65
|
+
brew install --cask codexbar
|
|
66
66
|
|
|
67
|
-
#
|
|
67
|
+
# Linux (Homebrew)
|
|
68
|
+
brew install steipete/tap/codexbar
|
|
69
|
+
|
|
70
|
+
# Linux (Arch AUR)
|
|
71
|
+
yay -S codexbar-cli
|
|
72
|
+
|
|
73
|
+
# Or download CLI tarballs from GitHub Releases
|
|
74
|
+
# https://github.com/steipete/CodexBar/releases
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Then configure your provider API key:
|
|
78
|
+
|
|
79
|
+
```bash
|
|
68
80
|
printf '%s' "$YOUR_PROVIDER_API_KEY" | codexbar config set-api-key --provider <id> --stdin
|
|
69
81
|
```
|
|
70
82
|
|
|
71
|
-
|
|
83
|
+
CodexBar supports 65+ providers including z.ai, OpenAI, Claude, Cursor, Gemini, Copilot, and more. Check `codexbar config providers` for the full list.
|
|
72
84
|
|
|
73
|
-
Without
|
|
85
|
+
Without CodexBar, the plugin simply doesn't sense quota — all other features (harness loop, learning, domain knowledge) work normally.
|
|
74
86
|
|
|
75
87
|
## Configuration
|
|
76
88
|
|
package/package.json
CHANGED