CLI for ComfyUI Code Search — search code across ComfyUI public repositories from your terminal.
bun install comfy-codesearch-cli# Search code (default command)
comfy-codesearch "repo:Comfy-Org/ComfyUI last_node_id"
# Explicit search command
comfy-codesearch search "video audio transcription"
# Limit results
comfy-codesearch search "python" --count 200
# Output as JSON
comfy-codesearch search "python" --format json
# Search repositories
comfy-codesearch repo "comfy"| Flag | Alias | Description |
|---|---|---|
--count <n> |
-c |
Max results (default: 100) |
--format <fmt> |
-f |
Output format: yaml (default) or json |
--help |
-h |
Show help |
Set CS_SERVICE to override the API endpoint (defaults to https://comfy-codesearch.vercel.app).
This CLI is also available as an AI agent skill. Once installed, your AI coding agent can search ComfyUI code on your behalf.
npx skills add Comfy-Org/comfy-codesearch-cliYour AI agent will be able to search code across ComfyUI repositories using comfy-codesearch — useful for finding implementations, understanding APIs, and looking up patterns across the ComfyUI ecosystem.
MIT