@heysalad/cheri-cli 1.3.1 → 1.3.2
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 +26 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Cheri CLI will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.3.2] - 2026-02-17
|
|
6
|
+
|
|
7
|
+
### 🔧 Improvements
|
|
8
|
+
|
|
9
|
+
#### CLI Core
|
|
10
|
+
- **Version from package.json**: CLI now reads version dynamically from `package.json` instead of hardcoding
|
|
11
|
+
- **Agent & usage commands registered**: `cheri agent` and `cheri usage` now properly registered in the main binary
|
|
12
|
+
- **Interactive REPL on no args**: Running `cheri` with no arguments now launches the interactive REPL instead of showing help
|
|
13
|
+
|
|
14
|
+
#### Configuration
|
|
15
|
+
- **Multi-layer config system**: Config now merges defaults → user config → project config → env vars (highest priority)
|
|
16
|
+
- **Deep merge**: Nested config objects merge correctly instead of overwriting
|
|
17
|
+
- **Environment variable support**: All settings overridable via `CHERI_*` env vars
|
|
18
|
+
|
|
19
|
+
#### Commands
|
|
20
|
+
- **workspace**: Extracted `launchWorkspace()`, `stopWorkspace()`, `listWorkspaces()` as importable functions
|
|
21
|
+
- **status**: Extracted `showStatus()` as importable function for use in REPL
|
|
22
|
+
- **memory, config, init**: Consistent refactor to exportable functions
|
|
23
|
+
|
|
24
|
+
#### Backend
|
|
25
|
+
- **Default model switched to GPT-OSS 120B**: Faster true streaming via Bedrock OpenAI-compatible endpoint
|
|
26
|
+
- **Durable Objects fixed**: WorkspaceDO and SessionDO now correctly bound in deployed worker
|
|
27
|
+
- **Claude Sonnet 4.5 added**: Available as selectable model (`us.anthropic.claude-sonnet-4-5-20250929-v1:0`)
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
5
31
|
## [1.3.1] - 2026-02-17
|
|
6
32
|
|
|
7
33
|
### 🐛 Bug Fixes
|
package/package.json
CHANGED