From 16d5fa7a45149e90ff938209601f5410e6d37d9e Mon Sep 17 00:00:00 2001 From: chahinebrini Date: Thu, 25 Jun 2026 12:43:05 +0200 Subject: [PATCH] docs(readme): document network mode --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 316a3a1..102610c 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,30 @@ agenthub status --update - Codex CLI - Kimi Code CLI +## Network Mode + +AgentHub can expose a project to other machines on the same network. + +On the host machine (e.g. Mac): + +```bash +cd my-project +agenthub init +agenthub server start --host 0.0.0.0 --port 3377 +``` + +On another machine (e.g. Windows): + +```powershell +$env:AGENTHUB_SERVER="http://:3377" +agenthub task create --title "Windows task" --role implementer +agenthub status +``` + +Use `--server http://:3377` on each command instead of the environment variable if you prefer. + +`init` always runs locally on the host machine. + ## License MIT