@cjhyy/code-shell 0.8.0 → 0.8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -8,6 +8,25 @@ breaking.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.8.1] - 2026-08-05
12
+
13
+ ### Fixed
14
+
15
+ - Restored Panel App session ownership and browser-bucket routing, including
16
+ external-runtime isolation, so panel tools no longer fail with an unregistered
17
+ session bucket or get rebound when switching conversations.
18
+ - Qualified CodeShell MCP tools for Claude Code even when their names overlap
19
+ Claude built-ins such as `Read`, `Bash`, `Write`, and `Edit`.
20
+ - Kept model choices local to each conversation, refreshed the Codex picker to
21
+ 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.
25
+ - Replaced Mimi's stale "no active task" delivery text with the authoritative
26
+ Work Session launch result after delegation succeeds.
27
+ - Kept the desktop pet visible when double-clicking it to open Mimi; the pet now
28
+ closes only through its right-click close action.
29
+
11
30
  ## [0.8.0] - 2026-08-05
12
31
 
13
32
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cjhyy/code-shell",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
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.0",
42
- "@cjhyy/code-shell-tui": "0.8.0"
41
+ "@cjhyy/code-shell-core": "0.8.2",
42
+ "@cjhyy/code-shell-tui": "0.8.2"
43
43
  },
44
44
  "workspaces": [
45
45
  "packages/*"