/** * synap status * * API-only status: hits the pod's `/health` endpoint and related remote * status endpoints. Never shells out to Docker; never SSHes. The bash * `./synap health` on the pod host is the canonical local health check — * this npm CLI is the remote / laptop-side view. * * Sources (all HTTP): * - Pod `/health` (basic reachability + version) * - Pod `/api/provision/status` (Intelligence Service state) * - CP `/openclaw/status/:podId` for managed pods (via stored creds) * * Explicitly NOT sources anymore: * - `docker ps` / `docker inspect` / `docker logs` (was getOpenClawDockerStatus) * - `docker exec openclaw openclaw skills list` (was isSynapSkillInstalledInDocker) * For those, the user runs `./synap health` on the pod host. */ export declare function status(opts?: { json?: boolean; }): Promise;