arqzero 2.1.0-beta.11 → 2.1.0-beta.17
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/CHANGELOG.md +42 -0
- package/dist/arqzero.mjs +207 -176
- package/package.json +5 -3
- package/scripts/postinstall.mjs +67 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.1.0-beta.13] — 2026-05-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- First-run configure flow no longer crashes with "Fatal error" and a stack
|
|
14
|
+
trace when the user picks the managed `arqzero` provider before running
|
|
15
|
+
`arqzero login`. New `NotSignedInError` is caught by `bin/arq.ts`, which
|
|
16
|
+
exits 0 with a friendly, branded message pointing at the next command.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Configure flow restyled with the brand teal palette: branded banner at the
|
|
20
|
+
top, divider, numbered options with the recommended provider marked, soft
|
|
21
|
+
muted descriptions, teal prompt cursor `❯`. Respects `NO_COLOR`.
|
|
22
|
+
- Default provider in the picker is now `arqzero` (option 1) — was
|
|
23
|
+
`fireworks`. Aligns with the new managed-first onboarding.
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- `npm postinstall` hook prints a one-screen welcome with the two start
|
|
27
|
+
paths (managed / BYOK), docs/pricing links. Skipped on CI, dependency
|
|
28
|
+
installs, and when `NO_COLOR` is set. Bundled in the published tarball.
|
|
29
|
+
- `NotSignedInError` exported from `src/config/init.ts` so other entry
|
|
30
|
+
points can route the same friendly path if they hit this state.
|
|
31
|
+
|
|
32
|
+
## [2.1.0-beta.12] — 2026-05-23
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
- `/provider <id>` now hot-swaps the active LLM adapter in-session — no
|
|
36
|
+
restart needed. Previously the command only wrote `~/.arqzero/config.json`
|
|
37
|
+
and the running engine kept streaming through the old provider, which
|
|
38
|
+
surfaced as confusing 401/404 errors when users tried to switch BYOK or
|
|
39
|
+
toggle managed inference mid-session. Adapter is rebuilt via
|
|
40
|
+
`buildProvider(config)` and installed on the engine immediately; any
|
|
41
|
+
in-flight stream on the old provider is aborted first.
|
|
42
|
+
- `/provider set <id> <key>` and `/provider use <models>` also rebuild
|
|
43
|
+
the adapter when they change the active provider's identity or default
|
|
44
|
+
model, so the next turn picks up the new state.
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
- `ConversationEngine.setProvider(provider)` — public method to hot-swap
|
|
48
|
+
the active LLM adapter at runtime
|
|
49
|
+
- `SlashCommandContext.onProviderChange` callback so slash commands can
|
|
50
|
+
request a live adapter rebuild from the host TUI
|
|
51
|
+
|
|
10
52
|
## [2.1.0-beta.11] — 2026-05-23
|
|
11
53
|
|
|
12
54
|
### Changed
|