Install CLI Providers
Pixflow Design can use Local CLI providers detected by the bridge.
Supported agents depend on what is installed on the user’s machine and available on PATH.
Install from Pixflow
Section titled “Install from Pixflow”The easiest way to find provider instructions is inside Pixflow Design:
- Open the Pixflow settings modal.
- Go to Execution mode.
- Find the provider you want to use.
- Click the provider’s install icon or install button.
- Follow the provider-specific instructions shown by Pixflow.
- Restart the Pixflow Local CLI Bridge if the provider was installed while the bridge was already running.
- Click Rescan.
Use this route first because provider install commands can change over time.
Codex example
Section titled “Codex example”Codex is OpenAI’s coding agent CLI.
On macOS or Linux, OpenAI’s installer command is:
curl -fsSL https://chatgpt.com/codex/install.sh | shOn Windows PowerShell:
powershell -ExecutionPolicy ByPass -c "irm https://chatgpt.com/codex/install.ps1 | iex"Codex can also be installed with npm:
npm install -g @openai/codexAfter installing, open a new terminal and run:
codex --versionIf the command works in your terminal, restart the Pixflow bridge and click Rescan in Pixflow.
Claude example
Section titled “Claude example”Claude Code is Anthropic’s coding agent CLI.
Claude Code can be installed with npm:
npm install -g @anthropic-ai/claude-codeTo upgrade an npm installation:
npm install -g @anthropic-ai/claude-code@latestAfter installing, open a new terminal and run:
claude --versionIf the command works in your terminal, restart the Pixflow bridge and click Rescan in Pixflow.
Choosing a provider
Section titled “Choosing a provider”After at least one provider is installed:
- Open Pixflow settings.
- Go to Execution mode.
- Select Local CLI.
- Choose the provider and model.
- Click Rescan if the provider does not appear.
You can also use the provider switcher in the workspace or floating panel.
No CLI detected
Section titled “No CLI detected”If Pixflow says no CLI is detected:
- Open a normal terminal.
- Run the CLI directly, such as
codexorclaude. - If the terminal cannot find it, install the CLI or fix your
PATH. - Restart the Pixflow bridge.
- Click Rescan in Pixflow.