You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- agentStore: useIDBKeyval is async; the previous code seeded `messages`
with an empty snapshot then enabled the write-back watcher immediately,
so any send before the IDB read settled would clobber stored history
with []. Gate the watcher on `persisted.isFinished` and merge the
hydrated entries when they arrive.
- FoldablePanel: dropping `/` from the shell-operator regex. The
attachment flow prefills the composer with paths like /input/foo.png,
and the previous regex routed those to direct exec instead of the LLM.
- coreutils grep: drain stdin eagerly so the no-match case can return
exit code 1. The previous generator-based version always returned 0,
breaking `grep ... && ...` and `grep ... || ...` decision flows the
agent relies on.
- registrySearch: stop advertising a non-existent `install-pack`
command. Direct the user to ComfyUI-Manager UI instead until a real
install-pack shell command exists.
- agentTerminal.spec: rewrite for the textarea-based panel; the old
`.xterm-rows` / `.xterm-helper-textarea` locators no longer resolve.
Drops the Tab-completion test (useCompletion was deleted) and adds a
Ctrl+O fold/unfold smoke test.
? `${packs.length} of ${total} pack(s) expose a node matching "${pattern}":\n`
71
-
: `${packs.length} pack(s) expose a node matching "${pattern}":\n`
70
+
? `${packs.length} of ${total} pack(s) expose a node matching "${pattern}". To install one, ask the user to use ComfyUI-Manager (Settings → Extensions) — there is no shell command for pack installs yet.\n`
71
+
: `${packs.length} pack(s) expose a node matching "${pattern}". To install one, ask the user to use ComfyUI-Manager (Settings → Extensions) — there is no shell command for pack installs yet.\n`
0 commit comments