openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
230 lines (229 loc) • 9.1 kB
JavaScript
import { c as normalizeOptionalString } from "./string-coerce-mnp54Vah.js";
import { t as escapeRegExp } from "./regexp-BZyMFTlj.js";
import { t as parseDurationMs } from "./parse-duration-oxu_S07c.js";
import { t as HEARTBEAT_TOKEN } from "./tokens-U6o7_k27.js";
//#region src/auto-reply/heartbeat.ts
/** Heartbeat prompt defaults, token stripping, task parsing, and due-time helpers. */
const HEARTBEAT_CONTEXT_PROMPT = "Read HEARTBEAT.md if it exists (workspace context). Follow it strictly. Do not infer or repeat old tasks from prior chats.";
/** Default prompt for heartbeat turns when config does not override it. */
const HEARTBEAT_PROMPT = `${HEARTBEAT_CONTEXT_PROMPT} If nothing needs attention, reply HEARTBEAT_OK.`;
const HEARTBEAT_RESPONSE_TOOL_INSTRUCTIONS = "Use heartbeat_respond to report the wake outcome. Set notify=false when nothing needs the user's attention. Set notify=true with notificationText only when the user should be interrupted.";
const HEARTBEAT_RESPONSE_TOOL_PROMPT = `${HEARTBEAT_CONTEXT_PROMPT} ${HEARTBEAT_RESPONSE_TOOL_INSTRUCTIONS}`;
const HEARTBEAT_TRANSCRIPT_PROMPT = "[OpenClaw heartbeat poll]";
const DEFAULT_HEARTBEAT_ACK_MAX_CHARS = 300;
function stripLeadingHtmlCommentScaffolding(line, state) {
let remaining = line;
while (state.inHtmlComment || remaining.trimStart().startsWith("<!--")) {
const searchText = state.inHtmlComment ? remaining : remaining.trimStart();
const commentEnd = searchText.indexOf("-->");
if (commentEnd === -1) {
state.inHtmlComment = true;
return "";
}
state.inHtmlComment = false;
if (searchText === remaining) remaining = remaining.slice(commentEnd + 3);
else {
const leadingWidth = remaining.length - searchText.length;
remaining = remaining.slice(0, leadingWidth) + searchText.slice(commentEnd + 3);
}
}
return remaining;
}
function stripHeartbeatHtmlComments(content) {
const state = { inHtmlComment: false };
return content.split("\n").map((line) => stripLeadingHtmlCommentScaffolding(line, state));
}
/**
* Check if HEARTBEAT.md content is "effectively empty" - meaning it has no actionable tasks.
* This allows skipping heartbeat API calls when no tasks are configured.
*
* A file is considered effectively empty if it contains only:
* - Whitespace / empty lines
* - Markdown/HTML comments
* - Markdown ATX headers (`#`, `##`, ...)
* - Markdown fence markers such as ``` or ```markdown
* - Empty list item stubs (`- `, `- [ ]`, `* `, `+ `)
*
* Note: A missing file returns false (not effectively empty) so the LLM can still
* decide what to do. This function is only for when the file exists but has no content.
*/
function isHeartbeatContentEffectivelyEmpty(content) {
if (content === void 0 || content === null) return false;
if (typeof content !== "string") return false;
const lines = stripHeartbeatHtmlComments(content);
for (const line of lines) {
const trimmed = line.trim();
if (!trimmed) continue;
if (/^<!--.*-->$/.test(trimmed)) continue;
if (/^#+(\s|$)/.test(trimmed)) continue;
if (/^[-*+]\s*(\[[\sXx]?\]\s*)?$/.test(trimmed)) continue;
if (/^```[A-Za-z0-9_-]*$/.test(trimmed)) continue;
return false;
}
return true;
}
/** Resolves configured heartbeat prompt text with the built-in default fallback. */
function resolveHeartbeatPrompt(raw) {
return (normalizeOptionalString(raw) ?? "") || HEARTBEAT_PROMPT;
}
function appendHeartbeatResponseToolInstructions(prompt) {
const trimmed = normalizeOptionalString(prompt) ?? "";
if (!trimmed) return HEARTBEAT_RESPONSE_TOOL_PROMPT;
if (trimmed.includes("Use heartbeat_respond to report the wake outcome. Set notify=false when nothing needs the user's attention. Set notify=true with notificationText only when the user should be interrupted.")) return trimmed;
return `${trimmed}\n\n${HEARTBEAT_RESPONSE_TOOL_INSTRUCTIONS}`;
}
/** Resolves heartbeat prompt text and guarantees heartbeat_respond tool instructions are present. */
function resolveHeartbeatPromptForResponseTool(raw) {
const trimmed = normalizeOptionalString(raw) ?? "";
return trimmed ? appendHeartbeatResponseToolInstructions(trimmed) : HEARTBEAT_RESPONSE_TOOL_PROMPT;
}
function stripTokenAtEdges(raw) {
let text = raw.trim();
if (!text) return {
text: "",
didStrip: false
};
const token = HEARTBEAT_TOKEN;
const tokenAtEndWithOptionalTrailingPunctuation = new RegExp(`${escapeRegExp(token)}[^\\w]{0,4}$`);
if (!text.includes(token)) return {
text,
didStrip: false
};
let didStrip = false;
let changed = true;
while (changed) {
changed = false;
const next = text.trim();
if (next.startsWith(token)) {
text = next.slice(token.length).trimStart();
didStrip = true;
changed = true;
continue;
}
if (tokenAtEndWithOptionalTrailingPunctuation.test(next)) {
const idx = next.lastIndexOf(token);
const before = next.slice(0, idx).trimEnd();
if (!before) text = "";
else text = `${before}${next.slice(idx + token.length).trimStart()}`.trimEnd();
didStrip = true;
changed = true;
}
}
return {
text: text.replace(/\s+/g, " ").trim(),
didStrip
};
}
/** Strips HEARTBEAT_OK acknowledgements and decides whether visible notification is needed. */
function stripHeartbeatToken(raw, opts = {}) {
if (!raw) return {
shouldSkip: true,
text: "",
didStrip: false
};
const trimmed = raw.trim();
if (!trimmed) return {
shouldSkip: true,
text: "",
didStrip: false
};
const mode = opts.mode ?? "message";
const maxAckCharsRaw = opts.maxAckChars;
const parsedAckChars = typeof maxAckCharsRaw === "string" ? Number(maxAckCharsRaw) : maxAckCharsRaw;
const maxAckChars = Math.max(0, typeof parsedAckChars === "number" && Number.isFinite(parsedAckChars) ? parsedAckChars : 300);
const stripMarkup = (text) => text.replace(/<[^>]*>/g, " ").replace(/ /gi, " ").replace(/^[*`~_]+/, "").replace(/[*`~_]+$/, "");
const trimmedNormalized = stripMarkup(trimmed);
if (!(trimmed.includes("HEARTBEAT_OK") || trimmedNormalized.includes("HEARTBEAT_OK"))) return {
shouldSkip: false,
text: trimmed,
didStrip: false
};
const strippedOriginal = stripTokenAtEdges(trimmed);
const strippedNormalized = stripTokenAtEdges(trimmedNormalized);
const picked = strippedOriginal.didStrip && strippedOriginal.text ? strippedOriginal : strippedNormalized;
if (!picked.didStrip) return {
shouldSkip: false,
text: trimmed,
didStrip: false
};
if (!picked.text) return {
shouldSkip: true,
text: "",
didStrip: true
};
const rest = picked.text.trim();
if (mode === "heartbeat") {
if (rest.length <= maxAckChars) return {
shouldSkip: true,
text: "",
didStrip: true
};
}
return {
shouldSkip: false,
text: rest,
didStrip: true
};
}
/**
* Parse heartbeat tasks from HEARTBEAT.md content.
* Supports YAML-like task definitions:
*
* tasks:
* - name: email-check
* interval: 30m
* prompt: "Check for urgent unread emails"
*/
function parseHeartbeatTasks(content) {
const tasks = [];
const lines = stripHeartbeatHtmlComments(content);
let inTasksBlock = false;
for (let i = 0; i < lines.length; i++) {
const trimmed = lines[i].trim();
if (trimmed === "tasks:") {
inTasksBlock = true;
continue;
}
if (!inTasksBlock) continue;
if (!(trimmed.startsWith("interval:") || trimmed.startsWith("prompt:") || trimmed.startsWith("- name:")) && !trimmed.startsWith(" ") && !trimmed.startsWith(" ") && trimmed && !trimmed.startsWith("-")) {
inTasksBlock = false;
continue;
}
if (trimmed.startsWith("- name:")) {
const name = trimmed.replace("- name:", "").trim().replace(/^["']|["']$/g, "");
let interval = "";
let prompt = "";
for (let j = i + 1; j < lines.length; j++) {
const nextLine = lines[j];
const nextTrimmed = nextLine.trim();
if (nextTrimmed.startsWith("- name:")) break;
if (nextTrimmed.startsWith("interval:") && (nextLine.startsWith(" ") || nextLine.startsWith(" "))) interval = nextTrimmed.replace("interval:", "").trim().replace(/^["']|["']$/g, "");
else if (nextTrimmed.startsWith("prompt:") && (nextLine.startsWith(" ") || nextLine.startsWith(" "))) prompt = nextTrimmed.replace("prompt:", "").trim().replace(/^["']|["']$/g, "");
else if (!nextTrimmed.startsWith(" ") && !nextTrimmed.startsWith(" ") && nextTrimmed) {
inTasksBlock = false;
break;
}
}
if (name && interval && prompt) tasks.push({
name,
interval,
prompt
});
}
}
return tasks;
}
/**
* Check if a task is due based on its interval and last run time.
*/
function isTaskDue(lastRunMs, interval, nowMs) {
if (lastRunMs === void 0) return true;
try {
const intervalMs = parseDurationMs(interval, { defaultUnit: "m" });
return nowMs - lastRunMs >= intervalMs;
} catch {
return false;
}
}
//#endregion
export { HEARTBEAT_TRANSCRIPT_PROMPT as a, parseHeartbeatTasks as c, stripHeartbeatToken as d, HEARTBEAT_RESPONSE_TOOL_PROMPT as i, resolveHeartbeatPrompt as l, HEARTBEAT_PROMPT as n, isHeartbeatContentEffectivelyEmpty as o, HEARTBEAT_RESPONSE_TOOL_INSTRUCTIONS as r, isTaskDue as s, DEFAULT_HEARTBEAT_ACK_MAX_CHARS as t, resolveHeartbeatPromptForResponseTool as u };