openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
32 lines (31 loc) • 1.78 kB
JavaScript
import { a as normalizeLowercaseStringOrEmpty } from "./string-coerce-mnp54Vah.js";
import { y as parseStrictNonNegativeInteger } from "./number-coercion-CJQ8TR--.js";
import { o as callGateway } from "./call-B5-GYOlf.js";
import { r as stripToolMessages } from "./chat-history-text-D43w1rZt.js";
import { t as formatRunLabel } from "./subagents-utils-BD_5s6t0.js";
import { l as stopWithText, n as formatLogLines, s as resolveSubagentEntryForToken } from "./shared-jeYHliLc.js";
//#region src/auto-reply/reply/commands-subagents/action-log.ts
async function handleSubagentsLogAction(ctx) {
const { runs, restTokens } = ctx;
const target = restTokens[0];
if (!target) return stopWithText("📜 Usage: /subagents log <id|#> [limit]");
const includeTools = restTokens.some((token) => normalizeLowercaseStringOrEmpty(token) === "tools");
const parsedLimit = parseStrictNonNegativeInteger(restTokens.slice(1).find((token) => parseStrictNonNegativeInteger(token) !== void 0));
const limit = parsedLimit === void 0 ? 20 : Math.min(200, Math.max(1, parsedLimit));
const targetResolution = resolveSubagentEntryForToken(runs, target);
if ("reply" in targetResolution) return targetResolution.reply;
const history = await callGateway({
method: "chat.history",
params: {
sessionKey: targetResolution.entry.childSessionKey,
limit
}
});
const rawMessages = Array.isArray(history?.messages) ? history.messages : [];
const lines = formatLogLines(includeTools ? rawMessages : stripToolMessages(rawMessages));
const header = `📜 Subagent log: ${formatRunLabel(targetResolution.entry)}`;
if (lines.length === 0) return stopWithText(`${header}\n(no messages)`);
return stopWithText([header, ...lines].join("\n"));
}
//#endregion
export { handleSubagentsLogAction };