@rk0429/agentic-relay 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/relay.mjs +8 -8
- package/package.json +1 -1
package/dist/relay.mjs
CHANGED
|
@@ -2362,7 +2362,7 @@ var init_server = __esm({
|
|
|
2362
2362
|
this.agentEventStore
|
|
2363
2363
|
);
|
|
2364
2364
|
this.server = new McpServer(
|
|
2365
|
-
{ name: "agentic-relay", version: "1.3.
|
|
2365
|
+
{ name: "agentic-relay", version: "1.3.1" },
|
|
2366
2366
|
createMcpServerOptions()
|
|
2367
2367
|
);
|
|
2368
2368
|
this.registerTools(this.server);
|
|
@@ -2647,7 +2647,7 @@ var init_server = __esm({
|
|
|
2647
2647
|
);
|
|
2648
2648
|
server.tool(
|
|
2649
2649
|
"check_session_health",
|
|
2650
|
-
"Check relay session
|
|
2650
|
+
"Check whether a relay session is alive, stale, or completed. Use to verify sub-agent progress.",
|
|
2651
2651
|
checkSessionHealthInputSchema.shape,
|
|
2652
2652
|
async (params) => {
|
|
2653
2653
|
try {
|
|
@@ -2677,7 +2677,7 @@ var init_server = __esm({
|
|
|
2677
2677
|
);
|
|
2678
2678
|
server.tool(
|
|
2679
2679
|
"poll_agent_events",
|
|
2680
|
-
"
|
|
2680
|
+
"Get agent lifecycle events (spawned, completed, failed) since a cursor. Use for monitoring sub-agent progress.",
|
|
2681
2681
|
pollAgentEventsInputSchema.shape,
|
|
2682
2682
|
async (params) => {
|
|
2683
2683
|
try {
|
|
@@ -2710,7 +2710,7 @@ var init_server = __esm({
|
|
|
2710
2710
|
);
|
|
2711
2711
|
server.tool(
|
|
2712
2712
|
"get_context_status",
|
|
2713
|
-
"Get
|
|
2713
|
+
"Get context window usage of a relay session. Use to check if a sub-agent is approaching context limits.",
|
|
2714
2714
|
{
|
|
2715
2715
|
sessionId: z7.string().describe("Relay session ID to query context usage for.")
|
|
2716
2716
|
},
|
|
@@ -2740,7 +2740,7 @@ var init_server = __esm({
|
|
|
2740
2740
|
);
|
|
2741
2741
|
server.tool(
|
|
2742
2742
|
"list_available_backends",
|
|
2743
|
-
"List
|
|
2743
|
+
"List registered backends and their health. spawn_agent auto-selects backends, so this is mainly for diagnostics.",
|
|
2744
2744
|
{},
|
|
2745
2745
|
async () => {
|
|
2746
2746
|
try {
|
|
@@ -2830,7 +2830,7 @@ var init_server = __esm({
|
|
|
2830
2830
|
sessionIdGenerator: () => randomUUID()
|
|
2831
2831
|
});
|
|
2832
2832
|
const server = new McpServer(
|
|
2833
|
-
{ name: "agentic-relay", version: "1.3.
|
|
2833
|
+
{ name: "agentic-relay", version: "1.3.1" },
|
|
2834
2834
|
createMcpServerOptions()
|
|
2835
2835
|
);
|
|
2836
2836
|
this.registerTools(server);
|
|
@@ -6212,7 +6212,7 @@ function createVersionCommand(registry2) {
|
|
|
6212
6212
|
description: "Show relay and backend versions"
|
|
6213
6213
|
},
|
|
6214
6214
|
async run() {
|
|
6215
|
-
const relayVersion = "1.3.
|
|
6215
|
+
const relayVersion = "1.3.1";
|
|
6216
6216
|
console.log(`agentic-relay v${relayVersion}`);
|
|
6217
6217
|
console.log("");
|
|
6218
6218
|
console.log("Backends:");
|
|
@@ -6565,7 +6565,7 @@ void configManager.getConfig().then((config) => {
|
|
|
6565
6565
|
var main = defineCommand10({
|
|
6566
6566
|
meta: {
|
|
6567
6567
|
name: "relay",
|
|
6568
|
-
version: "1.3.
|
|
6568
|
+
version: "1.3.1",
|
|
6569
6569
|
description: "Unified CLI proxy for Claude Code, Codex CLI, and Gemini CLI"
|
|
6570
6570
|
},
|
|
6571
6571
|
subCommands: {
|
package/package.json
CHANGED