style: use dot notation for process.env.CLAUDE_MODEL

This commit is contained in:
2026-05-24 00:25:08 +08:00
parent 335b8a4ae6
commit 68b82c9574
@@ -16,7 +16,7 @@ const log = createLogger({ sink: { kind: "stderr" } });
const CLAUDE_COMMAND = "claude";
const CLAUDE_MAX_TURNS = 90;
const CLAUDE_MODEL = process.env["CLAUDE_MODEL"] ?? null;
const CLAUDE_MODEL = process.env.CLAUDE_MODEL ?? null;
function buildHistorySummary(steps: AgentContext["steps"]): string {
if (steps.length === 0) {