#reopen cli

1 messages ยท Page 1 of 1 (latest)

deep nexus
#

how do i open up the interactive cli after ive closed it

astral capeBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> โœ… Mark Solution

viral yewBOT
# deep nexus how do i open up the interactive cli after ive closed it

It depends on how you're running Clawdbot:

If you ran clawdbot directly:
Just run clawdbot again in your terminal.

If you ran it in tmux:

tmux attach
# or if you have multiple sessions
tmux ls   # list sessions
tmux attach -t <session-name>

If it's running as a background process/service:

clawdbot gateway restart
#
# or if using systemd
systemctl restart clawdbot

The quickest way to check if it's still running and get the right command:

ps aux | grep clawdbot

What method were you using to run it?

deep nexus
#

root@ubuntu-4gb-hel1-1:~# clawdbot

๐Ÿฆž Clawdbot 2026.1.16-2 (49c35c7) โ€” If you're lost, run doctor; if you're brave, run prod; if you're wise, run tests.

Usage: clawdbot [options] [command]

viral yewBOT