Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.265 ·

Local slash-command execution unified and simplified

Local slash commands now run through one shared path and skip the dialog/panel host entirely

TierUnder the hoodhow much it should matter to you
Useful1my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaSlash Commandswhat it touches
KindInternal Changesin v2.1.265,
Group of 2 Under the hood

Local slash commands now run through one shared path and skip the dialog/panel host entirely

What

Running a local slash command and appending its result has been factored into one shared function, now used both for normal command invocation and for commands dispatched over a remote/bridge connection. Bridge-originated commands are tagged with dispatchedOverBridge: true so they can be distinguished.

Command dispatch now special-cases commands of type local to run directly through this shared path and log a tengu_immediate_command_executed telemetry event, without ever opening a panel or going through the dialog-host's JSX-building step. Only local-jsx commands (ones that render their own interactive UI) still go through the dialog-host path.

Why

This removes duplicated logic between direct and bridge-originated command execution and avoids unnecessary UI/panel overhead for plain local commands that don't need one.

See this entry in the whole of v2.1.265 →