From 4cbf414a2ad1224e9487070671ad9b1bba762956 Mon Sep 17 00:00:00 2001 From: Bryant Date: Wed, 15 Jul 2026 10:16:18 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20(python-sdk-docs):=20Add=20curl/?= =?UTF-8?q?nc=20liveness=20check=20to=20gateway=20note?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit REST has a real /healthz endpoint (mode/storage/version/uptime_secs); gRPC has no health service registered yet, so nc only confirms the port accepts connections. Lets readers confirm the local gateway is actually up instead of guessing from SDK behavior. --- docs/quick-start.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/quick-start.md b/docs/quick-start.md index 0bbeaba0..ea0c629a 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -84,6 +84,14 @@ local default port). connects and shows the agent in the dashboard. `:8080` is **not** the local gateway port; ignore older docs or examples that point registration there. + To confirm both surfaces are actually up rather than guessing from the SDK's + behavior, check them directly: + + ```bash + curl http://localhost:7391/healthz # REST — real JSON: mode, storage, version, uptime_secs + nc -z localhost 50051 && echo "gRPC port open" # gRPC has no health endpoint yet; this only confirms the port accepts connections + ``` + ## 3. Govern your first agent Agent Assembly governs whichever agent framework you already use. Pick your framework below —