-
Notifications
You must be signed in to change notification settings - Fork 0
fix(claude-relay-plugin): align plugin identity and drop the legacy engine pin #91
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
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
|---|---|---|
|
|
@@ -8,7 +8,6 @@ | |
| "mcp" | ||
| ], | ||
| "env": { | ||
| "RELAY_BASE_URL": "https://gateway.relaycast.dev", | ||
| "RELAY_AGENT_TYPE": "agent" | ||
|
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 a user relies on the defaults and sets Useful? React with 👍 / 👎. |
||
| } | ||
| } | ||
|
|
||
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.
P2: Removing RELAY_BASE_URL makes the MCP server follow the SDK default host (
cast.agentrelay.com), but the plugin's own hooks still default to the oldgateway.relaycast.devhost when the variable is unset (inhooks/post-tool-inbox.sh,hooks/stop-inbox.js, andhooks/stop-inbox.ts). So on a fresh install the inbox-polling/stop-guard hooks now talk to a different host than the MCP server — reintroducing the exact config drift this PR is meant to fix. Consider also updating the hooks' DEFAULT_BASE_URL/default fallback to the SDK default (cast.agentrelay.com) so the whole plugin moves with the SDK default, and update the plugin README's env-var table, which still documentsgateway.relaycast.devas the default.Prompt for AI agents