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 for supported versions.
One command:
curl -fsSL https://raw.githubusercontent.com/guard22/opencode-tps-meter/main/install.sh | bashDefault behavior:
- if
OPENCODE_TPS_VERSIONis set, install that exact supported version - else if your installed
opencode-stockor non-wrapperopencodeversion is supported, install that version - else fall back to the latest supported version from
manifest.sh
To force a specific supported version:
OPENCODE_TPS_VERSION=1.3.14 curl -fsSL https://raw.githubusercontent.com/guard22/opencode-tps-meter/main/install.sh | bash- downloads the exact supported OpenCode tag
- downloads the matching patch for that exact version
- runs
git apply --checkbefore modifying anything - 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 is not supported, or the patch does not apply cleanly, the installer exits without replacing your launcher.
Current supported versions are listed in manifest.sh.
Right now:
1.3.141.3.13
curl -fsSL https://raw.githubusercontent.com/guard22/opencode-tps-meter/main/uninstall.sh | bash- 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. - Future OpenCode releases may require a new patch; unsupported versions fail cleanly instead of half-installing.
- OpenCode
1.3.14 - OpenCode
1.3.13 - Bun
1.3.5
