@cjhyy/code-shell 0.8.8 → 0.8.9

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 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -8,6 +8,28 @@ breaking.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.8.9] - 2026-08-11
12
+
13
+ ### Added
14
+
15
+ - Added Panel API v7's permission-gated process capability so reviewed Panel
16
+ Apps can run declared executables without shell access and stream progress.
17
+ - Added Panel API v8's `agent.task` capability for small, bounded AI jobs with
18
+ per-run tool and Skill allowlists, cancellation, status events, and results
19
+ returned directly to the owning Panel App.
20
+ - Added process-local ephemeral Sessions for Quick Chat and Panel Tasks so they
21
+ stay out of normal Session lists and do not inherit unrelated conversation,
22
+ project, memory, source, hook, MCP, or Skill context.
23
+
24
+ ### Fixed
25
+
26
+ - Allowed installed Panel App Skills to read their declared package resources
27
+ while retaining path and symlink escape protections.
28
+ - Recovered update checks when a local directory package has no
29
+ `app-update.yml` by selecting the public GitHub update provider explicitly.
30
+ - Reported an unreachable update feed as an update status instead of a raw
31
+ startup error, and made transcript fork event handling exhaustive.
32
+
11
33
  ## [0.8.8] - 2026-08-10
12
34
 
13
35
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cjhyy/code-shell",
3
- "version": "0.8.8",
3
+ "version": "0.8.9",
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.8",
42
- "@cjhyy/code-shell-tui": "0.8.8"
41
+ "@cjhyy/code-shell-core": "0.8.9",
42
+ "@cjhyy/code-shell-tui": "0.8.9"
43
43
  },
44
44
  "workspaces": [
45
45
  "packages/*"