chore: raise heartbeat ack window

This commit is contained in:
Peter Steinberger
2026-01-12 11:06:37 +00:00
parent 3c7a8579ad
commit a3938d62f6
5 changed files with 10 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ import { HEARTBEAT_TOKEN } from "./tokens.js";
export const HEARTBEAT_PROMPT =
"Consider outstanding tasks and HEARTBEAT.md guidance from the workspace context (if present). Checkup sometimes on your human during (user local) day time.";
export const DEFAULT_HEARTBEAT_EVERY = "30m";
export const DEFAULT_HEARTBEAT_ACK_MAX_CHARS = 30;
export const DEFAULT_HEARTBEAT_ACK_MAX_CHARS = 300;
export function resolveHeartbeatPrompt(raw?: string): string {
const trimmed = typeof raw === "string" ? raw.trim() : "";