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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
量子位
S
SegmentFault 最新的问题
博客园 - 聂微东
博客园 - 【当耐特】
J
Java Code Geeks
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
V
V2EX
人人都是产品经理
人人都是产品经理
博客园 - Franky
罗磊的独立博客
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
Apple Machine Learning Research
Apple Machine Learning Research

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
perf: trim tui startup and refresh work · openclaw/opencl...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

@@ -29,7 +29,6 @@ import {

2929

import { getSlashCommands } from "./commands.js";

3030

import { ChatLog } from "./components/chat-log.js";

3131

import { CustomEditor } from "./components/custom-editor.js";

32-

import { GatewayChatClient } from "./gateway-chat.js";

3332

import { resolveLocalRunShutdownGraceMs } from "./local-run-shutdown.js";

3433

import { editorTheme, theme } from "./theme/theme.js";

3534

import type { TuiBackend } from "./tui-backend.js";

@@ -522,6 +521,8 @@ export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

522521

let dynamicSlashCommandsKey: string | null = null;

523522

let dynamicSlashCommandsInFlightKey: string | null = null;

524523

let dynamicSlashCommandsRequestId = 0;

524+

let dynamicSlashCommandsReady = false;

525+

let dynamicSlashCommandsRefreshTimer: ReturnType<typeof setTimeout> | null = null;

525526

let lastCtrlCAt = 0;

526527

let exitRequested = false;

527528

let exitResult: TuiResult = { exitReason: "exit" };

@@ -714,6 +715,7 @@ export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

714715

const { EmbeddedTuiBackend } = await import("./embedded-backend.js");

715716

client = new EmbeddedTuiBackend();

716717

} else {

718+

const { GatewayChatClient } = await import("./gateway-chat.js");

717719

client = await GatewayChatClient.connect({

718720

url: opts.url,

719721

token: opts.token,

@@ -769,9 +771,19 @@ export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

769771

);

770772

};

771773774+

const clearDynamicSlashCommandsRefreshTimer = () => {

775+

if (!dynamicSlashCommandsRefreshTimer) {

776+

return;

777+

}

778+

clearTimeout(dynamicSlashCommandsRefreshTimer);

779+

dynamicSlashCommandsRefreshTimer = null;

780+

};

781+772782

const refreshDynamicSlashCommands = () => {

783+

clearDynamicSlashCommandsRefreshTimer();

773784

const key = resolveDynamicSlashCommandsKey();

774785

if (

786+

!dynamicSlashCommandsReady ||

775787

!isConnected ||

776788

!client.listCommands ||

777789

dynamicSlashCommandsKey === key ||

@@ -807,9 +819,21 @@ export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

807819

});

808820

};

809821822+

const scheduleDynamicSlashCommandsRefresh = () => {

823+

if (

824+

!dynamicSlashCommandsReady ||

825+

dynamicSlashCommandsRefreshTimer ||

826+

dynamicSlashCommandsKey === resolveDynamicSlashCommandsKey()

827+

) {

828+

return;

829+

}

830+

dynamicSlashCommandsRefreshTimer = setTimeout(refreshDynamicSlashCommands, 0);

831+

dynamicSlashCommandsRefreshTimer.unref?.();

832+

};

833+810834

const updateAutocompleteProvider = () => {

811835

applyAutocompleteProvider();

812-

refreshDynamicSlashCommands();

836+

scheduleDynamicSlashCommandsRefresh();

813837

};

814838815839

tui.addChild(root);

@@ -1474,6 +1498,8 @@ export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

14741498

4000,

14751499

);

14761500

tui.requestRender();

1501+

dynamicSlashCommandsReady = true;

1502+

scheduleDynamicSlashCommandsRefresh();

14771503

if (!autoMessageSent && autoMessage) {

14781504

autoMessageSent = true;

14791505

await sendMessage(autoMessage);

@@ -1494,6 +1520,8 @@ export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

14941520

dynamicSlashCommands = [];

14951521

dynamicSlashCommandsKey = null;

14961522

dynamicSlashCommandsInFlightKey = null;

1523+

dynamicSlashCommandsReady = false;

1524+

clearDynamicSlashCommandsRefreshTimer();

14971525

dynamicSlashCommandsRequestId += 1;

14981526

updateAutocompleteProvider();

14991527

pauseStreamingWatchdog();