[object Object] error output when running opencode over SSH #3381

Open
opened 2026-02-16 17:39:50 -05:00 by yindo · 19 comments
Owner

Originally created by @nicehiro on GitHub (Dec 7, 2025).

Originally assigned to: @kommander on GitHub.

Description

Hi,

When running opencode via SSH on a remote server, the application outputs [object Object] instead of a proper error message or UI. Additionally, terminal escape sequences are not handled correctly, resulting in garbled output.

OpenCode version

1.0.134

Steps to reproduce

  1. On Ubuntu 20 docker image, install opencode using: curl -fsSL https://opencode.ai/install | bash
  2. Run opencode --print-logs --log-level DEBUG

Screenshot and/or share link

root@subgoalvla-111010-task1-0:~/openpi# opencode --print-logs --log-level DEBUG
INFO  2025-12-07T15:09:43 +169ms service=default version=1.0.134 args=["--print-logs","--log-level","DEBUG"] opencode
[object Object]
root@subgoalvla-111010-task1-0:~/openpi# :>|ghostty 1.2.3^[\^[[?0u^[[4;1720;3000t

Operating System

Ubuntu 22.04

Terminal

Using ghostty on MacOS to connect remote by ssh

Originally created by @nicehiro on GitHub (Dec 7, 2025). Originally assigned to: @kommander on GitHub. ### Description Hi, When running opencode via SSH on a remote server, the application outputs `[object Object]` instead of a proper error message or UI. Additionally, terminal escape sequences are not handled correctly, resulting in garbled output. ### OpenCode version 1.0.134 ### Steps to reproduce 1. On Ubuntu 20 docker image, install opencode using: `curl -fsSL https://opencode.ai/install | bash` 3. Run `opencode --print-logs --log-level DEBUG` ### Screenshot and/or share link ``` root@subgoalvla-111010-task1-0:~/openpi# opencode --print-logs --log-level DEBUG INFO 2025-12-07T15:09:43 +169ms service=default version=1.0.134 args=["--print-logs","--log-level","DEBUG"] opencode [object Object] root@subgoalvla-111010-task1-0:~/openpi# :>|ghostty 1.2.3^[\^[[?0u^[[4;1720;3000t ``` ### Operating System Ubuntu 22.04 ### Terminal Using ghostty on MacOS to connect remote by ssh
yindo added the opentuibug labels 2026-02-16 17:39:50 -05:00
Author
Owner

@github-actions[bot] commented on GitHub (Dec 7, 2025):

This issue might be a duplicate of existing issues. Please check:

  • #4430: Phantom input on startup when running over SSH (Windows Terminal -> Remote SSH)
  • #3769: SSH session with iTerm2 auto-writes 'iTerm2 3.6.5Gi-1;invalid payload' in agent panel
  • #2773: Clipboard copy issues in remote SSH console (opentui-related)
  • #3320: Bash commands not working in SSH session
  • #4517: Theme and terminal output issues on macOS

These issues also report SSH connection problems with terminal escape sequences and output corruption. The [object Object] error and garbled escape sequences you're seeing may be related to how opentui handles terminal detection and output formatting over SSH.

Feel free to ignore if none of these address your specific case.

@github-actions[bot] commented on GitHub (Dec 7, 2025): This issue might be a duplicate of existing issues. Please check: - #4430: Phantom input on startup when running over SSH (Windows Terminal -> Remote SSH) - #3769: SSH session with iTerm2 auto-writes 'iTerm2 3.6.5Gi-1;invalid payload' in agent panel - #2773: Clipboard copy issues in remote SSH console (opentui-related) - #3320: Bash commands not working in SSH session - #4517: Theme and terminal output issues on macOS These issues also report SSH connection problems with terminal escape sequences and output corruption. The `[object Object]` error and garbled escape sequences you're seeing may be related to how opentui handles terminal detection and output formatting over SSH. Feel free to ignore if none of these address your specific case.
Author
Owner

@junjieit commented on GitHub (Dec 10, 2025):

I encountered this error even though I wasn't using SSH.

➜  ~ opencode --print-logs --log-level DEBUG
INFO  2025-12-10T11:38:03 +222ms service=default version=1.0.141 args=["--print-logs","--log-level","DEBUG"] opencode
[object Object]
➜  ~

Operating System

Linux archhostname 6.17.9-zen1-1-zen #1 ZEN SMP PREEMPT_DYNAMIC Mon, 24 Nov 2025 15:21:16 +0000 x86_64 GNU/Linux

Terminal

Ghostty

@junjieit commented on GitHub (Dec 10, 2025): I encountered this error even though I wasn't using SSH. ```Bash ➜ ~ opencode --print-logs --log-level DEBUG INFO 2025-12-10T11:38:03 +222ms service=default version=1.0.141 args=["--print-logs","--log-level","DEBUG"] opencode [object Object] ➜ ~ ``` ### Operating System Linux archhostname 6.17.9-zen1-1-zen #1 ZEN SMP PREEMPT_DYNAMIC Mon, 24 Nov 2025 15:21:16 +0000 x86_64 GNU/Linux ### Terminal Ghostty
Author
Owner

@junjieit commented on GitHub (Dec 10, 2025):

The error on my end occurred because I had a network proxy enabled.
The error likely originates from this location: https://github.com/sst/opencode/blob/dev/packages/sdk/js/src/v2/gen/client/client.gen.ts#L196

@junjieit commented on GitHub (Dec 10, 2025): The error on my end occurred because I had a network proxy enabled. The error likely originates from this location: https://github.com/sst/opencode/blob/dev/packages/sdk/js/src/v2/gen/client/client.gen.ts#L196
Author
Owner

@nicehiro commented on GitHub (Dec 11, 2025):

The error on my end occurred because I had a network proxy enabled.

Same here. I also have a local proxy set.

@nicehiro commented on GitHub (Dec 11, 2025): > The error on my end occurred because I had a network proxy enabled. Same here. I also have a local proxy set.
Author
Owner

@junjieit commented on GitHub (Dec 11, 2025):

You can bypass the local address first.

export NO_PROXY=localhost,127.0.0.1,::1
@junjieit commented on GitHub (Dec 11, 2025): You can bypass the local address first. ```Bash export NO_PROXY=localhost,127.0.0.1,::1 ```
Author
Owner

@nicehiro commented on GitHub (Dec 11, 2025):

You can bypass the local address first.

export NO_PROXY=localhost,127.0.0.1,::1

Thanks for the suggestion. However, my situation is a bit different — I actually need the proxy to access the full network (e.g., npm registries and other external resources).
If I set NO_PROXY, the opencode CLI itself seems to work, but it still fails to launch properly because some dependencies can't be downloaded without the proxy.

@nicehiro commented on GitHub (Dec 11, 2025): > You can bypass the local address first. > > export NO_PROXY=localhost,127.0.0.1,::1 Thanks for the suggestion. However, my situation is a bit different — I actually need the proxy to access the full network (e.g., npm registries and other external resources). If I set `NO_PROXY`, the opencode CLI itself seems to work, but it still fails to launch properly because some dependencies can't be downloaded without the proxy.
Author
Owner

@timiil commented on GitHub (Dec 23, 2025):

same problem here?

timiil@tim-work:~$ opencode --print-logs --log-level DEBUG
INFO  2025-12-24T03:39:13 +175ms service=default version=1.0.193 args=["--print-logs","--log-level","DEBUG"] opencode
[object Object]

in a new wsl ubuntu 24.04.
thanks for help

@timiil commented on GitHub (Dec 23, 2025): same problem here? ``` timiil@tim-work:~$ opencode --print-logs --log-level DEBUG INFO 2025-12-24T03:39:13 +175ms service=default version=1.0.193 args=["--print-logs","--log-level","DEBUG"] opencode [object Object] ``` in a new wsl ubuntu 24.04. thanks for help
Author
Owner

@timiil commented on GitHub (Dec 23, 2025):

very strange, ssh from a lan computer and start opencode is OK. the problem is related by Terminal ?

@timiil commented on GitHub (Dec 23, 2025): very strange, ssh from a lan computer and start opencode is OK. the problem is related by Terminal ?
Author
Owner

@nicehiro commented on GitHub (Dec 23, 2025):

@timiil I guess the problem is related to using proxy.

I have following configs in my .bashrc as here

export HTTP_PROXY=xxx
export HTTPS_PROXY=xxx
export NO_PROXY=localhost,127.0.0.1

And also I need to set:

export OPENCODE_DISABLE_DEFAULT_PLUGINS=1

And now I can use opencode.

@nicehiro commented on GitHub (Dec 23, 2025): @timiil I guess the problem is related to using proxy. I have following configs in my `.bashrc` as [here](https://opencode.ai/docs/network/) ``` export HTTP_PROXY=xxx export HTTPS_PROXY=xxx export NO_PROXY=localhost,127.0.0.1 ``` And also I need to set: ``` export OPENCODE_DISABLE_DEFAULT_PLUGINS=1 ``` And now I can use opencode.
Author
Owner

@timiil commented on GitHub (Dec 24, 2025):

@timiil I guess the problem is related to using proxy.

I have following configs in my .bashrc as here

export HTTP_PROXY=xxx
export HTTPS_PROXY=xxx
export NO_PROXY=localhost,127.0.0.1

And also I need to set:

export OPENCODE_DISABLE_DEFAULT_PLUGINS=1

And now I can use opencode.

seems not , i do have these envs:

timiil@tim-work:~/jpda$ echo $http_proxy
http://127.0.0.1:10811
timiil@tim-work:~/jpda$ echo $https_proxy
http://127.0.0.1:10811
timiil@tim-work:~/jpda$ echo $HTTP_PROXY
http://127.0.0.1:10811
timiil@tim-work:~/jpda$ echo $HTTPS_PROXY
http://127.0.0.1:10811
timiil@tim-work:~/jpda$ opencode
[object Object]
@timiil commented on GitHub (Dec 24, 2025): > [@timiil](https://github.com/timiil) I guess the problem is related to using proxy. > > I have following configs in my `.bashrc` as [here](https://opencode.ai/docs/network/) > > ``` > export HTTP_PROXY=xxx > export HTTPS_PROXY=xxx > export NO_PROXY=localhost,127.0.0.1 > ``` > > And also I need to set: > > ``` > export OPENCODE_DISABLE_DEFAULT_PLUGINS=1 > ``` > > And now I can use opencode. seems not , i do have these envs: ``` timiil@tim-work:~/jpda$ echo $http_proxy http://127.0.0.1:10811 timiil@tim-work:~/jpda$ echo $https_proxy http://127.0.0.1:10811 timiil@tim-work:~/jpda$ echo $HTTP_PROXY http://127.0.0.1:10811 timiil@tim-work:~/jpda$ echo $HTTPS_PROXY http://127.0.0.1:10811 timiil@tim-work:~/jpda$ opencode [object Object] ```
Author
Owner

@nicehiro commented on GitHub (Dec 24, 2025):

Do you have no_proxy env variable settings?

On Wed, 24 Dec 2025 at 3:42 PM, timiil @.***> wrote:

timiil left a comment (sst/opencode#5206)
https://github.com/sst/opencode/issues/5206#issuecomment-3688965696

@timiil https://github.com/timiil I guess the problem is related to
using proxy.

I have following configs in my .bashrc as here
https://opencode.ai/docs/network/

export HTTP_PROXY=xxx
export HTTPS_PROXY=xxx
export NO_PROXY=localhost,127.0.0.1

And also I need to set:

export OPENCODE_DISABLE_DEFAULT_PLUGINS=1

And now I can use opencode.

seems not , i do have these envs:

@.:~/jpda$ echo $http_proxyhttp://127.0.0.1:10811
@.
:/jpda$ echo $https_proxyhttp://127.0.0.1:10811
@.***:
/jpda$ echo $HTTP_PROXYhttp://127.0.0.1:10811
@.:~/jpda$ echo $HTTPS_PROXYhttp://127.0.0.1:10811
@.
:~/jpda$ opencode
[object Object]


Reply to this email directly, view it on GitHub
https://github.com/sst/opencode/issues/5206#issuecomment-3688965696, or
unsubscribe
https://github.com/notifications/unsubscribe-auth/AEHTIQQK7COHYOJQR54ZFMT4DI7XBAVCNFSM6AAAAACOJRH6LKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTMOBYHE3DKNRZGY
.
You are receiving this because you authored the thread.Message ID:
@.***>

@nicehiro commented on GitHub (Dec 24, 2025): Do you have no_proxy env variable settings? On Wed, 24 Dec 2025 at 3:42 PM, timiil ***@***.***> wrote: > *timiil* left a comment (sst/opencode#5206) > <https://github.com/sst/opencode/issues/5206#issuecomment-3688965696> > > @timiil <https://github.com/timiil> I guess the problem is related to > using proxy. > > I have following configs in my .bashrc as here > <https://opencode.ai/docs/network/> > > export HTTP_PROXY=xxx > export HTTPS_PROXY=xxx > export NO_PROXY=localhost,127.0.0.1 > > And also I need to set: > > export OPENCODE_DISABLE_DEFAULT_PLUGINS=1 > > And now I can use opencode. > > seems not , i do have these envs: > > ***@***.***:~/jpda$ echo $http_proxyhttp://127.0.0.1:10811 > ***@***.***:~/jpda$ echo $https_proxyhttp://127.0.0.1:10811 > ***@***.***:~/jpda$ echo $HTTP_PROXYhttp://127.0.0.1:10811 > ***@***.***:~/jpda$ echo $HTTPS_PROXYhttp://127.0.0.1:10811 > ***@***.***:~/jpda$ opencode > [object Object] > > — > Reply to this email directly, view it on GitHub > <https://github.com/sst/opencode/issues/5206#issuecomment-3688965696>, or > unsubscribe > <https://github.com/notifications/unsubscribe-auth/AEHTIQQK7COHYOJQR54ZFMT4DI7XBAVCNFSM6AAAAACOJRH6LKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTMOBYHE3DKNRZGY> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Author
Owner

@timiil commented on GitHub (Dec 24, 2025):

Do you have no_proxy env variable settings?

(base) timiil@tim-work:~$ cd /home/timiil/
(base) timiil@tim-work:~$ echo $no_proxy
172.31.*,172.30.*,172.29.*,172.28.*,172.27.*,172.26.*,172.25.*,172.24.*,172.23.*,172.22.*,172.21.*,172.20.*,172.19.*,172.18.*,172.17.*,172.16.*,10.*,192.168.*,127.*,localhost,<local>
(base) timiil@tim-work:~$ opencode
[object Object]

yep, i do

@timiil commented on GitHub (Dec 24, 2025): > Do you have no_proxy env variable settings? > […](#) ``` (base) timiil@tim-work:~$ cd /home/timiil/ (base) timiil@tim-work:~$ echo $no_proxy 172.31.*,172.30.*,172.29.*,172.28.*,172.27.*,172.26.*,172.25.*,172.24.*,172.23.*,172.22.*,172.21.*,172.20.*,172.19.*,172.18.*,172.17.*,172.16.*,10.*,192.168.*,127.*,localhost,<local> (base) timiil@tim-work:~$ opencode [object Object] ``` yep, i do
Author
Owner

@timiil commented on GitHub (Dec 24, 2025):

Image i can ssh my own wsl , and then start OpenCode ...

@timiil commented on GitHub (Dec 24, 2025): <img width="1729" height="935" alt="Image" src="https://github.com/user-attachments/assets/93226fe2-eb17-40e7-a333-182dff141852" /> i can ssh my own wsl , and then start OpenCode ...
Author
Owner

@jiehai4 commented on GitHub (Jan 5, 2026):

Terrible, using a proxy results in [object Object], and without it, I can't connect to the URL, but it was working fine yesterday.

@jiehai4 commented on GitHub (Jan 5, 2026): Terrible, using a proxy results in [object Object], and without it, I can't connect to the URL, but it was working fine yesterday.
Author
Owner

@jiehai4 commented on GitHub (Jan 5, 2026):

I just tried it and became even more confused. I can use opencode in the terminal when I open a single file with VSCode, but it doesn't work when I open a project folder with VSCode.

@jiehai4 commented on GitHub (Jan 5, 2026): I just tried it and became even more confused. I can use opencode in the terminal when I open a single file with VSCode, but it doesn't work when I open a project folder with VSCode.
Author
Owner

@grey8848 commented on GitHub (Jan 6, 2026):

evn: windows 11 wsl debian zsh
error: [object Object]
❯ vim .zshrc
❯ echo $no_proxyROXY

❯ echo $NO_PROXY
local-registry,192.168.,172.31.,172.30.,172.29.,172.28.,172.27.,172.26.,172.25.,172.24.,172.23.,172.22.,172.21.,172.20.,172.19.,172.18.,172.17.,172.16.,10.,127.*,localhost,
❯ opencode
[object Object]
❯ opencode --print-logs --log-level DEBUG
INFO 2026-01-07T00:55:25 +209ms service=default version=1.1.4 args=["--print-logs","--log-level","DEBUG"] opencode
INFO 2026-01-07T00:55:25 +1ms service=config path=/home/jack111/.config/opencode/config.json loading
INFO 2026-01-07T00:55:25 +0ms service=config path=/home/jack111/.config/opencode/opencode.json loading
INFO 2026-01-07T00:55:25 +2ms service=config path=/home/jack111/.config/opencode/opencode.jsonc loading
[object Object]
❯ vim .zshrc
❯ vim .p10k.zsh
❯ export OPENCODE_DISABLE_DEFAULT_PLUGINS=1
❯ opencode --print-logs --log-level DEBUG
INFO 2026-01-07T00:56:54 +180ms service=default version=1.1.4 args=["--print-logs","--log-level","DEBUG"] opencode
INFO 2026-01-07T00:56:54 +1ms service=config path=/home/jack111/.config/opencode/config.json loading
INFO 2026-01-07T00:56:54 +0ms service=config path=/home/jack111/.config/opencode/opencode.json loading
INFO 2026-01-07T00:56:54 +2ms service=config path=/home/jack111/.config/opencode/opencode.jsonc loading
[object Object]
  ~ ❯

@grey8848 commented on GitHub (Jan 6, 2026): evn: windows 11 wsl debian zsh error: [object Object] ❯ vim .zshrc ❯ echo $no_proxyROXY ❯ echo $NO_PROXY local-registry,192.168.*,172.31.*,172.30.*,172.29.*,172.28.*,172.27.*,172.26.*,172.25.*,172.24.*,172.23.*,172.22.*,172.21.*,172.20.*,172.19.*,172.18.*,172.17.*,172.16.*,10.*,127.*,localhost,<local> ❯ opencode [object Object] ❯ opencode --print-logs --log-level DEBUG INFO 2026-01-07T00:55:25 +209ms service=default version=1.1.4 args=["--print-logs","--log-level","DEBUG"] opencode INFO 2026-01-07T00:55:25 +1ms service=config path=/home/jack111/.config/opencode/config.json loading INFO 2026-01-07T00:55:25 +0ms service=config path=/home/jack111/.config/opencode/opencode.json loading INFO 2026-01-07T00:55:25 +2ms service=config path=/home/jack111/.config/opencode/opencode.jsonc loading [object Object] ❯ vim .zshrc ❯ vim .p10k.zsh ❯ export OPENCODE_DISABLE_DEFAULT_PLUGINS=1 ❯ opencode --print-logs --log-level DEBUG INFO 2026-01-07T00:56:54 +180ms service=default version=1.1.4 args=["--print-logs","--log-level","DEBUG"] opencode INFO 2026-01-07T00:56:54 +1ms service=config path=/home/jack111/.config/opencode/config.json loading INFO 2026-01-07T00:56:54 +0ms service=config path=/home/jack111/.config/opencode/opencode.json loading INFO 2026-01-07T00:56:54 +2ms service=config path=/home/jack111/.config/opencode/opencode.jsonc loading [object Object]   ~ ❯
Author
Owner

@timiil commented on GitHub (Jan 7, 2026):

no any update opencode, but today:

(base) timiil@nanyuan:~$ opencode -v
1.0.218

can not start opencode inside a ssh session any more, it is hang for long time no any char showup in ssh

@timiil commented on GitHub (Jan 7, 2026): no any update opencode, but today: ``` (base) timiil@nanyuan:~$ opencode -v 1.0.218 ``` can not start opencode inside a ssh session any more, it is hang for long time no any char showup in ssh
Author
Owner

@hezhexi2002 commented on GitHub (Jan 8, 2026):

You can bypass the local address first.
export NO_PROXY=localhost,127.0.0.1,::1

Thanks for the suggestion. However, my situation is a bit different — I actually need the proxy to access the full network (e.g., npm registries and other external resources). If I set NO_PROXY, the opencode CLI itself seems to work, but it still fails to launch properly because some dependencies can't be downloaded without the proxy.

Hi, I ran into the same problem.
When I use SSH to forward my local proxy and then run opencode, I get the same error output.

It seems that setting NO_PROXY allows the CLI itself to start, but then it fails again because some dependencies cannot be downloaded without the proxy.

May I ask if you’ve found a solution or workaround for this issue?

@hezhexi2002 commented on GitHub (Jan 8, 2026): > > You can bypass the local address first. > > export NO_PROXY=localhost,127.0.0.1,::1 > > Thanks for the suggestion. However, my situation is a bit different — I actually need the proxy to access the full network (e.g., npm registries and other external resources). If I set `NO_PROXY`, the opencode CLI itself seems to work, but it still fails to launch properly because some dependencies can't be downloaded without the proxy. Hi, I ran into the same problem. When I use SSH to forward my local proxy and then run opencode, I get the same error output. It seems that setting NO_PROXY allows the CLI itself to start, but then it fails again because some dependencies cannot be downloaded without the proxy. May I ask if you’ve found a solution or workaround for this issue?
Author
Owner

@nicehiro commented on GitHub (Jan 8, 2026):

Yes. Just use bun to install dependencies using proxy first.

On Fri, Jan 9, 2026 at 12:09 faiz @.***> wrote:

hezhexi2002 left a comment (anomalyco/opencode#5206)
https://github.com/anomalyco/opencode/issues/5206#issuecomment-3727104297

You can bypass the local address first.
export NO_PROXY=localhost,127.0.0.1,::1

Thanks for the suggestion. However, my situation is a bit different — I
actually need the proxy to access the full network (e.g., npm registries
and other external resources). If I set NO_PROXY, the opencode CLI itself
seems to work, but it still fails to launch properly because some
dependencies can't be downloaded without the proxy.

Hi, I ran into the same problem.
When I use SSH to forward my local proxy and then run opencode, I get the
same error output.

It seems that setting NO_PROXY allows the CLI itself to start, but then it
fails again because some dependencies cannot be downloaded without the
proxy.

May I ask if you’ve found a solution or workaround for this issue?


Reply to this email directly, view it on GitHub
https://github.com/anomalyco/opencode/issues/5206#issuecomment-3727104297,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AEHTIQV6YBQZXKHKQTVZQ3T4F4SX7AVCNFSM6AAAAACOJRH6LKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTOMRXGEYDIMRZG4
.
You are receiving this because you authored the thread.Message ID:
@.***>

@nicehiro commented on GitHub (Jan 8, 2026): Yes. Just use bun to install dependencies using proxy first. On Fri, Jan 9, 2026 at 12:09 faiz ***@***.***> wrote: > *hezhexi2002* left a comment (anomalyco/opencode#5206) > <https://github.com/anomalyco/opencode/issues/5206#issuecomment-3727104297> > > You can bypass the local address first. > export NO_PROXY=localhost,127.0.0.1,::1 > > Thanks for the suggestion. However, my situation is a bit different — I > actually need the proxy to access the full network (e.g., npm registries > and other external resources). If I set NO_PROXY, the opencode CLI itself > seems to work, but it still fails to launch properly because some > dependencies can't be downloaded without the proxy. > > Hi, I ran into the same problem. > When I use SSH to forward my local proxy and then run opencode, I get the > same error output. > > It seems that setting NO_PROXY allows the CLI itself to start, but then it > fails again because some dependencies cannot be downloaded without the > proxy. > > May I ask if you’ve found a solution or workaround for this issue? > > — > Reply to this email directly, view it on GitHub > <https://github.com/anomalyco/opencode/issues/5206#issuecomment-3727104297>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/AEHTIQV6YBQZXKHKQTVZQ3T4F4SX7AVCNFSM6AAAAACOJRH6LKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTOMRXGEYDIMRZG4> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: anomalyco/opencode#3381