From 549da360abeafca144cbdf2cbf1c2c467bd254fe Mon Sep 17 00:00:00 2001 From: Prateek Date: Thu, 19 Feb 2026 07:30:34 +0530 Subject: [PATCH] docs: update hardcoded port 3000 references after auto-detect change Port is now auto-detected by `ao init`, so docs should not hardcode 3000. Co-Authored-By: Claude Sonnet 4.6 --- README.md | 6 +++--- docs/DEVELOPMENT.md | 4 ++-- examples/README.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8984a46d7..a1a04b7d7 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ cd agent-orchestrator && bash scripts/setup.sh cd ~/your-project && ao init --auto && ao start ``` -Dashboard opens at http://localhost:3000 (port configurable via `port:` in config) +Dashboard opens at http://localhost:4100 ## Overview @@ -99,8 +99,8 @@ ao spawn my-project # Command-line dashboard ao status -# Web dashboard (default port 3000, configurable in agent-orchestrator.yaml) -open http://localhost:3000 +# Web dashboard +ao dashboard ``` ### Manage Sessions diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index 32a247333..3f3e20953 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -40,7 +40,7 @@ pnpm build cd packages/web pnpm dev -# Open http://localhost:3000 (or your configured port) +# Open http://localhost: (port from agent-orchestrator.yaml) ``` ### Project Structure @@ -319,7 +319,7 @@ cat ~/.agent-orchestrator/my-app-3 **Check session status:** ```bash -curl http://localhost:3000/api/sessions/my-app-3 +curl http://localhost:/api/sessions/my-app-3 ``` ## Environment Variables diff --git a/examples/README.md b/examples/README.md index 2365c0590..39aae60f3 100644 --- a/examples/README.md +++ b/examples/README.md @@ -108,6 +108,6 @@ After copying an example: 1. **Edit the config** - Update repo paths, team IDs, etc. 2. **Validate** - Run `ao start` to check for config errors 3. **Spawn an agent** - Try `ao spawn project-id ISSUE-123` -4. **Monitor** - Use `ao status` or open the dashboard (default http://localhost:3000, configurable via `port:` in config) +4. **Monitor** - Use `ao status` or `ao dashboard` to open the web UI See [SETUP.md](../SETUP.md) for detailed configuration reference and troubleshooting.