@matterailab/orbcode 0.3.4 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -185,10 +185,9 @@ sessions.
185
185
  | ------------------------- | ------- | ---------- | ---------------------- |
186
186
  | `axon-eido-3-code-pro` | 400k | 64k | $3/M in · $9/M out |
187
187
  | `axon-eido-3-code-mini` | 400k | 64k | $1.5/M in · $4.5/M out |
188
- | `axon-code-2-5-pro` | 400k | 64k | $2/M in · $6/M out |
189
- | `axon-code-2-5-mini` | 400k | 64k | free |
188
+ | `axon-eido-3-flash` | 200k | 64k | free |
190
189
 
191
- `axon-eido-3-code-mini` is the default. All four support native JSON tool calls
190
+ `axon-eido-3-code-mini` is the default. All three support native JSON tool calls
192
191
  and image input. Cost comes from the API's usage chunks (`is_byok`-aware) and is
193
192
  shown in the status bar.
194
193
 
@@ -298,6 +297,7 @@ MatterAI gateway untouched.
298
297
  | `/status` | version, model, account, gateway, context usage, cost, approval modes |
299
298
  | `/usage` | fetch plan usage |
300
299
  | `/init` | analyze the codebase and create/improve `AGENTS.md` in the repo's `.orb/` directory |
300
+ | `/task` | reference a previous session as context for the current task — opens a picker if no ID is given |
301
301
  | `/link` | link other repos on your machine so changes here are checked against them (enter a folder path) |
302
302
  | `/mcp` | manage MCP servers — enable, disable, reconnect, view status & tool counts |
303
303
  | `/login` | start the browser sign-in flow |
@@ -95,28 +95,17 @@ export const ANTHROPIC_MODELS = {
95
95
  * interactive picker for now.
96
96
  */
97
97
  export const BUILTIN_AXON_MODELS = {
98
- "axon-code-2-5-mini": {
99
- id: "axon-code-2-5-mini",
100
- name: "Axon Code 2.5 Mini (free)",
101
- description: "Axon Mini is an general purpose super intelligent LLM coding model for low-effort day-to-day tasks",
102
- contextWindow: 400000,
98
+ "axon-eido-3-flash": {
99
+ id: "axon-eido-3-flash",
100
+ name: "Axon Eido 3 Flash (free)",
101
+ description: "Axon Eido is a fast and low cost general purpose model for low-effort day-to-day tasks",
102
+ contextWindow: 200000,
103
103
  maxOutputTokens: 64000,
104
104
  supportsImages: true,
105
- inputPrice: 0.0000005,
106
- outputPrice: 0.0000015,
105
+ inputPrice: 0.0,
106
+ outputPrice: 0.0,
107
107
  free: true,
108
108
  },
109
- "axon-code-2-5-pro": {
110
- id: "axon-code-2-5-pro",
111
- name: "Axon Code 2.5 Pro",
112
- description: "Axon Code 2.5 Pro is the next-generation of Axon Code for coding tasks, currently in experimental stage.",
113
- contextWindow: 400000,
114
- maxOutputTokens: 64000,
115
- supportsImages: true,
116
- inputPrice: 0.000002,
117
- outputPrice: 0.000006,
118
- free: false,
119
- },
120
109
  "axon-eido-3-code-pro": {
121
110
  id: "axon-eido-3-code-pro",
122
111
  name: "Axon Eido 3 Pro",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matterailab/orbcode",
3
- "version": "0.3.4",
3
+ "version": "0.4.0",
4
4
  "description": "OrbCode CLI — agentic coding in your terminal, powered by Axon models by MatterAI",
5
5
  "type": "module",
6
6
  "bin": {