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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
I
InfoQ
博客园 - 司徒正美

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(auto-reply): precompile directive regexes · openclaw/...
samzong · 2026-05-12 · via Recent Commits to openclaw:main

@@ -19,12 +19,24 @@ type ExtractedLevel<T> = {

1919

hasDirective: boolean;

2020

};

212122+

const compileDirectivePattern = (names: readonly string[], suffix = ""): RegExp => {

23+

const namePattern = names.map(escapeRegExp).join("|");

24+

return new RegExp(`(?:^|\\s)\\/(?:${namePattern})(?=$|\\s|:)${suffix}`, "i");

25+

};

26+27+

const THINK_DIRECTIVE_PATTERN = compileDirectivePattern(["thinking", "think", "t"]);

28+

const VERBOSE_DIRECTIVE_PATTERN = compileDirectivePattern(["verbose", "v"]);

29+

const TRACE_DIRECTIVE_PATTERN = compileDirectivePattern(["trace"]);

30+

const FAST_DIRECTIVE_PATTERN = compileDirectivePattern(["fast"]);

31+

const ELEVATED_DIRECTIVE_PATTERN = compileDirectivePattern(["elevated", "elev"]);

32+

const REASONING_DIRECTIVE_PATTERN = compileDirectivePattern(["reasoning", "reason"]);

33+

const STATUS_DIRECTIVE_PATTERN = compileDirectivePattern(["status"], `(?:\\s*:\\s*)?`);

34+2235

const matchLevelDirective = (

2336

body: string,

24-

names: string[],

37+

pattern: RegExp,

2538

): { start: number; end: number; rawLevel?: string } | null => {

26-

const namePattern = names.map(escapeRegExp).join("|");

27-

const match = body.match(new RegExp(`(?:^|\\s)\\/(?:${namePattern})(?=$|\\s|:)`, "i"));

39+

const match = body.match(pattern);

2840

if (!match || match.index === undefined) {

2941

return null;

3042

}

@@ -51,10 +63,10 @@ const matchLevelDirective = (

51635264

const extractLevelDirective = <T>(

5365

body: string,

54-

names: string[],

66+

pattern: RegExp,

5567

normalize: (raw?: string) => T | undefined,

5668

): ExtractedLevel<T> => {

57-

const match = matchLevelDirective(body, names);

69+

const match = matchLevelDirective(body, pattern);

5870

if (!match) {

5971

return { cleaned: body.trim(), hasDirective: false };

6072

}

@@ -76,12 +88,9 @@ const extractLevelDirective = <T>(

76887789

const extractSimpleDirective = (

7890

body: string,

79-

names: string[],

91+

pattern: RegExp,

8092

): { cleaned: string; hasDirective: boolean } => {

81-

const namePattern = names.map(escapeRegExp).join("|");

82-

const match = body.match(

83-

new RegExp(`(?:^|\\s)\\/(?:${namePattern})(?=$|\\s|:)(?:\\s*:\\s*)?`, "i"),

84-

);

93+

const match = body.match(pattern);

8594

const cleaned = match ? body.replace(match[0], " ").replace(/\s+/g, " ").trim() : body.trim();

8695

return {

8796

cleaned,

@@ -98,7 +107,7 @@ export function extractThinkDirective(body?: string): {

98107

if (!body) {

99108

return { cleaned: "", hasDirective: false };

100109

}

101-

const extracted = extractLevelDirective(body, ["thinking", "think", "t"], normalizeThinkLevel);

110+

const extracted = extractLevelDirective(body, THINK_DIRECTIVE_PATTERN, normalizeThinkLevel);

102111

return {

103112

cleaned: extracted.cleaned,

104113

thinkLevel: extracted.level,

@@ -116,7 +125,7 @@ export function extractVerboseDirective(body?: string): {

116125

if (!body) {

117126

return { cleaned: "", hasDirective: false };

118127

}

119-

const extracted = extractLevelDirective(body, ["verbose", "v"], normalizeVerboseLevel);

128+

const extracted = extractLevelDirective(body, VERBOSE_DIRECTIVE_PATTERN, normalizeVerboseLevel);

120129

return {

121130

cleaned: extracted.cleaned,

122131

verboseLevel: extracted.level,

@@ -134,7 +143,7 @@ export function extractTraceDirective(body?: string): {

134143

if (!body) {

135144

return { cleaned: "", hasDirective: false };

136145

}

137-

const extracted = extractLevelDirective(body, ["trace"], normalizeTraceLevel);

146+

const extracted = extractLevelDirective(body, TRACE_DIRECTIVE_PATTERN, normalizeTraceLevel);

138147

return {

139148

cleaned: extracted.cleaned,

140149

traceLevel: extracted.level,

@@ -152,7 +161,7 @@ export function extractFastDirective(body?: string): {

152161

if (!body) {

153162

return { cleaned: "", hasDirective: false };

154163

}

155-

const extracted = extractLevelDirective(body, ["fast"], normalizeFastMode);

164+

const extracted = extractLevelDirective(body, FAST_DIRECTIVE_PATTERN, normalizeFastMode);

156165

return {

157166

cleaned: extracted.cleaned,

158167

fastMode: extracted.level,

@@ -170,7 +179,7 @@ export function extractElevatedDirective(body?: string): {

170179

if (!body) {

171180

return { cleaned: "", hasDirective: false };

172181

}

173-

const extracted = extractLevelDirective(body, ["elevated", "elev"], normalizeElevatedLevel);

182+

const extracted = extractLevelDirective(body, ELEVATED_DIRECTIVE_PATTERN, normalizeElevatedLevel);

174183

return {

175184

cleaned: extracted.cleaned,

176185

elevatedLevel: extracted.level,

@@ -188,7 +197,11 @@ export function extractReasoningDirective(body?: string): {

188197

if (!body) {

189198

return { cleaned: "", hasDirective: false };

190199

}

191-

const extracted = extractLevelDirective(body, ["reasoning", "reason"], normalizeReasoningLevel);

200+

const extracted = extractLevelDirective(

201+

body,

202+

REASONING_DIRECTIVE_PATTERN,

203+

normalizeReasoningLevel,

204+

);

192205

return {

193206

cleaned: extracted.cleaned,

194207

reasoningLevel: extracted.level,

@@ -204,7 +217,7 @@ export function extractStatusDirective(body?: string): {

204217

if (!body) {

205218

return { cleaned: "", hasDirective: false };

206219

}

207-

return extractSimpleDirective(body, ["status"]);

220+

return extractSimpleDirective(body, STATUS_DIRECTIVE_PATTERN);

208221

}

209222210223

export type { ElevatedLevel, NoticeLevel, ReasoningLevel, ThinkLevel, TraceLevel, VerboseLevel };