Skip to content

🛰️ SuperQode 0.2.14 — Grok 4.5, GPT‑5.6 (Sol · Terra · Luna) & Meta Muse Spark 1.1

Choose a tag to compare

@Shashikant86 Shashikant86 released this 10 Jul 23:57

SuperQode 0.2.14 adds support for Grok 4.5, the GPT-5.6 model family, and Meta Muse Spark 1.1. This release also
introduces model-name-based connections, Grok subscription routing through the SuperQode harness, improved Codex
CLI compatibility, and several TUI reliability fixes.

This release includes changes from versions 0.2.9 through 0.2.14.

📦 View on PyPI

New model support

Grok 4.5

SuperQode now supports the following xAI models:

  • grok-4.5: 500K context window, vision support, and configurable reasoning effort
  • grok-4.3: 1M context window
  • grok-build-0.1: optimized for coding workloads

Grok can be accessed through three routes:

:connect grok
:connect acp grok
:connect byok xai grok-4.5
  • :connect grok uses an eligible X or SuperGrok subscription with the SuperQode harness.
  • :connect acp grok runs the external Grok Build agent over ACP.
  • :connect byok xai grok-4.5 connects directly to the xAI API using XAI_API_KEY.

GPT-5.6

The live OpenAI model catalog now includes:

gpt-5.6
gpt-5.6-sol
gpt-5.6-terra
gpt-5.6-luna

These models can be used with an OpenAI API key or through a compatible Codex subscription. When a newer
standalone Codex CLI is installed, SuperQode uses it instead of the older app server bundled with the SDK. This
allows :codex models to display the models and reasoning-effort levels currently available to the account.

Meta Muse Spark 1.1

Meta Muse Spark 1.1 is now available through Meta's first-party, OpenAI-compatible API with a 1M context window.

export META_MODEL_API_KEY=...

Alternatively, store the key through SuperQode:

superqode auth login meta

Then connect from the TUI:

:connect muse-spark-1.1

Connect by model name

Models can now be connected without specifying a provider:

:connect gpt-5.6
:connect muse-spark-1.1
:connect grok-4.5

SuperQode resolves the provider from the model catalog and prefers first-party providers over gateway mirrors. If
a model has multiple distinct routes, such as direct API and subscription access, SuperQode displays the
available connection commands instead of selecting one automatically.

Improved model discovery

Model pickers now order entries by release date across:

  • BYOK provider catalogs
  • Codex account models
  • OpenCode models

Rolling -latest aliases remain available but no longer replace newer versioned models in the picker. Realtime
audio models are excluded from chat-model results.

Grok subscription routing

:connect grok imports the local session created by grok login into SuperQode's authentication store and runs
the SuperQode agent loop against the Grok CLI chat proxy.

This route retains SuperQode's:

  • Harness configuration
  • Tools
  • Memory
  • Agent loop

Requests include the required x-grok-client-version header. Grok Build ACP remains a separate connection mode
through:

:connect acp grok

Simple conversational prompts and model-identity questions now use the fast chat path without loading tool
schemas or scanning the repository.

Codex runtime compatibility

SuperQode now handles newer Codex configurations that use reasoning settings such as:

model_reasoning_effort = "ultra"

If the bundled Codex app server cannot parse the configured value, SuperQode retries with a process-local
compatible override. It does not modify ~/.codex/config.toml.

Additional Codex improvements include:

  • Clear configuration guidance when startup fails
  • Completion for all :codex subcommands
  • Completion for reasoning-effort values
  • Completion for cached model IDs
  • Support for the current account model catalog when a newer standalone Codex CLI is installed

TUI reliability improvements

  • Errors and setup guidance automatically scroll into view.
  • Tall feedback panels display from the heading on short terminals.
  • :quit works from wizards and pending agent questions.
  • Picker navigation keeps the selected entry visible.
  • Missing warning-message handling no longer causes AttributeError.
  • Selecting a profile that requires setup now displays its guidance immediately.

Install or upgrade

Install SuperQode:

uv tool install superqode

Upgrade an existing installation:

uv tool upgrade superqode

Full changelog

Compare v0.2.0 to v0.2.14