Adds a live TPS meter to the OpenCode TUI footer.
It shows:
- live rolling TPS over the last 15 seconds while a response is streaming
- exact output TPS after the response completes
Full video: assets/tps-meter-demo.mp4
This is a TUI/CLI patch, not a Desktop extension and not a normal OpenCode plugin. OpenCode does not expose a plugin hook for the TUI footer, so this project patches the OpenCode source during install.
Preferred npm install command:
npx @guard22/opencode-tps-meter installFallback raw installer:
curl -fsSL https://raw.githubusercontent.com/guard22/opencode-tps-meter/main/install.sh | bashDefault behavior:
- if
OPENCODE_TPS_VERSIONis set, install that exact OpenCode version - else if your installed
opencode-stockor non-wrapperopencodeversion is detectable, patch that version - else fall back to the latest upstream stable OpenCode release
To force a specific version:
OPENCODE_TPS_VERSION=1.4.1 npx @guard22/opencode-tps-meter install- downloads the exact OpenCode tag for the requested version
- runs a content-based auto-patcher against the OpenCode source
- installs the patched source into
~/.local/share/opencode-tps-meter/releases/<version> - points
~/.local/share/opencode-tps-meter/currentat the active release - installs a wrapper at
~/.local/bin/opencode - preserves your original launcher as
~/.local/bin/opencode-stock
If the requested OpenCode version changed the TUI structure too much, the installer exits without replacing your launcher.
The installer now tries to patch newer OpenCode releases automatically. It is no longer hardcoded to a short manual allowlist.
Known tested versions are listed in manifest.sh.
Right now the tested set is:
1.3.131.3.141.3.151.3.161.3.171.4.01.4.1
If you install a newer OpenCode release and the source layout still matches the expected TUI anchors, the installer should work without needing a new repo release.
npx @guard22/opencode-tps-meter uninstall- This patches OpenCode TUI/CLI, not Desktop.
- It preserves your launch directory, so
opencodeopens the project you launched it from. - Live TPS is an estimate based on stream deltas.
- Final TPS uses exact output-token usage from the completed assistant message.
- Requires
bun,git, andcurl. - If upstream rewrites the TUI footer structure, the auto-patcher will fail cleanly instead of half-installing.
- OpenCode
1.4.1 - OpenCode
1.4.0 - OpenCode
1.3.17 - OpenCode
1.3.16 - OpenCode
1.3.15 - OpenCode
1.3.14 - OpenCode
1.3.13 - Bun
1.3.5
