@deepseek-ai/dsh-session-title 0.1.3-alpha.2 → 0.1.5-alpha.2

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.i18n.yaml CHANGED
@@ -2,5 +2,5 @@
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/session/session-title/README.md
5
- README.md: debc737e3f572f15856f7f78a58abe8532ae15dc
6
- README.zh.md: cf8079cd5566023f3dc1da8480eeec5327eebb5a
5
+ README.md: 09778e4e2b1cf1e6e6e4dc20dbe9237a4a0cc51f
6
+ README.zh.md: 3e5bf34273a85747e0b5624df99c3815a134f937
package/README.md CHANGED
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
9
9
 
10
10
  ## Summary
11
11
 
12
- `dsh-session-title` gives every session a title clients can display: a deterministic fallback from the first eligible human message, an optional asynchronous provider (such as a model-backed one), or an explicit user rename. Every accepted revision is a log-only `session/title` event, so titles survive replay, resume, and paging exactly like any other session event and never enter the model surface. The service owns scheduling and acceptance; the optional provider owns generation. Automatic work never delays the main agent response, and a newer revision supersedes older work. Configuration and title sources come first; the implementation internals live in a collapsible developer section below.
12
+ Use `dsh-session-title` to give each session a client-visible title from the first eligible human message, an optional asynchronous generator, or an explicit user rename. Accepted titles persist through replay, resume, and paging but never enter model input. Automatic generation never delays the main agent response, and newer title requests supersede older work. Choose the package when clients need durable titles with configurable length limits and a deliberate `refresh()` path for regenerating them.
13
13
 
14
14
  ## Table of Contents
15
15
 
package/README.zh.md CHANGED
@@ -9,7 +9,7 @@ kind: "package-reference"
9
9
 
10
10
  ## 概述
11
11
 
12
- `dsh-session-title` 为每个会话提供客户端可以显示的标题:来自第一条符合条件用户消息的确定性回退、一个可选异步提供方(例如模型支持的提供方),或显式用户重命名。每个已接受的修订都是仅写入日志的 `session/title` 事件,因此标题像任何其他会话事件一样在回放、恢复与分页中存活,且绝不进入模型可见面。服务拥有调度与接受;可选提供方负责生成。自动工作绝不会延迟主 agent 响应,较新的修订会取代旧工作。配置与标题来源在前;实现内部细节放在下方可折叠的开发者章节中。
12
+ 使用 `dsh-session-title` 为每个会话提供客户端可见标题,标题可以来自第一条符合条件的用户消息、可选异步生成器或显式用户重命名。已接受的标题在回放、恢复与分页后仍然存在,但绝不会进入模型输入。自动生成绝不会延迟主 agent 响应,较新的标题请求会取代旧工作。当客户端需要带可配置长度上限的持久标题,以及通过 `refresh()` 主动重新生成标题的路径时,请选择本包。
13
13
 
14
14
  ## 目录
15
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-session-title",
3
3
  "description": "Log-backed session title service and provider registry for the DeepSeek Harness",
4
- "version": "0.1.3-alpha.2",
4
+ "version": "0.1.5-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -42,27 +42,27 @@
42
42
  "license": "MIT",
43
43
  "peerDependencies": {
44
44
  "@deepseek-ai/cordis": "^4.0.2",
45
- "@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
46
- "@deepseek-ai/dsh-invariants": "^0.1.3-alpha.2",
47
- "@deepseek-ai/dsh-brand": "^0.1.3-alpha.2",
48
- "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
49
- "@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
50
- "@deepseek-ai/dsh-session-projection": "^0.1.3-alpha.2"
45
+ "@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
46
+ "@deepseek-ai/dsh-brand": "^0.1.5-alpha.2",
47
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
48
+ "@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
49
+ "@deepseek-ai/dsh-invariants": "^0.1.5-alpha.2",
50
+ "@deepseek-ai/dsh-session-projection": "^0.1.5-alpha.2"
51
51
  },
52
52
  "dependencies": {
53
53
  "zod": "^4.4.3",
54
- "@deepseek-ai/dsh-util-values": "^0.1.3-alpha.2",
54
+ "@deepseek-ai/dsh-util-values": "^0.1.5-alpha.2",
55
55
  "@deepseek-ai/schemastery": "^3.18.2"
56
56
  },
57
57
  "devDependencies": {
58
- "@deepseek-ai/dsh-agent-loop": "^0.1.3-alpha.2",
59
- "@deepseek-ai/dsh-invariants": "^0.1.3-alpha.2",
60
- "@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
61
- "@deepseek-ai/dsh-brand": "^0.1.3-alpha.2",
62
- "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
63
- "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.3-alpha.2",
64
- "@deepseek-ai/dsh-session-projection": "^0.1.3-alpha.2",
65
58
  "@deepseek-ai/cordis": "^4.0.2",
66
- "@deepseek-ai/dsh-agent": "^0.1.3-alpha.2"
59
+ "@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
60
+ "@deepseek-ai/dsh-agent-loop": "^0.1.5-alpha.2",
61
+ "@deepseek-ai/dsh-brand": "^0.1.5-alpha.2",
62
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
63
+ "@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
64
+ "@deepseek-ai/dsh-session-projection": "^0.1.5-alpha.2",
65
+ "@deepseek-ai/dsh-invariants": "^0.1.5-alpha.2",
66
+ "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.5-alpha.2"
67
67
  }
68
68
  }