Troubleshooting
Almost every "it works in my terminal but not in Isee" problem is the same thing: Isee and your terminal aren't searching the same PATH. This page covers how to spot that and fix it.
Isee can't find my provider
A provider you've installed shows as Not installed.
Isee launches the agent CLIs you've already installed, it doesn't bundle them (see Providers). So it has to find the command on its own PATH. If your shell only adds that location to PATH under certain conditions, Isee can miss it.
See what Isee sees
Open Settings → your host → Providers, tap the provider, then tap Diagnostic. The rows that matter:
- Resolved path — where Isee found the binary, or
not found. - Daemon PATH — the
PATHIsee is searching. Compare it toecho $PATHin a fresh terminal. - Version — whether the binary actually runs.
From a terminal or agent, request the same diagnostic from the affected daemon:
paseo provider diagnostic <provider>
paseo --host <host:port> provider diagnostic <provider> --json
Use the global --host option when the affected daemon is not the CLI's default local daemon.
not found together with a Daemon PATH that's missing your binary's directory is the common case: that directory is on your terminal's PATH but not on Isee's.
Fix it
The durable fix is to make sure the command is on PATH for a normal login shell, then restart Isee, see why Isee's environment can differ for why that's the test that matters.
If you'd rather pin it directly, set the binary path in ~/.paseo/config.json:
{
"agents": {
"providers": {
"claude": {
"command": ["/absolute/path/to/claude"]
}
}
}
}
command is [binary, ...args] and fully replaces the default launch command for that provider. Find the real path with which -a claude. type -a claude also tells you if claude is only a shell alias or function, those won't work, Isee runs the binary directly, so use the path it points to. Reload the configuration after editing (see below).
For alternative endpoints, multiple profiles, custom binaries, and ACP agents, see Custom providers. For per-agent install links, see Supported providers.
Why Isee's environment can differ from your terminal
The same mismatch shows up anywhere Isee runs your tools, an agent, or a terminal, reporting command not found for something you use every day.
When you open the desktop app from the Dock or Finder, the OS hands it a stripped-down environment, not your terminal's PATH. To compensate, Isee runs your login shell once at startup ($SHELL -i -l -c), captures its environment, and hands that to the daemon and everything it spawns. The rule of thumb: if a brand-new terminal can run the command, Isee should too. That's also the test, open a fresh terminal and try it there.
When you start the daemon yourself from a terminal (paseo), there's no login-shell step, it simply inherits that terminal's environment.
Either way, the fix for a missing tool lives in your shell config (.zshrc, .zprofile, …), not in Isee. Tools installed through version managers (asdf, mise, nvm, …) are the usual offenders, make sure they initialize for a clean login shell, not only inside one you've already opened.
This login-shell step runs on macOS and Linux. On Windows, Isee uses the environment it was launched with.
Reading the logs
- Desktop app — the login-shell resolution is logged here. Look for
[login-shell-env]:appliedmeans it worked (it logs thePATHbefore and after);failed; keeping inherited envmeans it fell back to the stripped-down environment, with areason(a timeout, a non-zero exit from your shell config, no output, …). A slow or erroring.zshrc/.zprofileis the usual cause. - Daemon —
~/.paseo/daemon.log($PASEO_HOME/daemon.logif you've set a custom home).
Desktop app log location:
| Platform | Path |
|---|---|
| macOS | ~/Library/Logs/Isee/main.log |
| Linux | ~/.config/Isee/logs/main.log |
| Windows | %APPDATA%\Isee\logs\main.log |
I changed config.json but nothing happened
Reload the file after editing:
paseo reload
Isee applies runtime-safe settings and names any paths that require a restart. Invalid JSON or a schema error applies nothing; fix the reported error and run the command again. If a launch environment variable or flag owns a changed setting, reload reports it separately.
Run paseo daemon restart only when reload requests it. In the app, open Settings → your host → Overview and use Restart daemon. Running agents keep going, and clients reconnect automatically.
Still stuck?
- Custom providers — endpoints, profiles, binaries, ACP agents.
- Configuration —
config.json, environment variables, logging. - How Isee resolves your login shell — the exact code that loads your shell environment.
- Report an issue.