Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FireConnect

License: Apache 2.0

Use Fireworks AI models in Claude Code, OpenCode, Codex, Pi, Cursor, VS Code, and Deep Agents.

One CLI points your existing AI coding tools at Fireworks. on rewrites the tool's own config, off restores your original file byte-for-byte — no proxy to run, no wrapper to launch.

Contents: Quick start · Supported harnesses · Default models · Claude Code · Codex · OpenCode · Pi · Cursor · VS Code Chat · Deep Agents · FireRouter · Models · Azure / Foundry · CLI reference · Keys and storage · Troubleshooting · Upgrade and uninstall

Quick start

1. Install

sh -c "$(curl -fsSL https://raw.githubusercontent.com/fw-ai/fireconnect/main/install.sh)"

2. Sign in

fireconnect login        # browser sign-in, or paste a fw_… / fpk_… key

3. Connect a harness

fireconnect claude on    # first run opens the model mapping wizard
✓ Claude Code → Fireworks
Model mapping
  Fable     → kimi-fast-latest
  Main      → firerouter
  Opus      → glm-fast-latest
  Sonnet    → glm-fast-latest
  Haiku     → deepseek-v4-flash
  Subagents → deepseek-v4-flash

✓ Web search → fireworks-websearch (installed)

Restart Claude Code to use the new setup.

4. Restart the tool, then verify

fireconnect claude status
Claude Code
Connection: on
Provider: Fireworks
Auth: custom header in settings.json

Model mapping:
  main     -> firerouter
  opus     -> glm-fast-latest  $2.1 / $6.6 · text-only
  fable    -> kimi-fast-latest  $4.5 / $22.5 · vision

Swap claude for any harness: opencode, codex, pi, cursor, vscode, deepagents. Run fireconnect help or fireconnect <harness> help for every option.

Install notes

  • Requires Node.js 18+. Missing or too old: installed via Homebrew on macOS, otherwise the installer prints nvm / nodejs.org / NodeSource instructions.
  • Clones the CLI to ~/.fireconnect/cli, installs the launcher into ~/.local/bin, and adds it to your shell PATH.
  • Runs the same finalize as fireconnect upgrade (reprobe secret storage; rebake enabled harness keys and the Claude websearch MCP Bearer token).
  • Does not sign you in or touch harness settings — that's steps 2 and 3.

Windows: run from Git Bash. Piping curl | bash in PowerShell corrupts line endings (set: pipefail\r: invalid option name); keep the pipe inside bash:

bash -c "curl -fsSL https://raw.githubusercontent.com/fw-ai/fireconnect/main/install.sh | bash"

From an SSH checkout:

mkdir -p ~/.fireconnect && git clone git@github.com:fw-ai/fireconnect.git ~/.fireconnect && bash ~/.fireconnect/install.sh

Supported harnesses

Harness Command Config it writes Key storage Before on / off
Claude Code fireconnect claude ~/.claude/settings.json Baked header literal (0600) Restart after
Codex fireconnect codex ~/.codex/config.toml Baked bearer literal (0600) Restart after
OpenCode fireconnect opencode ~/.config/opencode/opencode.json Baked literal (0600) Restart after
Pi fireconnect pi ~/.pi/agent/{settings,models,auth}.json Baked literal (0600) Restart after
Cursor fireconnect cursor state.vscdb (SQLite) IDE safeStorage Quit Cursor first
VS Code Chat fireconnect vscode chatLanguageModels.json + state.vscdb IDE safeStorage Quit VS Code first
Deep Agents fireconnect deepagents ~/.deepagents/config.toml Baked literal (0600) Restart dcode after

Every harness supports on, off, status, and help. off restores your pre-connect configuration — file-based harnesses byte-for-byte from a snapshot under ~/.fireconnect/, and the IDEs by removing only what FireConnect registered.

Default models

Slot / harness Default
Claude main firerouter on first connect when FireRouter auth is available; otherwise kimi-fast-latest
Claude opus, sonnet glm-fast-latest
Claude fable kimi-fast-latest
Claude haiku, subagent deepseek-v4-flash
OpenCode, Codex, Pi, Cursor, VS Code, Deep Agents kimi-fast-latest
Fire Pass (fpk_...) kimi-fast-latest everywhere

Fire Pass keys are detected automatically — no flags needed. Saved Claude mappings are key-scoped (Fireworks vs Fire Pass) and silently restored after claude offclaude on. Override anytime with flags or the wizard.

Claude Code

fireconnect claude on                    # wizard on first setup; flags work anytime
fireconnect claude on --interactive      # reopen the model mapping wizard
fireconnect claude status                # mapping, auth, and per-slot rates
fireconnect claude usage                 # estimate cost from a session log
fireconnect claude off

Settings apply per session: to pick up a new mapping, exit and resume with claude --resume <id>, or start a new session.

Model mapping

Claude Code has six model slots. FireConnect owns the mapping and prints it after every successful activation. Configure it three ways:

# 1. Interactive wizard — first connect, or anytime
fireconnect claude on --interactive

# 2. Slot flags — scriptable, combine freely
fireconnect claude on --model kimi-fast-latest
fireconnect claude on --opus glm-fast-latest --sonnet glm-fast-latest
fireconnect claude on --haiku deepseek-v4-flash --subagent deepseek-v4-flash

# 3. Saved prefs / defaults, no prompts — CI and scripts
fireconnect claude on --non-interactive

--interactive opens the wizard at any time, not just on first connect. It is Fable-first, toggles between the recommended fast profile and a non-fast profile, and needs a terminal — use the flags above in CI.

Flag Writes
--model top-level model (Claude's main / the /model "Default" row)
--opus, --sonnet, --haiku, --fable matching ANTHROPIC_DEFAULT_*_MODEL
--subagent CLAUDE_CODE_SUBAGENT_MODEL

Slots are independent — --opus firerouter changes only Opus and leaves main alone. Re-running fireconnect claude on without model flags preserves the current main when FireConnect is already active (including /model changes made inside Claude Code), and otherwise restores your saved key-scoped mapping.

What gets written

Claude authenticates with a static X-Fireworks-Api-Key custom header (ANTHROPIC_CUSTOM_HEADERS), not apiKeyHelper. The main model lives in the top-level model field:

{
  "model": "kimi-fast-latest",
  "env": {
    "ANTHROPIC_BASE_URL": "https://api.fireworks.ai/inference",
    "ANTHROPIC_DEFAULT_OPUS_MODEL": "glm-fast-latest[1m]",
    "ANTHROPIC_DEFAULT_SONNET_MODEL": "glm-fast-latest[1m]",
    "ANTHROPIC_DEFAULT_HAIKU_MODEL": "deepseek-v4-flash",
    "ANTHROPIC_DEFAULT_FABLE_MODEL": "kimi-fast-latest",
    "CLAUDE_CODE_SUBAGENT_MODEL": "deepseek-v4-flash",
    "ANTHROPIC_CUSTOM_HEADERS": "X-Fireworks-Api-Key: fw_..."
  }
}

When FireRouter is auto-selected on first connect, model is firerouter[1m] instead.

Why the custom header? The gateway authenticates via X-Fireworks-Api-Key, which wins over any x-api-key / Authorization a stray ANTHROPIC_API_KEY / ANTHROPIC_AUTH_TOKEN would send — so a leftover Anthropic key can't silently break routing. The trade-off is a plaintext Fireworks key in settings.json (mode 0600); the OS keychain stays the source of truth for key export and other harnesses. FireConnect keeps a byte-for-byte backup for off, and pre-approves a stray ANTHROPIC_API_KEY in ~/.claude.json so Claude Code doesn't prompt on first launch.

on also:

  • Adds WebSearch / WebFetch to permissions.deny — Anthropic server-side tools the gateway can't run. Your own rules are preserved; the deny entries are removed on off. If your account is entitled to Fireworks web search, a fireworks-websearch MCP server is installed as the working replacement, with Authorization: Bearer <key> baked into ~/.claude.json (same shape as claude mcp add --header).
  • Sends privacy-safe attribution headers where the harness supports them: X-Title: <harness> and HTTP-Referer: fireconnect/v<version>. User-Agent is never overridden, and these carry no user, account, path, repo, prompt, session, or credential data. Cursor and Deep Agents expose no custom-header surface, so they skip attribution.

Model IDs and [1m]. Short slugs are accepted everywhere and canonical accounts/fireworks/... IDs are shortened before write. The [1m] suffix is applied per model ID, not per slot, to Claude's 1M-context set: glm-latest, glm-fast-latest, glm-5p2, glm-5p2-fast, deepseek-v4-pro, and firerouter. Kimi stays unsuffixed. CLAUDE_CODE_SUBAGENT_MODEL never gets [1m] — Claude Code forwards that value verbatim.

Text-only models and images

Claude Code has no way to mark a model as non-vision. Pasting or attaching an image while a text-only slot is active can break the session — recover with /rewind. Activation prints a one-line warning:

Text-only: deepseek-v4-flash, glm-fast-latest · Avoid images; recover with /rewind.

The wizard and fireconnect claude status label every model vision or text-only.

Pricing estimates

Claude Code's /model picker and session cost estimates use Anthropic list prices, while Fireworks bills at serverless rates — the in-app estimate can look far higher than your real bill. Use fireconnect claude status and fireconnect model list for Fireworks rates, check serverless pricing, and see the billing dashboard for actual spend.

Codex

Routes OpenAI Codex CLI through Fireworks via the Responses API.

fireconnect codex on                    # writes ~/.codex/config.toml
fireconnect codex status
fireconnect codex on --model glm-5p1    # switch model
fireconnect codex off
  • Sets root model_provider / model for Codex 0.134+ (short slug) and adds a [model_providers.fireworks-ai] block with wire_api = "responses" and a baked experimental_bearer_token literal (mode 0600). No shell hook needed.
  • Writes the preferred serverless catalog to ~/.codex/fireworks-model-catalog.json and points Codex at it via model_catalog_json (latest aliases preferred; embeddings, no-tool, and deprecated models filtered out). off removes the file and reference.
  • Preserves unrelated settings (for example [[mcp_servers]]) via surgical TOML edits, and on off reconciles the shell hook when nothing else needs FIREWORKS_API_KEY.

MiniMax is not supported on Codex. Codex may insert assistant messages between tool_calls and tool_results, which MiniMax chat templates reject. FireConnect fails codex on --model minimax-m3 with an explanation. Use MiniMax on a Chat Completions harness such as Claude Code or OpenCode.

config.toml updates immediately; exit Codex and codex resume <id> (or start a new session) to pick up the change. Use --config-path <path> for a non-default config.

OpenCode

Routes OpenCode through Fireworks.

fireconnect opencode on
fireconnect opencode status
fireconnect opencode on --model glm-5p1
fireconnect opencode off
  • Merges a provider.fireworks-ai block into ~/.config/opencode/opencode.json, sets the default model to fireworks-ai/<slug>, and keys provider models by short slug. options.apiKey is a baked plaintext literal (mode 0600).
  • Registers the preferred serverless catalog in the provider's models for OpenCode's /model picker, falling back to the active model when the catalog can't be fetched (offline).

Use --config-path <path> for a non-default config.

Pi

Routes Pi through Fireworks.

fireconnect pi on
fireconnect pi status
fireconnect pi on --model glm-5p1
fireconnect pi off
  • Sets defaultProvider / defaultModel in ~/.pi/agent/settings.json and stores a baked plaintext literal in fireworks.key (auth.json, mode 0600). on applies kimi-fast-latest unless you pass --model.
  • Registers the preferred serverless catalog in ~/.pi/agent/models.json for Pi's /model picker. Managed IDs are short slugs, and each gets a complete models entry so Pi keeps context, pricing, reasoning, and vision metadata. Falls back to the bundled router set offline.
  • Snapshots and restores all three files (settings.json, auth.json, models.json).

Use --settings-path <path> for a non-default settings file.

Cursor

Cursor stores AI settings in SQLite (state.vscdb), so FireConnect writes there directly:

Setting Key
API key cursorAuth/openAIKey
Base URL openAIBaseUrlhttps://api.fireworks.ai/inference/v1
Custom models aiSettings.userAddedModels + aiSettings.modelOverrideEnabled
Per-mode model aiSettings.modelConfig[mode] (e.g. composer, cmd-k)
fireconnect cursor on --api-key fw_...   # quit Cursor first
fireconnect cursor status                # read-only; safe while Cursor is open
fireconnect cursor on --model glm-fast-latest
fireconnect cursor off

cursor on --model <id> registers the model and sets every mode that already exists in modelConfig — it won't create modes you don't have. Direct Fireworks IDs are stored as short slugs; legacy canonical entries migrate on the next on.

Quit Cursor (Cmd-Q / File > Quit) before on or off. Otherwise Cursor's in-memory state overwrites the write on its next flush. In an interactive terminal FireConnect asks you to quit and press Enter, then errors if Cursor is still running. --force writes anyway.

While FireConnect is on, only Fireworks models in your picker work — Cursor subscription models, Opus modes, and other built-ins won't respond. fireconnect cursor off restores them, and only removes models FireConnect registered.

VS Code Chat

FireConnect adds a Fireworks provider to chatLanguageModels.json (vendor customendpoint, apiType: responses) pointing at https://api.fireworks.ai/inference — VS Code appends /v1/responses. Azure/Foundry mode uses apiType: chat-completions.

fireconnect vscode on --api-key fw_...    # quit VS Code first
fireconnect vscode status                 # read-only; safe while VS Code is open
fireconnect vscode on --model deepseek-v4-flash
fireconnect vscode off

The API key is not in the JSON: VS Code resolves ${input:chat.lm.secret.<id>} through Electron safeStorage in its application-scoped state.vscdb. on writes both the provider entry and the encrypted key under a chat.lm.secret.fw-* id. Same quit / --force rules as Cursor.

safeStorage by platform:

  • macOS — master key in the login Keychain (<App> Safe Storage); open VS Code once first. Insiders is auto-detected (Code - Insiders Safe Storage).
  • Windows — AES-256-GCM with a DPAPI-protected key in VS Code's Local State.
  • Linux — needs libsecret (secret-tool) for real encryption. Without it Chromium falls back to a hardcoded password (obfuscated, not encrypted); FireConnect still writes and warns.

off restores chatLanguageModels.json byte-for-byte and deletes the chat.lm.secret.fw-* row; providers you configured yourself are preserved.

Per-model toolCalling / vision / token limits live in packages/setup-cli/lib/fireworks/model-specs.mjs. Unmapped models default to toolCalling: true, vision: false, with limits omitted until the model is added.

Deep Agents

Routes LangChain Deep Agents Code (dcode) through Fireworks.

fireconnect deepagents on
fireconnect deepagents status
fireconnect deepagents on --model glm-5p1
fireconnect deepagents off
  • Sets [models].default to fireworks:<slug> and configures [models.providers.fireworks] in ~/.deepagents/config.toml with the Fireworks OpenAI-compatible base URL and a baked api_key literal (mode 0600).
  • Bakes the key from the FireConnect keychain (login or deepagents on --api-key). It does not write ~/.deepagents/.state/auth.json — use dcode's /auth for that file.

Use --config-path <path> for a non-default config.

FireRouter

FireRouter is a judge-model router: simpler requests go to cheaper models, harder ones pass through. It's a normal firerouter model on the Fireworks gateway — not a separate mode. Select it like any other model.

fireconnect <harness> on --model firerouter   # any harness
fireconnect claude on --opus firerouter       # or a single Claude slot
Keys Standard Fireworks (fw_...) only — not Fire Pass
Catalog Always in fireconnect model list for a standard key
Pickers Auto-included with workspace BYOK (enable-workspace-byok), or a forwardable sk-ant-... ANTHROPIC_API_KEY on harnesses that can attach one
Auto default Claude Code main only — first connect, FireRouter auth present, no explicit model flags
No Anthropic key Still routes among Fireworks models

BYOK for Anthropic frontier models. With workspace BYOK, your Anthropic key is used server-side — no extra flags. Otherwise pass --anthropic-api-key sk-ant-... (or export ANTHROPIC_API_KEY) on a harness that can forward it. OpenAI BYOK is not supported.

Harness Local Anthropic BYOK --routing-preference Notes
Claude Code Header value Yes Fireworks header still wins for gateway auth; only harness that can auto-default main
OpenCode Header value Yes on --model firerouter registers only that model
Pi Header value Yes Same Fireworks provider as other Pi models
VS Code Header value Yes Same provider (apiType: responses)
Codex ANTHROPIC_API_KEY env reference No Export the key, or use workspace BYOK
Cursor Workspace BYOK only No Override UI can't attach a local Anthropic key
Deep Agents Workspace BYOK only No Same BYOK shape as Cursor

Tune the cost/quality tradeoff where supported:

fireconnect claude on --opus firerouter --routing-preference balanced
# max-intelligence (1) · more-intelligence (2) · balanced (3) · more-savings (4) · max-savings (5)

The old --router flag is retired — use --model firerouter or a Claude slot flag.

More detail: FireRouter overview.

Models

fireconnect model list
fireconnect model list --search glm
fireconnect model list --json

Fetches coding-tagged serverless models (GET /v1/serverless/models?use_cases=coding), adds the per-model fast routers the API reports, and merges version-tracking aliases whose targets are present: glm-latest, glm-fast-latest, kimi-latest, kimi-fast-latest, minimax-latest, qwen-plus-latest. Every row is tagged serverless.

Key resolution order: --api-keyFIREWORKS_API_KEY → stored credential. Standard keys include firerouter; Fire Pass keys show only Fire Pass-supported routers (glm-latest, glm-fast-latest, glm-5p2-fast, kimi-fast-latest, kimi-k2p7-code-fast).

Command Shows
fireconnect claude status Provider, auth, alias mapping, Fireworks rates per slot
fireconnect model list Serverless catalog with IN / OUT pricing where known

Short IDs and canonical accounts/fireworks/... IDs both work; non-Claude harnesses store short slugs and migrate legacy canonical configs on the next on. Not sure what to pick? Start from the defaults, browse fireconnect model list, or run fireconnect claude on --interactive. Foundry (Azure) uses deployment names instead — see Azure.

Azure (Microsoft Foundry) endpoints

Fireworks models are also first-party models inside Microsoft Foundry, billed through Azure and counting toward your MACC. Foundry exposes an OpenAI-compatible endpoint, so OpenCode, Codex, Pi, Deep Agents, Cursor, and VS Code can route there instead of the Fireworks gateway.

Configure once, then <harness> on uses it — no per-command flags:

fireconnect configure --provider azure \
  --base-url https://<resource>.services.ai.azure.com \
  --api-key <azure-api-key>

fireconnect opencode on   # routes through the configured Foundry endpoint
fireconnect codex on

configure stores a top-level provider and azure endpoint in ~/.fireconnect/config.json. Switch back with fireconnect configure --provider fireworks .... You can also opt in per command (or override the configured endpoint) with --azure:

fireconnect opencode on --azure --base-url https://<resource>.services.ai.azure.com \
  --api-key <azure-api-key> --model FW-GLM-5.2
  • Endpoint. FireConnect normalizes whatever you paste — bare resource root, portal project endpoint (.../api/projects/<name>), or the /models route — to https://<resource>.services.ai.azure.com/openai/v1. Find it in the Foundry portal under Project settings.
  • Auth. Use your Azure API key (not fw_/fpk_). --api-key writes it literally; exporting AZURE_API_KEY writes an environment reference instead.
  • Model. The id is your Foundry deployment name — the catalog model name without the fireworks-ai/ prefix (e.g. FW-GLM-5.2, FW-MiniMax-M2.5). Defaults to FW-GLM-5.2.
  • Isolation. Each harness writes a dedicated fireworks-azure provider separate from the Fireworks gateway; off restores byte-for-byte and switching modes replaces it cleanly.
Harness Writes Provider
OpenCode provider.fireworks-azure in opencode.json (@ai-sdk/openai-compatible, options.baseURL + options.apiKey) fireworks-azure/<deployment>
Codex [model_providers.fireworks-azure] in config.toml (wire_api = "chat", bearer or env_key = "AZURE_API_KEY") fireworks-azure
Pi custom openai-completions provider in models.json (baseUrl, authHeader, apiKey literal or $AZURE_API_KEY) + defaultProvider in settings.json fireworks-azure
Deep Agents [models.providers.fireworks-azure] in config.toml fireworks-azure:<deployment>
Cursor OpenAI-compatible URL, deployment, and key in state.vscdb <deployment>
VS Code custom endpoint model in chatLanguageModels.json; key in safeStorage <deployment>

fireconnect <harness> status reports azure as the provider with the endpoint and model.

Claude Code is intentionally excluded: it speaks the Anthropic Messages API, which Foundry does not expose. model list reads the Fireworks catalog and isn't used in Azure mode — select a deployment with --model.

CLI reference

Harness-first: fireconnect <harness> <command>, plus a few global commands.

Per harness (claude, opencode, codex, pi, cursor, vscode, deepagents)

fireconnect <harness> on           Route the harness through Fireworks (default if no command).
fireconnect <harness> off          Restore your previous provider/config.
fireconnect <harness> status       Show the provider, auth, and model mapping.
fireconnect <harness> help         Show help for that harness.

All model changes go through <harness> on. Claude adds fireconnect claude usage.

Global

fireconnect login                  Sign in — browser (creates a key) or paste a key you have.
fireconnect logout                 Clear the stored key (keychain entry + config ref).
fireconnect status                 Show sign-in state, machine environment, and key storage.
fireconnect model list             Browse the serverless catalog.
fireconnect configure              Set the provider (Azure/Foundry) and the Anthropic key.
fireconnect demo                   Race your provider vs Fireworks GLM 5.2 Fast on the same prompt.
fireconnect upgrade                Update FireConnect.
fireconnect uninstall              Disable + restore all harnesses, then remove FireConnect.
fireconnect --version              Print the installed CLI version (-V; --json for machine-readable).
fireconnect help                   Show help.

login asks one question: create an API key for this machine, or paste one you already have. Create opens the browser, mints fireconnect-{hostname}, and stores it in the OS keychain — confirming the account and where the key went. Paste masks input, validates live, and stores only on success. --paste skips the chooser; --with-token reads from stdin (CI).

logout removes the local key and offers to revoke the machine key server-side (--revoke / --keep-key skip the question). You don't have to start with loginfireconnect claude on runs the same sign-in inline when a key is needed.

Keys and storage

  • ~/.fireconnect/config.json holds a reference ({keychain:fireworks-api-key}), never a literal key. Legacy installs may still have {env:FIREWORKS_API_KEY}.
  • The key itself lives in the OS keychain, or an encrypted-file / plaintext fallback tier when no secret service is available (fireconnect status reports which).
  • Harness configs hold baked literals for Claude's custom header, Codex, OpenCode, Pi, and Deep Agents; Cursor and VS Code use IDE safeStorage.
  • Claude websearch MCP no longer uses a shell hook — the Bearer token is baked into ~/.claude.json. Re-running install.sh or fireconnect upgrade shares one finalize path that rebakes enabled harness configs (and any existing websearch entry) to literals, including legacy env-reference auth left on disk.

FIREWORKS_API_KEY interaction. The env var and FireConnect-managed storage are mutually exclusive for login and other explicit store paths. When it's set, login verifies and uses it without copying it into the secret store, and combining login with a key-storing option (--api-key, --with-token, browser, paste) fails before anything changes — unset the variable first. <harness> on may still read it, persist it, and bake it into that harness's config.

Troubleshooting

Symptom Fix
Tool still uses the old model or provider Fully restart the harness. In Claude Code, exit and claude --resume <id> — settings apply per session.
Cursor / VS Code changes don't stick Quit the IDE (Cmd-Q) before on/off; the running app flushes its own state over yours.
Only Fireworks models respond in Cursor Expected while FireConnect is on. fireconnect cursor off restores built-in models.
Claude session breaks after pasting an image A text-only slot was active. /rewind, then map that slot to a vision model.
Claude Code shows a scary cost estimate It uses Anthropic list prices. Check fireconnect claude status for real Fireworks rates.
firerouter missing from a picker Needs workspace BYOK or a forwardable ANTHROPIC_API_KEY; otherwise select it explicitly with on --model firerouter. Not available on Fire Pass keys.
login fails with a key-storage conflict FIREWORKS_API_KEY is set. Unset it to let FireConnect store a key.
/model picker ignores your main model A legacy env.ANTHROPIC_MODEL is overriding it — re-run fireconnect claude on once to migrate.
PowerShell install fails (set: pipefail\r) Install from Git Bash.
Linux warns the key isn't encrypted Install libsecret (secret-tool); Chromium's fallback is obfuscation, not encryption.
Something else fireconnect status shows sign-in, environment, storage tier, and every harness's state.

Upgrade and uninstall

fireconnect upgrade
# or re-run the installer:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/fw-ai/fireconnect/main/install.sh)"

Interactive terminals also offer an upgrade prompt when a newer version is cached (Upgrade now?); declining snoozes it for a day.

Upgrading from before 0.9.0 with Claude Code connected asks before temporarily restoring your original settings, then tells you to reconnect with fireconnect claude on. From 0.9.0 onward, reinstall and upgrade leave harness settings alone. Other harness settings and your stored API key are preserved either way.

fireconnect uninstall    # restores every harness, then removes ~/.fireconnect and the launcher

About

CLI to use Fireworks AI models in Claude Code, Codex, OpenCode, Pi, and other coding agents.

Resources

Stars

38 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages