release: v0.2.2#6
Merged
Merged
Conversation
- README: add badges, quick start, docs link, and full model table - default model: switch to axon-eido-3-code-mini - TUI /model picker: hide third-party models (Anthropic, etc.); still available headlessly via -p --model <id>
Contributor
Contributor
There was a problem hiding this comment.
🧪 PR Review is completed: Release v0.2.2 splits the model registry and restricts the TUI picker to Axon models. Reviewed src/ui/App.tsx: no issues found.
Skipped files
README.md: Skipped file pattern
⬇️ Low Priority Suggestions (1)
src/api/models.ts (1 suggestion)
Location:
src/api/models.ts(Lines 203-203)🟡 Business Logic Impact
Issue:
DEFAULT_MODEL_IDchanged from"axon-code-2-5-pro"to"axon-eido-3-code-mini". This affects every new session and every fallback ingetModel, including users who have not explicitly set a model.Fix: Confirm this is the intended default for v0.2.2. If not, revert to the previous default.
Impact: Prevents an unexpected default model switch for users upgrading to v0.2.2
- export const DEFAULT_MODEL_ID = "axon-eido-3-code-mini"; + export const DEFAULT_MODEL_ID = "axon-code-2-5-pro";
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v0.2.2
Highlights
/modelnow land onaxon-eido-3-code-mini. Existing users keep their persisted choice./modelpicker is Axon-only: third-party models (Anthropic, OpenAI-compatible) no longer appear in the interactive picker. They're still available headlessly viaorbcode -p "..." --model <id>(orMATTERAI_MODEL); the TUI prints a hint pointing there when a 3P id is requested via/model <id>.Files changed
package.json— bump version to 0.2.2README.md— badges, quick start, docs link, model table updatedsrc/api/models.ts—DEFAULT_MODEL_ID→axon-eido-3-code-mini; splitBUILTIN_AXON_MODELSfromAXON_MODELSsrc/ui/App.tsx—/modelcommand rejects 3P ids with a hint to use headlesssrc/ui/components/ModelPicker.tsx— picker readsBUILTIN_AXON_MODELSRelease flow
Per
RELEASE.md: after this PR is merged, the maintainer will tag the merge commitv0.2.2onmainand push the tag — that's what triggers the npm publish via.github/workflows/release.yml.