docs: update README for v0.1.0 (owner arbiter, auto notify, loop protection, Discord-independent comm)

This commit is contained in:
Eyejoker
2026-03-31 04:32:40 +09:00
parent d0416489c5
commit c2351a4bb9
2 changed files with 10 additions and 3 deletions

View File

@@ -1051,7 +1051,10 @@ export async function runAgentForGroup(
// Notify user when paired task reaches a terminal state that requires attention.
if (pairedExecutionContext) {
const finishedTask = getPairedTaskById(pairedExecutionContext.task.id);
if (finishedTask?.status === 'completed' && finishedTask.completion_reason) {
if (
finishedTask?.status === 'completed' &&
finishedTask.completion_reason
) {
const sender = getLastHumanMessageSender(chatJid);
const mention = sender ? `<@${sender}>` : '';
const notifications: Record<string, string> = {