1467
const handled = this._localCommands.tryHandle({ turnChannel: session, turnId, text: msg.message.text });
1468
if (handled) {
1469
>
// A local command may suggest a provisional title (e.g. a `!command`
agentSideEffects.ts
1470
>
// dequeued before any real request has titled the session).
1471
>
if (handled.suggestedTitle !== undefined) {
1472
>
this._titleController.seedProvisionalTitle(sessionChannel, handled.suggestedTitle, session);
1473
>
}
1474
>
return;
1475
>
}
1476
1477
this._titleController.seedTitleFromFirstMessage(sessionChannel, msg.message.text, session);