Nothing to try yet Notable
No documentation found
New plugin API method ui.panes lets plugins list their own UI panels, with no permission check
What
A new method, ui.panes, was added to the plugin runtime API. It returns the list of UI panes (panels) that belong to the calling plugin, including each pane's id, title, and whether it's shown, focused, or placed. The plugin SDK now exposes this as panes(). Unlike the similar ui.open, ui.close, ui.scroll, and ui.focus methods, ui.panes has no permission check attached to it.
Why
This gives plugin authors a way to inspect their own panes' state, though nothing else in Claude Code currently calls it, so its practical use isn't yet visible.
Names in the bundleui.panes
Something disagreesSomething we can check disagrees with this entry, or the writer said they could not settle it.
The writer flagged doubt
The finding shows the method wired into the dispatch table and SDK but not called elsewhere, so what a plugin author would use it for in…