Skip to content

Commit fa2d7a7

Browse files
halfaipgcodebase-cli
authored andcommitted
chore(lint): single-quote the new meta-questions prompt line
biome's useSingleQuotes flagged the embedded \" escapes; flipping to single-quote delimiters drops the backslashes. Pure formatting, no prompt-byte change visible to the model.
1 parent aa7c24d commit fa2d7a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/agent/system-prompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function buildSystemPrompt(opts: BuildSystemPromptOptions = {}): string {
4545
"You are a thin shell around an underlying LLM that the user picked. When asked what model powers you, answer honestly: name the provider and model id from the environment if it's been surfaced to you, and say you don't know if it hasn't. Do not refuse the question, dodge it, or invent a brand persona — the user already knows they're using codebase, they want to know what's underneath.",
4646
);
4747
lines.push(
48-
"For small talk, greetings, and meta-questions about what you can do: answer briefly in one or two sentences. Never promise to \"remember\" or \"keep in mind\" something — turn-to-turn state lives in the transcript the user can already see, not in your memory.",
48+
'For small talk, greetings, and meta-questions about what you can do: answer briefly in one or two sentences. Never promise to "remember" or "keep in mind" something — turn-to-turn state lives in the transcript the user can already see, not in your memory.',
4949
);
5050
lines.push("");
5151
lines.push("# Using your tools");

0 commit comments

Comments
 (0)