Conversation
…execution Add a complete plugin for interacting with ComfyUI servers: - nodes: list all registered node types - node-info: detailed definition of a node (inputs, types, defaults) - search-node: search nodes by keyword - models: list available model files - system-stats: server status and system information - run: execute workflows via JSON prompt - queue: view running/pending queue status - history: view execution history Configurable via COMFYUI_HOST environment variable. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 4d2fcc29df
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| @@ -0,0 +1,26 @@ | |||
| import { cli, Strategy } from '../../registry.js'; | |||
There was a problem hiding this comment.
Import registry via package export path
This adapter imports ../../registry.js, but that path does not exist in either the repo root or built package layout (the registry is exported as @jackwener/opencli/registry), so module loading fails with ERR_MODULE_NOT_FOUND when discovery imports the file and the comfyui commands are never registered.
Useful? React with 👍 / 👎.
| @@ -0,0 +1,48 @@ | |||
| import { cli, Strategy } from '../../registry.js'; | |||
There was a problem hiding this comment.
Keep built-in adapters as TS sources
This new built-in command is added as a .js file under clis/, but the build pipeline compiles clis/**/*.ts and publishes from dist/clis; without a copy step for source .js adapters, the generated manifest can reference dist/clis/comfyui/*.js files that are not emitted, causing opencli comfyui ... commands to fail in installed builds.
Useful? React with 👍 / 👎.
Add browser adapter doc for ComfyUI with commands table, usage examples, and configuration instructions. Register in VitePress sidebar. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Summary
comfyui/plugin to manage ComfyUI servers from the CLICOMFYUI_HOSTenvironment variable (default:http://127.0.0.1:8188)ComfyUI API Endpoints Used
/api/object_info/api/models/api/models/<type>/api/system_stats/prompt/api/queue/api/historyTest plan
COMFYUI_HOSTenv var correctly configures server address