comfyui-mcp 0.52.97 → 0.52.98

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12049,7 +12049,7 @@ export const __panelAskTestHooks = {
12049
12049
  *
12050
12050
  * `.strict()` turns that into a validation error the caller can see and correct,
12051
12051
  * which is the whole value for an LLM caller: a loud, specific failure ("Unrecognized
12052
- * key: X") is something a model can read and fix on the next attempt; a silent no-op
12052
+ * key 'X'") is something a model can read and fix on the next attempt; a silent no-op
12053
12053
  * is not distinguishable from "it worked but had no effect".
12054
12054
  *
12055
12055
  * #1969 — the refusal used to name the unknown key AND, separately, the missing
@@ -12060,6 +12060,11 @@ export const __panelAskTestHooks = {
12060
12060
  * model can recover without aliases (#1968) and without failed-then-corrected
12061
12061
  * training pairs.
12062
12062
  *
12063
+ * #2217 — and when nothing pairs (`panel_restart_comfyui {reason}`: not a
12064
+ * near-miss of `force`, and no required key to join), the same sentence states
12065
+ * the keys that ARE accepted rather than stopping at the name. Same principle,
12066
+ * the arm where the suggester has nothing to say.
12067
+ *
12063
12068
  * BOTH transports' registration functions accept this directly in place of the raw
12064
12069
  * shape (verified against each SDK's actual runtime behavior, not assumed from the
12065
12070
  * TypeScript types — see the cast note at the Anthropic SDK call site):