@cjhyy/code-shell 0.8.6 → 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 +48 -3
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -8,6 +8,51 @@ 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
+
37
+ ## [0.8.7] - 2026-08-07
38
+
39
+ ### Added
40
+
41
+ - Added Panel API v5's `automations.manage` capability for reviewed Panel Apps
42
+ to create and manage recurring jobs scoped to the bound workspace and task.
43
+ - Added Panel API v4's permission-gated, Host-owned Cookie login flow so a
44
+ Panel App can list matching masked accounts, open an isolated login-and-save
45
+ window, and restore a selected login without receiving Cookie values.
46
+ - Added an explicit Browser Runtime takeover action that reveals the exact page
47
+ already operated by the Agent for login, CAPTCHA, or another manual step.
48
+
49
+ ### Fixed
50
+
51
+ - Kept long Panel App and plugin review dialogs scrollable with their action
52
+ buttons visible.
53
+ - Allowed declared references inside installed Panel App Skills to load without
54
+ a second sensitive-path prompt while preserving credential and symlink guards.
55
+
11
56
  ## [0.8.1] - 2026-08-05
12
57
 
13
58
  ### Fixed
@@ -19,9 +64,9 @@ breaking.
19
64
  Claude built-ins such as `Read`, `Bash`, `Write`, and `Edit`.
20
65
  - Kept model choices local to each conversation, refreshed the Codex picker to
21
66
  GPT-5.6 Sol/Terra/Luna, and migrated saved 0.8.0 GPT-5.1 selections to Sol.
22
- - Allowed registered Skill reference files under user and plugin Skill roots to
23
- be read without a repeated sensitive-path approval, while retaining credential
24
- and symlink-escape protections.
67
+ - Allowed registered Skill reference files under user, plugin, and installed
68
+ Panel App Skill roots to be read without a repeated sensitive-path approval,
69
+ while retaining credential and symlink-escape protections.
25
70
  - Replaced Mimi's stale "no active task" delivery text with the authoritative
26
71
  Work Session launch result after delegation succeeds.
27
72
  - Kept the desktop pet visible when double-clicking it to open Mimi; the pet now
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cjhyy/code-shell",
3
- "version": "0.8.6",
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.6",
42
- "@cjhyy/code-shell-tui": "0.8.6"
41
+ "@cjhyy/code-shell-core": "0.8.8",
42
+ "@cjhyy/code-shell-tui": "0.8.8"
43
43
  },
44
44
  "workspaces": [
45
45
  "packages/*"