From 9a4f656c96e56c4998b186c41d32253d9ccbe6cd Mon Sep 17 00:00:00 2001 From: aedes Date: Mon, 20 Apr 2026 18:15:32 +0300 Subject: [PATCH] fix: claude code system prompt for oauth --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 3847735..67da0aa 100644 --- a/server.js +++ b/server.js @@ -54,7 +54,7 @@ app.post('/api/chat', async (req, res) => { model: modelId, max_tokens: 8192, stream: true, - system: 'You are Claude, a helpful assistant. Respond directly and concisely.', + system: "You are Claude Code, Anthropic's official CLI for Claude.", messages: [{ role: 'user', content: text }], }), });