@cjhyy/code-shell 0.8.8 → 0.8.10

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.
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/README.md CHANGED
@@ -137,10 +137,15 @@ need unavailable providers, credentials, cookies, or an active goal.
137
137
  - **Shell / execution**: `Bash`, `BashOutput`, `KillShell`, `ListShells`, `PowerShell`, `REPL`, `Sleep`
138
138
  - **Web / media / browser**: `browser_observe`, `browser_act`, `browser_navigate`, `WebSearch`, `WebFetch`, `GenerateImage`, `GenerateVideo`
139
139
  - **Planning / orchestration**: `AskUserQuestion`, `EnterPlanMode`, `ExitPlanMode`, `ToolSearch`, `TodoWrite`, `Agent`, `AgentCancel`, `DriveAgent`, `DriveClaudeCode`, `CheckQuota`
140
- - **Automation / integration**: `CronCreate`, `CronDelete`, `CronList`, `Config`, `Skill`, `AddMarketplace`, `MCPTool`, `ListMcpResources`, `ReadMcpResource`, `EditModelCatalog`
140
+ - **Automation / integration**: `CronCreate`, `CronDelete`, `CronList`, `Config`, `Skill`, `AddMarketplace`, `InstallCapability`, `MCPTool`, `ListMcpResources`, `ReadMcpResource`, `EditModelCatalog`
141
141
  - **Memory / credentials / goals**: `MemoryList`, `MemoryRead`, `MemorySave`, `MemoryDelete`, `UseCredential`, `InjectCredential`, `complete_goal`, `cancel_goal`
142
142
  - **Terminal-coding preset extras**: `EnterWorktree`, `ExitWorktree`, `NotebookEdit`, `LSP`, `Brief`, `Arena`
143
143
 
144
+ `InstallCapability` lets a conversation list, inspect, install, update, enable, disable, and
145
+ uninstall marketplace plugins, standalone project Skills, and MCP servers. MCP configuration
146
+ supports private-local, shared-project, and user-wide scopes; mutations and external Skill
147
+ repository inspection remain approval-gated.
148
+
144
149
  ---
145
150
 
146
151
  ## Programmatic API
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@cjhyy/code-shell",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "description": "Code Shell — meta package. Installs @cjhyy/code-shell-core and @cjhyy/code-shell-tui.",
5
5
  "type": "module",
6
+ "packageManager": "bun@1.3.11",
6
7
  "main": "./dist/index.js",
7
8
  "types": "./dist/index.d.ts",
8
9
  "exports": {
@@ -30,7 +31,8 @@
30
31
  "test:package-release": "bun run scripts/package-release-smoke.ts",
31
32
  "test:watch": "bun test --timeout 30000 --watch",
32
33
  "bench:render": "bun run bench/render-tail.bench.ts && bun run bench/render-streaming.bench.ts && bun run bench/render-spinner.bench.ts && bun run bench/render-wheel.bench.ts",
33
- "typecheck": "bun run --filter '@cjhyy/code-shell-chat' typecheck && tsc --noEmit",
34
+ "typecheck": "bun run build && bun run typecheck:workspaces",
35
+ "typecheck:workspaces": "bun run --filter '@cjhyy/code-shell-*' typecheck",
34
36
  "lint": "eslint packages/",
35
37
  "lint:engine-bypass": "bash scripts/check-no-engine-bypass.sh",
36
38
  "lint:workflow-test-paths": "node scripts/check-workflow-test-paths.mjs",
@@ -38,8 +40,8 @@
38
40
  "format": "prettier --write 'packages/**/*.ts'"
39
41
  },
40
42
  "dependencies": {
41
- "@cjhyy/code-shell-core": "0.8.8",
42
- "@cjhyy/code-shell-tui": "0.8.8"
43
+ "@cjhyy/code-shell-core": "0.8.10",
44
+ "@cjhyy/code-shell-tui": "0.8.10"
43
45
  },
44
46
  "workspaces": [
45
47
  "packages/*"