ワンクリックで
workflow-guardrails
Decision order and safety checks for user workflow requests to prevent hallucinated or invalid workflows.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Decision order and safety checks for user workflow requests to prevent hallucinated or invalid workflows.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Install ComfyUI Assistant as a ComfyUI custom node. Use when performing or troubleshooting installation (clone, Python deps, frontend build, restart).
For complex user requests — evaluate, investigate, ask questions, propose a plan, accept modifications, then execute. Use when the request is multi-step, ambiguous, or high-impact.
Workflow execution and complete workflow generation tools (executeWorkflow, applyWorkflowJson). Use when the user wants to run a workflow or build a complete workflow from a description.
Python backend modules, chat request lifecycle, SSE format, and API endpoints
System prompt assembly from system_context, user_context, and environment sources
Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan this feature, requirements for, spec out.
| name | workflow-guardrails |
| description | Decision order and safety checks for user workflow requests to prevent hallucinated or invalid workflows. |
When the user asks to create or provide a complete workflow, follow this exact decision order:
Do I already have a skill for this workflow?
Have I searched workflow templates and custom-node templates?
searchTemplates(query) with the model name, desired task, or related keywords before touching the canvas or building nodes manually.applyTemplate with the reported id, source, and package.searchNodeRegistry to confirm the package is installed, and tell the user which package to install if not.referencedModels and immediately call getAvailableModels() to compare; if models are missing, explain what to download.Am I confident I know how to build this workflow?
Check local ComfyUI_examples references first (use getExampleWorkflow).
titleTypeMap) as the primary lookup key.Search the web for a known workflow using webSearch.
fetchWebContent to verify and extract the workflow details.Validate requirements (nodes and models).
searchInstalledNodes and getAvailableModels.Apply the workflow with applyWorkflowJson.
addNode only when explicitly requested.