openclaw/openclaw · error · Error
Comfy edit requests require plugins.entries.comfy.config.<ca
Error message
Comfy edit requests require plugins.entries.comfy.config.<capability>.inputImageNodeId to be configured
What it means
Error "Comfy edit requests require plugins.entries.comfy.config.<capability>.inputImageNodeId to be configured" thrown in openclaw/openclaw.
Source
Thrown at extensions/comfy/workflow-runtime.ts:746
"Content-Type": "application/json",
},
provider: "comfy",
capability: params.capability === "music" ? "audio" : params.capability,
transport: "http",
});
const normalizedBaseUrl =
normalizeBaseUrl(baseUrl) ||
(mode === "cloud" ? DEFAULT_COMFY_CLOUD_BASE_URL : DEFAULT_COMFY_LOCAL_BASE_URL);
const networkPolicy = resolveComfyNetworkPolicy({
baseUrl: normalizedBaseUrl,
allowPrivateNetwork,
explicitAllowPrivateNetwork,
mode,
});
if (params.inputImage) {
if (!inputImageNodeId) {
throw new Error(
"Comfy edit requests require plugins.entries.comfy.config.<capability>.inputImageNodeId to be configured",
);
}
const uploadedName = await uploadInputImage({
baseUrl: normalizedBaseUrl,
headers: new Headers(headers),
timeoutMs,
policy: networkPolicy.apiPolicy,
dispatcherPolicy,
image: params.inputImage,
mode,
capability: params.capability,
});
setWorkflowInput({
workflow,
nodeId: inputImageNodeId,
inputName: inputImageInputName,
value: uploadedName,View on GitHub (pinned to 01804a7531)
When it happens
Trigger: Thrown at extensions/comfy/workflow-runtime.ts:746 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of openclaw/openclaw@01804a7531 (2026-08-12).
Data as JSON: /api/errors/23bfc891760e1b88.
Report an issue: GitHub.