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

推荐订阅源

博客园_首页
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
量子位
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
V
Visual Studio Blog
雷峰网
雷峰网
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator 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(memory-wiki): route natural people questions · opencl...
clawsweeper · 2026-04-30 · via Recent Commits to openclaw:main

@@ -21,6 +21,55 @@ const CLAIMS_DIGEST_PATH = ".openclaw-wiki/cache/claims.jsonl";

2121

const RELATED_BLOCK_PATTERN =

2222

/<!-- openclaw:wiki:related:start -->[\s\S]*?<!-- openclaw:wiki:related:end -->/g;

2323

const MARKDOWN_FRONTMATTER_PATTERN = /^\s*---\r?\n[\s\S]*?\r?\n---\r?\n?/;

24+

const ROUTE_QUESTION_STOP_WORDS = new Set([

25+

"a",

26+

"about",

27+

"am",

28+

"an",

29+

"are",

30+

"ask",

31+

"asking",

32+

"be",

33+

"been",

34+

"being",

35+

"can",

36+

"could",

37+

"did",

38+

"do",

39+

"does",

40+

"for",

41+

"help",

42+

"how",

43+

"i",

44+

"in",

45+

"is",

46+

"know",

47+

"knows",

48+

"me",

49+

"my",

50+

"need",

51+

"needs",

52+

"of",

53+

"on",

54+

"or",

55+

"our",

56+

"question",

57+

"questions",

58+

"should",

59+

"the",

60+

"to",

61+

"us",

62+

"we",

63+

"what",

64+

"when",

65+

"where",

66+

"who",

67+

"whom",

68+

"whose",

69+

"why",

70+

"with",

71+

"would",

72+

]);

24732574

export const WIKI_SEARCH_MODES = [

2675

"auto",

@@ -309,6 +358,12 @@ function buildQueryTokens(queryLower: string): string[] {

309358

];

310359

}

311360361+

function buildRouteQuestionTokens(queryLower: string): string[] {

362+

const tokens = buildQueryTokens(queryLower);

363+

const routedTokens = tokens.filter((token) => !ROUTE_QUESTION_STOP_WORDS.has(token));

364+

return routedTokens.length > 0 ? routedTokens : tokens;

365+

}

366+312367

function lineMatchesQuery(lineLower: string, queryLower: string, queryTokens: string[]): boolean {

313368

if (queryLower.length > 0 && lineLower.includes(queryLower)) {

314369

return true;

@@ -469,6 +524,39 @@ function hasAnyQueryMatch(

469524

return values.some((value) => hasQueryMatch(value, queryLower, queryTokens));

470525

}

471526527+

function buildPageRouteQuestionFields(page: QueryableWikiPage): string[] {

528+

return [

529+

page.personCard?.lane,

530+

...(page.personCard?.askFor ?? []),

531+

...(page.personCard?.avoidAskingFor ?? []),

532+

...page.bestUsedFor,

533+

...page.notEnoughFor,

534+

...(page.personCard?.bestUsedFor ?? []),

535+

...(page.personCard?.notEnoughFor ?? []),

536+

...page.relationships.flatMap((relationship) => [

537+

relationship.kind,

538+

relationship.targetTitle,

539+

relationship.note,

540+

]),

541+

].filter((value): value is string => Boolean(value));

542+

}

543+544+

function buildDigestRouteQuestionFields(page: QueryDigestPage): string[] {

545+

return [

546+

page.personCard?.lane,

547+

...(page.personCard?.askFor ?? []),

548+

...(page.personCard?.avoidAskingFor ?? []),

549+

...(page.bestUsedFor ?? []),

550+

...(page.notEnoughFor ?? []),

551+

...(page.personCard?.bestUsedFor ?? []),

552+

...(page.personCard?.notEnoughFor ?? []),

553+

].filter((value): value is string => Boolean(value));

554+

}

555+556+

function hasRouteQuestionMatch(values: readonly string[], queryLower: string): boolean {

557+

return hasAnyQueryMatch(values, queryLower, buildRouteQuestionTokens(queryLower));

558+

}

559+472560

function isPersonLikeSummary(

473561

page: Pick<WikiPageSummary, "entityType" | "pageType" | "personCard">,

474562

): boolean {

@@ -516,26 +604,7 @@ function scorePageSearchModeBoost(params: {

516604

}

517605

case "route-question": {

518606

let score = isPersonLikeSummary(page) ? 14 : 0;

519-

if (

520-

hasAnyQueryMatch(

521-

[

522-

page.personCard?.lane,

523-

...(page.personCard?.askFor ?? []),

524-

...(page.personCard?.avoidAskingFor ?? []),

525-

...page.bestUsedFor,

526-

...page.notEnoughFor,

527-

...(page.personCard?.bestUsedFor ?? []),

528-

...(page.personCard?.notEnoughFor ?? []),

529-

...page.relationships.flatMap((relationship) => [

530-

relationship.kind,

531-

relationship.targetTitle,

532-

relationship.note,

533-

]),

534-

],

535-

queryLower,

536-

queryTokens,

537-

)

538-

) {

607+

if (hasRouteQuestionMatch(buildPageRouteQuestionFields(page), queryLower)) {

539608

score += 32;

540609

}

541610

score += Math.min(8, page.relationships.length * 2);

@@ -606,21 +675,7 @@ function scoreDigestSearchModeBoost(params: {

606675

}

607676

case "route-question": {

608677

let score = isPersonLikeSummary(page) ? 14 : 0;

609-

if (

610-

hasAnyQueryMatch(

611-

[

612-

page.personCard?.lane,

613-

...(page.personCard?.askFor ?? []),

614-

...(page.personCard?.avoidAskingFor ?? []),

615-

...(page.bestUsedFor ?? []),

616-

...(page.notEnoughFor ?? []),

617-

...(page.personCard?.bestUsedFor ?? []),

618-

...(page.personCard?.notEnoughFor ?? []),

619-

],

620-

queryLower,

621-

queryTokens,

622-

)

623-

) {

678+

if (hasRouteQuestionMatch(buildDigestRouteQuestionFields(page), queryLower)) {

624679

score += 32;

625680

}

626681

score += Math.min(8, (page.relationshipCount ?? 0) * 2);

@@ -673,7 +728,13 @@ function buildDigestCandidatePaths(params: {

673728

const metadataLower = normalizeLowercaseStringOrEmpty(

674729

buildDigestPageSearchText(page, claims),

675730

);

676-

if (!metadataLower.includes(queryLower)) {

731+

if (

732+

!metadataLower.includes(queryLower) &&

733+

!(

734+

params.mode === "route-question" &&

735+

hasRouteQuestionMatch(buildDigestRouteQuestionFields(page), queryLower)

736+

)

737+

) {

677738

return { path: page.path, score: 0 };

678739

}

679740

let score =

@@ -779,7 +840,10 @@ function scorePage(page: QueryableWikiPage, query: string, mode: WikiSearchMode)

779840

rawLower.includes(queryLower);

780841

const hasAllTokens =

781842

queryTokens.length > 0 && queryTokens.every((token) => combinedLower.includes(token));

782-

if (!hasExactMatch && !hasAllTokens) {

843+

const hasModeMatch =

844+

mode === "route-question" &&

845+

hasRouteQuestionMatch(buildPageRouteQuestionFields(page), queryLower);

846+

if (!hasExactMatch && !hasAllTokens && !hasModeMatch) {

783847

return 0;

784848

}

785849