# SSH [English](ssh.md) | 中文 [SSH 提供方家族](../../packages/ssh/README.zh.md) 通过部署方持有的 OpenSSH 连接提供一个远端文件系统/进程环境。Harness、模型传输及 Session 存储留在主机。该家族实现既有文件系统、子进程及沙箱 API,不引入 SSH 专用模型工具。 ## 执行坐标 文件系统身份、可执行文件查找、进程 cwd、沙箱工作区根目录及语言服务器文件 URL 都指向 SSH 主机。提供方在文件实际存在的位置规范化路径,保留文件系统对 `symlink/..` 的解释。策略解析器保留执行环境中的绝对路径写法,不尝试在 Harness 主机上解析远端路径。 `processPath()` 提供配套子进程提供方可用的路径。SSH 的 `processPathFromHostPath()` 仍不可用;安装远端产物不意味着任意主机路径可移植。因此 [`NodePtcRuntime`](../../packages/ptc-runtime/ptc-runtime-node/README.zh.md) 使用显式安装并经过摘要验证的远端引导程序。 ## 传输与信任 管理 RPC 使用辅助进程的 SSH exec 流。普通 stdin、stdout、stderr、终端输出及可选 fd 7 控制流使用分别认证的转发 Unix 套接字。每条转发流拥有独立 SSH 通道窗口;暂停的程序输出不与控制或管理消息共用窗口。所有通道仍共享连接带宽及传输失败。 部署认证、已安装产物验证及逐流 TLS 认证属于 [`dsh-ssh`](../../packages/ssh/ssh/README.zh.md)。辅助进程使用远端机器上的可信本地提供方执行文件系统与进程请求。SSH 是传输方式;文件效果限制由所选远端沙箱提供方执行。 ## 进程生命周期与取消 进程先预留,再连接流,且启动最多接受一次。`done` 报告直接结果,`waitForExit` 观察远端托管进程范围。终端操作保留共享异步 API。准备阶段取消、已启动进程终止及提供方释放都通过辅助进程释放各自资源。 管理截止时限约束单次 RPC 观察,不替代 Bash 或 PTC 运行时消费方选择的执行截止时限。远端等待可以持续挂起,同时其他请求继续推进。SSH 丢失会使待处理操作失效;辅助进程 EOF、信号及租期到期会启动远端清理。客户端如实报告未确认结果,绝不通过重连重放可能已执行的操作。 ## 组合范围 headless 通过已挂载的文件系统提供方记录和检查 Session cwd。因此远端 FS、Bash、终端、LSP 及 PTC 消费方可以共享这些坐标。假定可访问主机文件系统的 Web 工作区视图需要单独集成;仅替换提供方并不会使这些视图支持远端。 替代方案与验证责任见[决策记录](../../.agents/notes/implemented/architecture/2026-09-11-posix-ssh-runtime.zh.md)。 ## 连接 API ```ts type-equiv /** Deployment-owned SSH identity and installed helper; no model argument selects these values. */ interface Config { /** OpenSSH host alias, including its existing user, key and known-host configuration. */ host: string /** Absolute remote Node executable. */ node: string /** Absolute path to the installed, bundled helper entry. */ helper: string /** SHA-256 of that bundled helper; mismatches refuse the connection. */ helperHash: string /** Absolute remote default workspace. */ workspace: string /** Optional preinstalled built PTC entry, paired with its expected digest. */ bootstrapPath?: string /** SHA-256 of bootstrapPath; both fields must be supplied together. */ bootstrapHash?: string /** Connection and administrative-request deadline, at most 2,147,483,647 milliseconds. */ requestTimeoutMs?: number /** Maximum JSON payload bytes per helper request or response. */ maxFrameBytes?: number /** Maximum ordinary requests; heartbeat and bounded resource cleanup have reserved capacity. */ maxPending?: number /** Remote helper lease; loss of heartbeats starts remote managed cleanup. */ leaseMs?: number } ``` ```ts public-api /** One non-reconnecting SSH session; loss invalidates all active operations. */ declare class SshConnection extends Service { static Config: schema; /** Verified remote helper coordinates; callers must await this before launch. */ readonly ready: Promise; constructor(ctx: Context, config: Config); /** Hold plugin readiness until the remote identity and helper digest are verified. */ async [Service.init](): Promise; /** Verified remote Node executable for the paired PTC runtime. */ get nodeExecutable(): string; /** Verified preinstalled PTC entry; unconfigured runtimes fail before program execution. */ get bootstrapPath(): string; /** * Send a helper operation; cancellation never replays an ambiguous mutation. * @param method - the private helper operation. * @param params - JSON request fields validated by the helper. * @param result - response validation before returning provider-visible data. * @param signal - cancellation, which does not undo completed remote effects. * @param wait - allow a process observation to outlast the administrative deadline. * @returns the validated remote result. */ async request(method: string, params: unknown, result: z.ZodType, signal?: AbortSignal, wait: boolean = false): Promise; /** * Forward one authenticated stream through an independent SSH channel. * @param endpoint - private coordinates issued by this connection's helper. * @param signal - cancellation of allocation and the resulting socket. * @returns a paused socket; attach a consumer before resuming it. */ async connectStream(endpoint: SshStreamEndpoint, signal?: AbortSignal): Promise; /** Tear down the helper's remote managed ranges before releasing the SSH master when reachable. */ dispose(): Promise; } ``` ## Cordis API Generated from source by `scripts/gen-cordis-catalog.ts` (verified fresh by `pnpm run verify-cordis-catalog` in doc-sync; regenerate with `pnpm run gen-cordis-catalog`) — the language sides differ only in locale-specific paired document paths. Signature blocks use a `ts cordis-catalog` fence and keep the original source JSDoc; dispatch modes are defined in the [primer](../cordis-primer.zh.md#dispatch-modes), and the framework-inherited `ctx` API lives in [cordis-api/inherited.md](../cordis-api/inherited.md). ### `ctx.ssh` — `SshConnection` One non-reconnecting SSH session; loss invalidates all active operations. ```ts cordis-catalog /** * Send a helper operation; cancellation never replays an ambiguous mutation. * @param method - the private helper operation. * @param params - JSON request fields validated by the helper. * @param result - response validation before returning provider-visible data. * @param signal - cancellation, which does not undo completed remote effects. * @param wait - allow a process observation to outlast the administrative deadline. * @returns the validated remote result. */ async request(method: string, params: unknown, result: z.ZodType, signal?: AbortSignal, wait: boolean = false): Promise /** * Forward one authenticated stream through an independent SSH channel. * @param endpoint - private coordinates issued by this connection's helper. * @param signal - cancellation of allocation and the resulting socket. * @returns a paused socket; attach a consumer before resuming it. */ async connectStream(endpoint: SshStreamEndpoint, signal?: AbortSignal): Promise /** Tear down the helper's remote managed ranges before releasing the SSH master when reachable. */ dispose(): Promise ``` Source: [`packages/ssh/ssh/src/index.ts`](../../packages/ssh/ssh/src/index.ts)