Uninstall
Remove koshi and every file it wrote — config, themes, logs, update state, cache, crash reports, and runtime files — on Linux, macOS, or Windows.
End every koshi session before removing files. Detaching is not enough: a detached session is still running.
koshi list-sessions also lists the sessions on every saved server that
answers. Only the rows whose server column reads local run on this machine.
koshi list-sessions
koshi kill-session <NAME_OR_ID>The commands below delete your koshi configuration, saved profiles, and custom themes. Copy anything you want to keep out of the config directory first.
They also delete the remote data — the saved server secrets, the pinned certificates, and the access tokens this machine granted. Revoke the grants first if other machines still hold tokens:
koshi share list
koshi share revoke <IDENTITY>Linux
Remove a script-installed binary:
sudo rm -f /usr/local/bin/koshiRemove config, logs, crash reports, update state, cached data, runtime files, and the remote data:
rm -rf "${XDG_CONFIG_HOME:-$HOME/.config}/koshi"
rm -rf "${XDG_DATA_HOME:-$HOME/.local/share}/koshi"
rm -rf "${XDG_STATE_HOME:-$HOME/.local/state}/koshi"
rm -rf "${XDG_CACHE_HOME:-$HOME/.cache}/koshi"
rm -rf "/tmp/koshi-$(id -u)"macOS
For a script install:
sudo rm -f /usr/local/bin/koshiFor a Homebrew install:
brew uninstall --force koshi
brew untap gohyuhan/koshiThen remove config, logs, crash reports, update state, cache, runtime files, and the remote data:
rm -rf "$HOME/Library/Application Support/koshi"
rm -rf "$HOME/Library/Caches/koshi"
rm -rf "/tmp/koshi-$(id -u)"Windows
For a Scoop install:
scoop uninstall koshi
scoop bucket rm koshi
scoop cache rm "koshi*"For a PowerShell-script install, drop the PATH entry and the install directory:
$InstallDir = Join-Path $env:LOCALAPPDATA "koshi"
$UserPath = [Environment]::GetEnvironmentVariable(
"Path",
[EnvironmentVariableTarget]::User
)
$CleanPath = (($UserPath -split ";") | Where-Object {
$_ -and $_ -ne $InstallDir
}) -join ";"
[Environment]::SetEnvironmentVariable(
"Path",
$CleanPath,
[EnvironmentVariableTarget]::User
)
Remove-Item $InstallDir -Recurse -Force -ErrorAction SilentlyContinueThen remove what is left, the remote data included:
Remove-Item (Join-Path $env:APPDATA "koshi") `
-Recurse -Force -ErrorAction SilentlyContinue
Remove-Item (Join-Path $env:LOCALAPPDATA "koshi") `
-Recurse -Force -ErrorAction SilentlyContinuekoshi at a glance
koshi's vocabulary, the default keys, the shell commands, and the properties that shape how it works — including terminal images and per-client views.
Sessions and clients
A koshi session runs in its own process and owns the tabs, panes, and processes; terminals attach to it as clients and can leave without ending it.