@aiwayds/dsh-tui-pi 2.13.0 → 2.14.0
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/README.md +2 -2
- package/README.zh-CN.md +1 -1
- package/lib/host-version.d.ts +1 -1
- package/lib/host-version.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
A fully-featured pi-style terminal UI for [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) (dsh) — a plugin suite that turns dsh into a pi-like coding-agent experience: /history look-back & fork-at-turn, guided preset switching, live subagent steering, model profiles, GitHub light/dark themes and a powerline footer.
|
|
6
6
|
|
|
7
|
-
**Requires dsh >= 0.1.5-rc.
|
|
7
|
+
**Requires dsh >= 0.1.5-rc.2** — this plugin targets the dsh RC/stable line only (CI and releases resolve the newest of the `latest`/`next` dist-tags at runtime). **The alpha line is no longer supported.** A startup guard logs a one-line warning and exits cleanly when the host is older than the floor (opt out with `DSH_TUI_SKIP_HOST_CHECK=1`). See [ADR 0002](docs/adr/0002-target-dsh-0.1.2-alpha.3-single-target.md) for the now-superseded alpha single-target decision.
|
|
8
8
|
|
|
9
9
|
https://github.com/user-attachments/assets/67a7c6ca-ff42-4005-b543-437ba61771bb
|
|
10
10
|
|
|
@@ -39,7 +39,7 @@ dsh plugin --profile tui add @aiwayds/dsh-tui-pi
|
|
|
39
39
|
dsh --profile tui # launch (or: dsh-tui-pi)
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
Legacy `session_projcache` records (missing `identity.isSeeded`/`identity.inheritedEventCount`, written before dsh 0.1.2-alpha.4 — predating the rc/stable floor of 0.1.5-rc.
|
|
42
|
+
Legacy `session_projcache` records (missing `identity.isSeeded`/`identity.inheritedEventCount`, written before dsh 0.1.2-alpha.4 — predating the rc/stable floor of 0.1.5-rc.2 this plugin now targets) are migrated at the profile layer: the bundle patch replaces the stock `session-projection-cache` row with a wrapper (`@aiwayds/dsh-tui-pi/projcache`) that backfills the records while its module loads — strictly before the stock plugin could open the domain and crash the boot — so every `dsh --profile tui` start is covered, launcher or not. Migration is idempotent, backs up every rewritten file next to the original, and never blocks startup. The `dsh-tui-pi` launcher additionally runs the same migration as a CLI preflight before `exec dsh`.
|
|
43
43
|
|
|
44
44
|
Everything that used to need manual patching — the canvas background, the `@deepseek-ai` module closure, the compaction backend — now happens automatically. Upgrade an existing profile after a release:
|
|
45
45
|
|
package/README.zh-CN.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
面向 [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness)(dsh)的功能齐全的 pi 风格终端 UI——一套把 dsh 变成 pi 式编码代理体验的插件套件:/history 回看与任意轮分叉、确认式 preset 切换、subagent 实时操控、模型档案、GitHub 明/暗主题和 powerline 状态栏。
|
|
6
6
|
|
|
7
|
-
**要求 dsh >= 0.1.5-rc.
|
|
7
|
+
**要求 dsh >= 0.1.5-rc.2** —— 本插件只跟随 dsh RC/stable 线(CI 与发版在运行时解析 latest/next 中更新的 dist-tag)。**不再支持 alpha 线。**宿主低于下限时,启动守卫会打一行 warning 并干净退出(可用 `DSH_TUI_SKIP_HOST_CHECK=1` 跳过)。alpha 单目标决策的历史见 [ADR 0002](docs/adr/0002-target-dsh-0.1.2-alpha.3-single-target.md)(已被取代)。
|
|
8
8
|
|
|
9
9
|
https://github.com/user-attachments/assets/67a7c6ca-ff42-4005-b543-437ba61771bb
|
|
10
10
|
|
package/lib/host-version.d.ts
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Same floor as the peerDependencies range in package.json — keep the two in
|
|
13
13
|
* lockstep (the package.json field stays the npm-facing source of truth).
|
|
14
14
|
*/
|
|
15
|
-
export declare const HOST_FLOOR = "0.1.
|
|
15
|
+
export declare const HOST_FLOOR = "0.1.5-rc.2";
|
|
16
16
|
export interface ParsedVersion {
|
|
17
17
|
major: number;
|
|
18
18
|
minor: number;
|
package/lib/host-version.js
CHANGED
|
@@ -13,7 +13,7 @@ import { createRequire } from 'node:module';
|
|
|
13
13
|
* Same floor as the peerDependencies range in package.json — keep the two in
|
|
14
14
|
* lockstep (the package.json field stays the npm-facing source of truth).
|
|
15
15
|
*/
|
|
16
|
-
export const HOST_FLOOR = '0.1.
|
|
16
|
+
export const HOST_FLOOR = '0.1.5-rc.2';
|
|
17
17
|
/**
|
|
18
18
|
* The @deepseek-ai package the peer range is declared against; resolving its
|
|
19
19
|
* package.json through the plugin's own module URL reads the closure the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiwayds/dsh-tui-pi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.0",
|
|
4
4
|
"description": "A fully-featured pi-style terminal UI for DeepSeek Harness (dsh) — history look-back & fork-at-turn, guided preset switching, live subagent steering, model profiles & themes",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"@earendil-works/pi-tui": "0.84.4"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@deepseek-ai/dsh-skill": ">=0.1.5-rc.
|
|
74
|
-
"@deepseek-ai/dsh-user-questions": ">=0.1.5-rc.
|
|
73
|
+
"@deepseek-ai/dsh-skill": ">=0.1.5-rc.2",
|
|
74
|
+
"@deepseek-ai/dsh-user-questions": ">=0.1.5-rc.2"
|
|
75
75
|
},
|
|
76
76
|
"peerDependenciesMeta": {
|
|
77
77
|
"@deepseek-ai/dsh-skill": {
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@types/node": "^24.0.0",
|
|
86
|
-
"@deepseek-ai/dsh-skill": "0.1.5-rc.
|
|
87
|
-
"@deepseek-ai/dsh-user-questions": "0.1.5-rc.
|
|
86
|
+
"@deepseek-ai/dsh-skill": "0.1.5-rc.2",
|
|
87
|
+
"@deepseek-ai/dsh-user-questions": "0.1.5-rc.2",
|
|
88
88
|
"typescript": "~5.9.0"
|
|
89
89
|
},
|
|
90
90
|
"dsh": {
|