惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix: accept leading fuzzy Discord voice wake names (#8648...
steipete · 2026-05-25 · via Recent Commits to openclaw:main

@@ -64,6 +64,7 @@ const DISCORD_REALTIME_FORCED_CONSULT_FALLBACK_DELAY_MS = 200;

6464

const DISCORD_REALTIME_DUPLICATE_ERROR_SUPPRESS_MS = 60_000;

6565

const DISCORD_REALTIME_CONTROL_SPEECH_DEDUPE_MS = 5_000;

6666

const DISCORD_REALTIME_OUTPUT_PLAYBACK_WATCHDOG_MARGIN_MS = 1_500;

67+

const DISCORD_REALTIME_WAKE_NAME_FUZZY_PREFIX_WORDS = 3;

6768

const REALTIME_PCM16_BYTES_PER_SAMPLE = 2;

6869

const DISCORD_RAW_PCM_FRAME_BYTES = 3_840;

6970

const DISCORD_REALTIME_OUTPUT_PREROLL_FRAMES = 25;

@@ -353,6 +354,19 @@ function normalizeWakeName(value: string): string | undefined {

353354

return normalized || undefined;

354355

}

355356357+

function normalizeWakeNameCandidate(value: string): string | undefined {

358+

const normalized = value

359+

.toLowerCase()

360+

.replace(/[^a-z0-9]+/g, " ")

361+

.replace(/\s+/g, " ")

362+

.trim();

363+

return normalized || undefined;

364+

}

365+366+

function compactWakeName(value: string): string {

367+

return value.replace(/[^a-z0-9]+/g, "");

368+

}

369+356370

function escapeRegExp(value: string): string {

357371

return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");

358372

}

@@ -384,6 +398,136 @@ function stripLeadingWakeName(text: string, wakeName: string): string {

384398

.trim();

385399

}

386400401+

type LeadingWakeNameCandidate = {

402+

heardName: string;

403+

endIndex: number;

404+

strongBoundary: boolean;

405+

};

406+407+

type WakeNameTranscriptResult =

408+

| { allowed: true; text: string; wakeName: string; heardName: string; match: "exact" | "fuzzy" }

409+

| { allowed: false; text: string };

410+

type AllowedWakeNameTranscriptResult = Extract<WakeNameTranscriptResult, { allowed: true }>;

411+412+

function leadingWakeNameCandidates(text: string): LeadingWakeNameCandidate[] {

413+

const opener = /^\s*(?:(?:hey|ok|okay)(?:\s*[-,:;]+\s*|\s+))?/i.exec(text);

414+

const nameStart = opener?.[0].length ?? 0;

415+

const candidates: LeadingWakeNameCandidate[] = [];

416+

const tokenPattern = /[a-z0-9]+/gi;

417+

tokenPattern.lastIndex = nameStart;

418+419+

for (

420+

let wordCount = 0;

421+

wordCount < DISCORD_REALTIME_WAKE_NAME_FUZZY_PREFIX_WORDS;

422+

wordCount += 1

423+

) {

424+

const token = tokenPattern.exec(text);

425+

if (!token) {

426+

break;

427+

}

428+

const between = text.slice(

429+

wordCount === 0 ? nameStart : candidates[wordCount - 1]?.endIndex,

430+

token.index,

431+

);

432+

if (wordCount > 0 && !/^[\s'-]+$/.test(between)) {

433+

break;

434+

}

435+

const endIndex = token.index + token[0].length;

436+

const heardName = normalizeWakeNameCandidate(text.slice(nameStart, endIndex));

437+

if (!heardName) {

438+

break;

439+

}

440+

const boundary = text.slice(endIndex).match(/^\s*([,.:;!?-]|$)/);

441+

candidates.push({

442+

heardName,

443+

endIndex,

444+

strongBoundary: Boolean(boundary),

445+

});

446+

}

447+448+

return candidates;

449+

}

450+451+

function levenshteinDistance(left: string, right: string): number {

452+

if (left === right) {

453+

return 0;

454+

}

455+

if (!left) {

456+

return right.length;

457+

}

458+

if (!right) {

459+

return left.length;

460+

}

461+462+

let previous = Array.from({ length: right.length + 1 }, (_, index) => index);

463+

for (let leftIndex = 0; leftIndex < left.length; leftIndex += 1) {

464+

const current = [leftIndex + 1];

465+

for (let rightIndex = 0; rightIndex < right.length; rightIndex += 1) {

466+

const cost = left[leftIndex] === right[rightIndex] ? 0 : 1;

467+

current[rightIndex + 1] = Math.min(

468+

current[rightIndex] + 1,

469+

previous[rightIndex + 1] + 1,

470+

previous[rightIndex] + cost,

471+

);

472+

}

473+

previous = current;

474+

}

475+

return previous[right.length] ?? Math.max(left.length, right.length);

476+

}

477+478+

function isFuzzyWakeNameMatch(candidate: LeadingWakeNameCandidate, wakeName: string): boolean {

479+

const normalizedWakeName = normalizeWakeNameCandidate(wakeName);

480+

if (!normalizedWakeName) {

481+

return false;

482+

}

483+

const heardCompact = compactWakeName(candidate.heardName);

484+

const wakeCompact = compactWakeName(normalizedWakeName);

485+

if (!heardCompact || !wakeCompact || wakeCompact.length < 5) {

486+

return false;

487+

}

488+

if (!candidate.strongBoundary) {

489+

return false;

490+

}

491+

const distance = levenshteinDistance(heardCompact, wakeCompact);

492+

if (distance <= 1) {

493+

return true;

494+

}

495+

return distance === 2 && wakeCompact.length >= 5 && heardCompact.length !== wakeCompact.length;

496+

}

497+498+

function stripLeadingWakeNameCandidate(text: string, candidate: LeadingWakeNameCandidate): string {

499+

return text

500+

.slice(candidate.endIndex)

501+

.replace(/^\s*(?:[-,:;.!?]+\s*)?/, "")

502+

.trim();

503+

}

504+505+

function matchLeadingFuzzyWakeName(

506+

text: string,

507+

wakeNames: string[],

508+

): AllowedWakeNameTranscriptResult | undefined {

509+

for (const candidate of leadingWakeNameCandidates(text)) {

510+

for (const wakeName of wakeNames) {

511+

const normalizedWakeName = normalizeWakeNameCandidate(wakeName);

512+

if (!normalizedWakeName) {

513+

continue;

514+

}

515+

const heardCompact = compactWakeName(candidate.heardName);

516+

const wakeCompact = compactWakeName(normalizedWakeName);

517+

if (heardCompact === wakeCompact || isFuzzyWakeNameMatch(candidate, wakeName)) {

518+

return {

519+

allowed: true,

520+

text: stripLeadingWakeNameCandidate(text, candidate),

521+

wakeName,

522+

heardName: candidate.heardName,

523+

match: heardCompact === wakeCompact ? "exact" : "fuzzy",

524+

};

525+

}

526+

}

527+

}

528+

return undefined;

529+

}

530+387531

function resolveDiscordRealtimeWakeNames(params: {

388532

config: DiscordRealtimeVoiceConfig;

389533

cfg: OpenClawConfig;

@@ -1273,13 +1417,26 @@ export class DiscordRealtimeVoiceSession implements VoiceRealtimeSession {

12731417

this.talkback.enqueue(acceptedText, this.consumePendingSpeakerContext());

12741418

}

127514191276-

private resolveWakeNameTranscript(text: string): { allowed: boolean; text: string } {

1420+

private resolveWakeNameTranscript(text: string): WakeNameTranscriptResult {

12771421

if (!this.requireWakeName) {

1278-

return { allowed: true, text };

1422+

return { allowed: true, text, wakeName: "", heardName: "", match: "exact" };

12791423

}

12801424

const wakeName = this.wakeNames.find((name) => includesWakeName(text, name));

12811425

if (wakeName) {

1282-

return { allowed: true, text: stripLeadingWakeName(text, wakeName) };

1426+

return {

1427+

allowed: true,

1428+

text: stripLeadingWakeName(text, wakeName),

1429+

wakeName,

1430+

heardName: wakeName,

1431+

match: "exact",

1432+

};

1433+

}

1434+

const fuzzyWakeName = matchLeadingFuzzyWakeName(text, this.wakeNames);

1435+

if (fuzzyWakeName) {

1436+

logger.info(

1437+

`discord voice: realtime wake-name gate matched canonical=${fuzzyWakeName.wakeName} heard=${fuzzyWakeName.heardName} match=${fuzzyWakeName.match} voiceSession=${this.params.entry.voiceSessionKey} agent=${this.params.entry.route.agentId}`,

1438+

);

1439+

return fuzzyWakeName;

12831440

}

12841441

return { allowed: false, text };

12851442

}