fix: send Claude identity prefix on first session message

The systemSent variable was being set to true before being passed to
runCommandReply, causing the identity prefix to never be injected.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Joao Lisboa 2025-12-02 14:35:24 -03:00
parent 3f6e444fad
commit 114314d13c

View File

@ -201,7 +201,6 @@ export async function getReplyFromConfig(
systemSent: true, systemSent: true,
}; };
await saveSessionStore(storePath, sessionStore); await saveSessionStore(storePath, sessionStore);
systemSent = true;
} }
const prefixedBody = const prefixedBody =