fix: preserve agent id casing

This commit is contained in:
Peter Steinberger
2026-01-24 12:23:11 +00:00
parent 49c518951c
commit fa746b05de
5 changed files with 23 additions and 25 deletions

View File

@@ -1,7 +1,6 @@
import type { Command } from "commander";
import type { CronJob } from "../../cron/types.js";
import { danger } from "../../globals.js";
import { normalizeAgentId } from "../../routing/session-key.js";
import { defaultRuntime } from "../../runtime.js";
import type { GatewayRpcOpts } from "../gateway-rpc.js";
import { addGatewayClientOptions, callGatewayFromCli } from "../gateway-rpc.js";
@@ -139,9 +138,7 @@ export function registerCronAddCommand(cron: Command) {
}
const agentId =
typeof opts.agent === "string" && opts.agent.trim()
? normalizeAgentId(opts.agent)
: undefined;
typeof opts.agent === "string" && opts.agent.trim() ? opts.agent.trim() : undefined;
const payload = (() => {
const systemEvent = typeof opts.systemEvent === "string" ? opts.systemEvent.trim() : "";

View File

@@ -1,6 +1,5 @@
import type { Command } from "commander";
import { danger } from "../../globals.js";
import { normalizeAgentId } from "../../routing/session-key.js";
import { defaultRuntime } from "../../runtime.js";
import { addGatewayClientOptions, callGatewayFromCli } from "../gateway-rpc.js";
import {
@@ -91,7 +90,7 @@ export function registerCronEditCommand(cron: Command) {
throw new Error("Use --agent or --clear-agent, not both");
}
if (typeof opts.agent === "string" && opts.agent.trim()) {
patch.agentId = normalizeAgentId(opts.agent);
patch.agentId = opts.agent.trim();
}
if (opts.clearAgent) {
patch.agentId = null;