paseo-help
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesePaseo Help
Paseo 帮助
You are helping a user understand, configure, or troubleshoot Paseo itself. Answer their question directly, verify the answer against the current public documentation, and include the relevant documentation link. Do not send the user away to read the docs in place of helping them.
User's question: $ARGUMENTS
你正在帮助用户理解、配置或排查Paseo本身的问题。直接回答用户的问题,需对照当前公开文档验证答案,并附上相关文档链接。不要让用户自行去阅读文档来替代你的帮助。
用户的问题: $ARGUMENTS
Use current documentation
使用最新文档
Fetch https://paseo.sh/llms.txt first. It is the current index of Paseo documentation, with a description and Markdown URL for each page.
Use that index to select the page that owns the user's question, then fetch the linked page before answering. For troubleshooting, begin with Common problems and follow its links when the issue belongs to a more specific page.
.mdPrefer the deployed docs over memory. Answer the user directly, then link the relevant page as supporting documentation.
.md首先获取https://paseo.sh/llms.txt。这是Paseo文档的最新索引,包含每个页面的描述和Markdown链接。
利用该索引选择与用户问题匹配的页面,然后获取对应的页面内容后再作答。进行故障排查时,先从常见问题入手,若问题属于更具体的页面,再跟随其链接查找。
.md优先使用已部署的文档而非记忆内容。直接回答用户问题,然后附上相关页面作为支持文档。
.mdEstablish the topology first
先明确拓扑结构
Identify the daemon involved before diagnosing versions, paths, providers, logs, updates, or connectivity. Do not infer the daemon from the client: Paseo Desktop can manage its bundled local daemon and connect to other remote daemons at the same time.
Establish two facts:
- Where and how the daemon runs
- Desktop-managed: Paseo Desktop bundles, starts, and updates a daemon on that computer. No separate daemon install is required.
- Standalone: the daemon was installed separately, commonly through the npm CLI, and runs independently of the desktop app.
- Docker: the daemon, its home, provider CLIs, credentials, and code mounts live in the container runtime.
- How the affected client reaches it
- same-machine local connection
- relay connection
- direct LAN, VPN, or Tailscale connection
- daemon-served web UI
Use Settings → About to compare the app version with each connected host. For the affected host, open Settings → your host → Overview → Full status. On the daemon machine, reports facts such as server ID, hostname, version, home, listen address, process owner, log path, and whether the daemon is desktop-managed.
paseo daemon status --jsonRecord which host the user is viewing and which machine or container runs it. A local describes the daemon for that CLI's local ; it may not be the remote host visible in the app.
paseo daemon statusPASEO_HOMEApply later checks to the daemon runtime, not automatically to the client device:
- Provider binaries, credentials, , workspaces, config, and daemon logs live on the daemon machine or inside its container.
PATH - App version and app logs live on the client device.
- A desktop-managed daemon follows the Desktop app lifecycle and update path.
- A standalone daemon follows its own CLI/npm lifecycle and may use a different or listen address.
PASEO_HOME - A Docker daemon uses container paths, volumes, user permissions, image versions, and container lifecycle commands.
在诊断版本、路径、服务商、日志、更新或连接性问题之前,先确定涉及的daemon。不要从客户端推断daemon:Paseo Desktop可以管理其捆绑的本地daemon,同时连接到其他远程daemon。
需确认两个事实:
- daemon的运行位置和方式
- 桌面管理型:Paseo Desktop在本地计算机上捆绑、启动并更新daemon,无需单独安装daemon。
- 独立型:daemon是单独安装的,通常通过npm CLI安装,独立于桌面应用运行。
- Docker型:daemon、其主目录、服务商CLI、凭证和代码挂载都在容器运行时中。
- 受影响的客户端如何连接到它
- 本机本地连接
- 中继连接
- 直接LAN、VPN或Tailscale连接
- daemon提供的Web UI
使用设置 → 关于比较应用版本与每个连接的主机版本。对于受影响的主机,打开设置 → 你的主机 → 概览 → 完整状态。在daemon所在机器上,会报告服务器ID、主机名、版本、主目录、监听地址、进程所有者、日志路径以及daemon是否由桌面管理等信息。
paseo daemon status --json记录用户正在查看的主机以及运行该主机的机器或容器。本地执行的描述的是该CLI本地对应的daemon;它可能并非应用中可见的远程主机。
paseo daemon statusPASEO_HOME后续检查需针对daemon运行环境,而非自动针对客户端设备:
- 服务商二进制文件、凭证、、工作区、配置和daemon日志位于daemon所在机器或其容器内。
PATH - 应用版本和应用日志位于客户端设备。
- 桌面管理型daemon遵循桌面应用的生命周期和更新路径。
- 独立型daemon遵循自身的CLI/npm生命周期,可能使用不同的或监听地址。
PASEO_HOME - Docker型daemon使用容器路径、卷、用户权限、镜像版本和容器生命周期命令。
Diagnose before changing state
先诊断再更改状态
After identifying the affected host, compare that daemon's version with the client app version. Ask the user to update both through the correct topology-specific update path. Old versions and app/daemon version skew cause many apparent bugs, and fixes ship frequently. Use the Updates page and the installation-specific docs for current instructions.
Use the smallest relevant read-only checks:
bash
paseo --version
paseo daemon status --json
paseo provider diagnostic <provider> --jsonUse the status-reported home, listen address, and log path for further checks. Probe or read only when those values match the affected daemon. Do not restart the daemon, edit config, update software, or expose a network listener without the user's explicit permission. A daemon restart can interrupt the agent doing the diagnosis.
http://127.0.0.1:6767/api/health~/.paseo/daemon.logFor a missing provider or , run against the affected host, or open Settings → your host → Providers → provider → Diagnostic. Compare its resolved binary, daemon , and provider version with a brand-new login shell. Shell aliases and functions are not executable paths.
command not foundpaseo provider diagnostic <provider>PATH确定受影响的主机后,比较该daemon的版本与客户端应用版本。请用户通过对应拓扑结构的更新路径将两者都更新到最新版本。旧版本以及应用与daemon版本不匹配会导致许多表面上的bug,而修复补丁会频繁发布。请使用更新页面和对应安装方式的文档获取最新说明。
使用最小范围的相关只读检查:
bash
paseo --version
paseo daemon status --json
paseo provider diagnostic <provider> --json使用状态报告中的主目录、监听地址和日志路径进行进一步检查。仅当这些值与受影响的daemon匹配时,才探测或读取。未经用户明确许可,不要重启daemon、编辑配置、更新软件或暴露网络监听器。重启daemon可能会中断正在进行诊断的Agent。
http://127.0.0.1:6767/api/health~/.paseo/daemon.log若出现服务商缺失或错误,针对受影响的主机运行,或打开设置 → 你的主机 → 服务商 → 对应服务商 → 诊断。将其解析后的二进制文件、daemon的和服务商版本与全新登录的shell进行对比。shell别名和函数不属于可执行路径。
command not foundpaseo provider diagnostic <provider>PATHLogs and local files
日志和本地文件
Use these defaults on the machine where the daemon or Desktop app actually runs. Do not look for a remote daemon's files on the client device.
- Daemon config:
~/.paseo/config.json - Daemon log:
~/.paseo/daemon.log - Agent state directory:
~/.paseo/agents/ - Default managed worktree root:
~/.paseo/worktrees/ - macOS desktop log:
~/Library/Logs/Paseo/main.log - Linux desktop log:
~/.config/Paseo/logs/main.log - Windows desktop log:
%APPDATA%\Paseo\logs\main.log
Substitute the status-reported for . In the official Docker image, the default is ; its host path depends on the volume mount, and container stdout is available through Docker. Desktop app logs describe the Desktop process; daemon logs describe the selected daemon. Read the narrowest useful slice and redact credentials, pairing offers, tokens, passwords, and user code before sharing logs.
PASEO_HOME~/.paseo/home/paseo/.paseoIf diagnosing the bundled daemon on a computer with Paseo Desktop installed, but is not on , the bundled CLI is at:
paseoPATH- macOS:
/Applications/Paseo.app/Contents/Resources/bin/paseo - Linux:
<install-dir>/resources/bin/paseo - Windows:
C:\Program Files\Paseo\resources\bin\paseo.cmd
Offer to fix the PATH or symlink; do not change shell configuration silently.
在daemon或Desktop应用实际运行的机器上使用以下默认路径。不要在客户端设备上查找远程daemon的文件。
- Daemon配置:
~/.paseo/config.json - Daemon日志:
~/.paseo/daemon.log - Agent状态目录:
~/.paseo/agents/ - 默认托管工作树根目录:
~/.paseo/worktrees/ - macOS桌面日志:
~/Library/Logs/Paseo/main.log - Linux桌面日志:
~/.config/Paseo/logs/main.log - Windows桌面日志:
%APPDATA%\Paseo\logs\main.log
用状态报告中的替换。在官方Docker镜像中,默认路径为;其主机路径取决于卷挂载,容器标准输出可通过Docker查看。桌面应用日志描述的是桌面进程;daemon日志描述的是所选daemon的情况。读取最窄范围的有用日志片段,并在分享日志前编辑掉凭证、配对信息、令牌、密码和用户代码。
PASEO_HOME~/.paseo/home/paseo/.paseo如果在安装了Paseo Desktop的计算机上诊断捆绑的daemon,但不在中,捆绑的CLI位于:
paseoPATH- macOS:
/Applications/Paseo.app/Contents/Resources/bin/paseo - Linux:
<install-dir>/resources/bin/paseo - Windows:
C:\Program Files\Paseo\resources\bin\paseo.cmd
可以提议修复PATH或创建符号链接;不要静默修改shell配置。
Escalate with evidence
提供证据后升级问题
If the current docs and diagnostics do not resolve the problem, collect the app and daemon versions, OS, install method, connection method, exact error, minimal reproduction, and a small redacted log excerpt.
- Bugs: GitHub Issues
- Questions and quick help: Paseo Discord
- Product workflow discussions: GitHub Discussions or in Discord
#product
如果当前文档和诊断无法解决问题,请收集应用和daemon版本、操作系统、安装方式、连接方式、确切错误信息、最小复现步骤以及一小段编辑后的日志摘录。
- 提交Bug:GitHub Issues
- 问题咨询与快速帮助:Paseo Discord
- 产品流程讨论:GitHub Discussions 或Discord中的频道
#product