@cjhyy/code-shell 0.8.7 → 0.8.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -8,6 +8,32 @@ breaking.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.8.8] - 2026-08-10
12
+
13
+ ### Added
14
+
15
+ - Added Panel API v6's permission-gated `audio.transcribe` capability so
16
+ reviewed Panel Apps can request microphone access and use the configured
17
+ speech-to-text provider without persisting recordings.
18
+ - Added a dedicated second-level Mimi personalization page for response
19
+ language, user profile, communication style, and custom instructions.
20
+ - Added image attachment rendering to Mimi manager chat.
21
+
22
+ ### Changed
23
+
24
+ - Made Mimi's conversation archive boundary durable in the transcript, with a
25
+ one-time migration for older journal summaries and project-scoped reusable
26
+ manager sessions.
27
+ - Reduced Mimi manager-chat preflight latency and trimmed stale reusable
28
+ sessions before reuse.
29
+
30
+ ### Fixed
31
+
32
+ - Kept per-session model switches isolated from the shared model pool.
33
+ - Anchored range archives to stable message IDs so trimming, restart replay,
34
+ and prior-summary merging preserve the intended conversation window.
35
+ - Tightened Panel Cookie credential access in the desktop host.
36
+
11
37
  ## [0.8.7] - 2026-08-07
12
38
 
13
39
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cjhyy/code-shell",
3
- "version": "0.8.7",
3
+ "version": "0.8.8",
4
4
  "description": "Code Shell — meta package. Installs @cjhyy/code-shell-core and @cjhyy/code-shell-tui.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -38,8 +38,8 @@
38
38
  "format": "prettier --write 'packages/**/*.ts'"
39
39
  },
40
40
  "dependencies": {
41
- "@cjhyy/code-shell-core": "0.8.7",
42
- "@cjhyy/code-shell-tui": "0.8.7"
41
+ "@cjhyy/code-shell-core": "0.8.8",
42
+ "@cjhyy/code-shell-tui": "0.8.8"
43
43
  },
44
44
  "workspaces": [
45
45
  "packages/*"