-
Notifications
You must be signed in to change notification settings - Fork 57
Remove the local relay dashboard #1146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f8d8cb6
9015c50
7251862
f268e89
ca9db68
bbb8688
b5605f2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,11 +28,11 @@ | |
| "build:sdk": "npm --prefix packages/sdk run build", | ||
| "build:telemetry": "npm --prefix packages/telemetry run build", | ||
| "dev:watch": "cd packages/cli && npx tsc -w", | ||
| "watch:start": "npm run build && concurrently -k \"npm run dev:watch\" \"node --watch packages/cli/dist/cli/index.js start dashboard.js claude\"", | ||
| "watch:start": "npm run build && concurrently -k \"npm run dev:watch\" \"node --watch packages/cli/dist/cli/index.js up\"", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When Useful? React with 👍 / 👎. |
||
| "watch:start:cli-tools": "npm run build && bash ./scripts/watch-cli-tools.sh", | ||
| "watch:start:claude": "npm run watch:start:cli-tools -- --tool=claude", | ||
| "predev": "npm run clean && npm run build:packages && cd packages/cli && npx tsc && cd ../.. && chmod +x packages/cli/dist/cli/index.js", | ||
| "dev": "node packages/cli/dist/cli/index.js up --port 3888", | ||
| "dev": "node packages/cli/dist/cli/index.js up", | ||
| "dev:local": "npm run build && (cd packages/cli && npm link) && echo '✓ agent-relay linked globally'", | ||
| "dev:unlink": "(cd packages/cli && npm unlink -g agent-relay) && echo '✓ agent-relay unlinked'", | ||
| "dev:rebuild": "npm run build && echo '✓ Rebuilt (linked version updated)'", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Health check hardcodes
base+1even though broker port selection can fall backLine 196/Line 203 assume the API will always bind to
BROKER_PORT + 1, but lifecycle startup may move to the next free port when that slot is occupied. This can fail CI even when the broker started successfully.Suggested fix
🤖 Prompt for AI Agents