91 lines
3.3 KiB
TypeScript
91 lines
3.3 KiB
TypeScript
import type { ThinkLevel } from "../auto-reply/thinking.js";
|
|
|
|
export function buildAgentSystemPromptAppend(params: {
|
|
workspaceDir: string;
|
|
defaultThinkLevel?: ThinkLevel;
|
|
extraSystemPrompt?: string;
|
|
ownerNumbers?: string[];
|
|
runtimeInfo?: {
|
|
host?: string;
|
|
os?: string;
|
|
arch?: string;
|
|
node?: string;
|
|
model?: string;
|
|
};
|
|
}) {
|
|
const thinkHint =
|
|
params.defaultThinkLevel && params.defaultThinkLevel !== "off"
|
|
? `Default thinking level: ${params.defaultThinkLevel}.`
|
|
: "Default thinking level: off.";
|
|
|
|
const extraSystemPrompt = params.extraSystemPrompt?.trim();
|
|
const ownerNumbers = (params.ownerNumbers ?? [])
|
|
.map((value) => value.trim())
|
|
.filter(Boolean);
|
|
const ownerLine =
|
|
ownerNumbers.length > 0
|
|
? `Owner numbers: ${ownerNumbers.join(", ")}. Treat messages from these numbers as the user (Peter).`
|
|
: undefined;
|
|
const runtimeInfo = params.runtimeInfo;
|
|
const runtimeLines: string[] = [];
|
|
if (runtimeInfo?.host) runtimeLines.push(`Host: ${runtimeInfo.host}`);
|
|
if (runtimeInfo?.os) {
|
|
const archSuffix = runtimeInfo.arch ? ` (${runtimeInfo.arch})` : "";
|
|
runtimeLines.push(`OS: ${runtimeInfo.os}${archSuffix}`);
|
|
} else if (runtimeInfo?.arch) {
|
|
runtimeLines.push(`Arch: ${runtimeInfo.arch}`);
|
|
}
|
|
if (runtimeInfo?.node) runtimeLines.push(`Node: ${runtimeInfo.node}`);
|
|
if (runtimeInfo?.model) runtimeLines.push(`Model: ${runtimeInfo.model}`);
|
|
|
|
const lines = [
|
|
"You are Clawd, a personal assistant running inside Clawdis.",
|
|
"",
|
|
"## Tooling",
|
|
"Pi lists the standard tools above. This runtime enables:",
|
|
"- grep: search file contents for patterns",
|
|
"- find: find files by glob pattern",
|
|
"- ls: list directory contents",
|
|
"- whatsapp_login: generate a WhatsApp QR code and wait for linking",
|
|
"- clawdis_browser: control clawd's dedicated browser",
|
|
"- clawdis_canvas: present/eval/snapshot the Canvas",
|
|
"- clawdis_nodes: list/describe/notify/camera/screen on paired nodes",
|
|
"- clawdis_cron: manage cron jobs and wake events",
|
|
"TOOLS.md does not control tool availability; it is user guidance for how to use external tools.",
|
|
"",
|
|
"## Workspace",
|
|
`Your working directory is: ${params.workspaceDir}`,
|
|
"Treat this directory as the single global workspace for file operations unless explicitly instructed otherwise.",
|
|
"",
|
|
ownerLine ? "## User Identity" : "",
|
|
ownerLine ?? "",
|
|
ownerLine ? "" : "",
|
|
"## Workspace Files (injected)",
|
|
"These user-editable files are loaded by Clawdis and included below in Project Context.",
|
|
"",
|
|
"## Messaging Safety",
|
|
"Never send streaming/partial replies to external messaging surfaces; only final replies should be delivered there.",
|
|
"Clawdis handles message transport automatically; respond normally and your reply will be delivered to the current chat.",
|
|
"",
|
|
];
|
|
|
|
if (extraSystemPrompt) {
|
|
lines.push("## Group Chat Context", extraSystemPrompt, "");
|
|
}
|
|
|
|
lines.push(
|
|
"## Heartbeats",
|
|
'If you receive a heartbeat poll (a user message containing just "HEARTBEAT"), and there is nothing that needs attention, reply exactly:',
|
|
"HEARTBEAT_OK",
|
|
'If something needs attention, do NOT include "HEARTBEAT_OK"; reply with the alert text instead.',
|
|
"",
|
|
"## Runtime",
|
|
...runtimeLines,
|
|
thinkHint,
|
|
);
|
|
|
|
return lines
|
|
.filter(Boolean)
|
|
.join("\n");
|
|
}
|