@cjhyy/code-shell 0.8.6 → 0.8.7

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 +22 -3
  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.7] - 2026-08-07
12
+
13
+ ### Added
14
+
15
+ - Added Panel API v5's `automations.manage` capability for reviewed Panel Apps
16
+ to create and manage recurring jobs scoped to the bound workspace and task.
17
+ - Added Panel API v4's permission-gated, Host-owned Cookie login flow so a
18
+ Panel App can list matching masked accounts, open an isolated login-and-save
19
+ window, and restore a selected login without receiving Cookie values.
20
+ - Added an explicit Browser Runtime takeover action that reveals the exact page
21
+ already operated by the Agent for login, CAPTCHA, or another manual step.
22
+
23
+ ### Fixed
24
+
25
+ - Kept long Panel App and plugin review dialogs scrollable with their action
26
+ buttons visible.
27
+ - Allowed declared references inside installed Panel App Skills to load without
28
+ a second sensitive-path prompt while preserving credential and symlink guards.
29
+
11
30
  ## [0.8.1] - 2026-08-05
12
31
 
13
32
  ### Fixed
@@ -19,9 +38,9 @@ breaking.
19
38
  Claude built-ins such as `Read`, `Bash`, `Write`, and `Edit`.
20
39
  - Kept model choices local to each conversation, refreshed the Codex picker to
21
40
  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.
41
+ - Allowed registered Skill reference files under user, plugin, and installed
42
+ Panel App Skill roots to be read without a repeated sensitive-path approval,
43
+ while retaining credential and symlink-escape protections.
25
44
  - Replaced Mimi's stale "no active task" delivery text with the authoritative
26
45
  Work Session launch result after delegation succeeds.
27
46
  - 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.7",
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.7",
42
+ "@cjhyy/code-shell-tui": "0.8.7"
43
43
  },
44
44
  "workspaces": [
45
45
  "packages/*"