Skip to content
Community Get full access

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.

The easiest way to find provider instructions is inside Pixflow Design:

  1. Open the Pixflow settings modal.
  2. Go to Execution mode.
  3. Find the provider you want to use.
  4. Click the provider’s install icon or install button.
  5. Follow the provider-specific instructions shown by Pixflow.
  6. Restart the Pixflow Local CLI Bridge if the provider was installed while the bridge was already running.
  7. Click Rescan.

Use this route first because provider install commands can change over time.

Codex is OpenAI’s coding agent CLI.

On macOS or Linux, OpenAI’s installer command is:

Terminal window
curl -fsSL https://chatgpt.com/codex/install.sh | sh

On Windows PowerShell:

Terminal window
powershell -ExecutionPolicy ByPass -c "irm https://chatgpt.com/codex/install.ps1 | iex"

Codex can also be installed with npm:

Terminal window
npm install -g @openai/codex

After installing, open a new terminal and run:

Terminal window
codex --version

If the command works in your terminal, restart the Pixflow bridge and click Rescan in Pixflow.

Claude Code is Anthropic’s coding agent CLI.

Claude Code can be installed with npm:

Terminal window
npm install -g @anthropic-ai/claude-code

To upgrade an npm installation:

Terminal window
npm install -g @anthropic-ai/claude-code@latest

After installing, open a new terminal and run:

Terminal window
claude --version

If the command works in your terminal, restart the Pixflow bridge and click Rescan in Pixflow.

After at least one provider is installed:

  1. Open Pixflow settings.
  2. Go to Execution mode.
  3. Select Local CLI.
  4. Choose the provider and model.
  5. Click Rescan if the provider does not appear.

You can also use the provider switcher in the workspace or floating panel.

If Pixflow says no CLI is detected:

  1. Open a normal terminal.
  2. Run the CLI directly, such as codex or claude.
  3. If the terminal cannot find it, install the CLI or fix your PATH.
  4. Restart the Pixflow bridge.
  5. Click Rescan in Pixflow.