@cjhyy/code-shell 0.8.7 → 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.
- package/CHANGELOG.md +48 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,54 @@ 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
|
+
|
|
33
|
+
## [0.8.8] - 2026-08-10
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
|
|
37
|
+
- Added Panel API v6's permission-gated `audio.transcribe` capability so
|
|
38
|
+
reviewed Panel Apps can request microphone access and use the configured
|
|
39
|
+
speech-to-text provider without persisting recordings.
|
|
40
|
+
- Added a dedicated second-level Mimi personalization page for response
|
|
41
|
+
language, user profile, communication style, and custom instructions.
|
|
42
|
+
- Added image attachment rendering to Mimi manager chat.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Made Mimi's conversation archive boundary durable in the transcript, with a
|
|
47
|
+
one-time migration for older journal summaries and project-scoped reusable
|
|
48
|
+
manager sessions.
|
|
49
|
+
- Reduced Mimi manager-chat preflight latency and trimmed stale reusable
|
|
50
|
+
sessions before reuse.
|
|
51
|
+
|
|
52
|
+
### Fixed
|
|
53
|
+
|
|
54
|
+
- Kept per-session model switches isolated from the shared model pool.
|
|
55
|
+
- Anchored range archives to stable message IDs so trimming, restart replay,
|
|
56
|
+
and prior-summary merging preserve the intended conversation window.
|
|
57
|
+
- Tightened Panel Cookie credential access in the desktop host.
|
|
58
|
+
|
|
11
59
|
## [0.8.7] - 2026-08-07
|
|
12
60
|
|
|
13
61
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cjhyy/code-shell",
|
|
3
|
-
"version": "0.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.
|
|
42
|
-
"@cjhyy/code-shell-tui": "0.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/*"
|