What problem does it solve? When a planner receives a ComfyUI request that does not map to any bundled capability-Skill goal, it has no grounded recipe to act on. This Skill retrieves matching workflow recipes from local templates and trusted web domains, then ranks them conservatively so the planner never anchors on a low-confidence result. ## Core Features & Use Cases - Local template search: Greps bundled Skill templates and reference folders for keyword matches, tagging hits with trust_tier "bundled" and the capability goal needed for deterministic planner routing. - Allowlisted web search: Fetches DuckDuckGo HTML results via stdlib urllib, filters them against policies/search_allowlist.yaml, and stamps each hit with trust_tier "web_trusted" and an ISO 8601 retrieved_at timestamp. - Conservative ranking: Merges local and web results, prefers bundled sources, and returns an empty list when the top score falls below the 0.3 threshold so callers fall back to asking the user. - Use Case: A user asks for an unfamiliar ComfyUI effect; the planner invokes this Skill, finds no confident recipe, and safely asks the user for clarification instead of guessing. ## Quick Start Ask the agent to search for a ComfyUI workflow recipe matching your request, for example by saying "search for a ComfyUI recipe for inpainting a masked region".