@deepseek-ai/dsh-file-reference-local 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/context/file-reference-local/README.md
5
- README.md: 26137f04d0c5dde22a36f6361acd1d6386dc1633
6
- README.zh.md: bdb8bf1840597c7ad08aca258d4bd94b345623e0
5
+ README.md: ec1a681f6fa1c5fb33a7705d2c1faf5232690b23
6
+ README.zh.md: aacd4e44759114476d2a6b88c71fef6c5b29f2ed
package/README.md CHANGED
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
9
9
 
10
10
  ## Summary
11
11
 
12
- Agents and their host UIs get ranked path candidates for `@file` mentions, scoped to each agent's workspace and bounded so even large repositories stay responsive. `dsh-file-reference-local` implements `ctx.fileReferences` for the local filesystem: it keeps one reusable search index per agent, rebuilds it in the background after tool results so completion reflects workspace changes without stalling, and never follows directory symlinks. When the addressed agent can call `read`, it also installs a stable one-sentence guidance into the system prompt. Choose it when the agent's `read` tool operates on the Harness host filesystem; remote or virtual namespaces need a provider whose discovery matches the tool.
12
+ Agents and host UIs can complete `@file` mentions with ranked paths from each agent's local workspace, with bounded discovery that stays responsive in large repositories. Results refresh after tool activity without blocking completion, and directory symlinks are never followed. When `read` is available, the model also receives stable guidance for interpreting referenced paths. Choose this package when `read` uses the Harness host filesystem; remote or virtual namespaces need matching discovery.
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
- agent(智能体)及其宿主 UI 获得 `@file` mention 的排序路径候选,范围限定在各自 agent 的工作区,并有界以保证大型仓库依然响应迅速。`dsh-file-reference-local` 在本地文件系统上实现 `ctx.fileReferences`:它为每个 agent 维护一个可复用的搜索索引,在工具结果后于后台重建索引,让补全反映工作区变化而不发生停顿,且从不跟随目录符号链接。当指定 agent 可以调用 `read` 时,它还会向系统提示词安装一句稳定指引。当 agent 的 `read` 工具作用于 Harness 宿主文件系统时选择它;远程或虚拟命名空间需要发现能力与工具一致的提供方。
12
+ agent(智能体)及宿主 UI 可以用各 agent 本地工作区中经过排序的路径补全 `@file` mention;有界发现让大型仓库也能保持响应迅速。结果会在工具活动后刷新且不会阻塞补全,并且始终不会跟随目录符号链接。当 `read` 可用时,模型还会收到关于如何理解引用路径的稳定指引。当 `read` 使用 Harness 宿主文件系统时选择本包;远程或虚拟命名空间需要与之匹配的发现能力。
13
13
 
14
14
  ## 目录
15
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-file-reference-local",
3
3
  "description": "Local-filesystem ctx.fileReferences provider with bounded fuzzy indexes",
4
- "version": "0.1.3-alpha.2",
4
+ "version": "0.1.5-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -35,17 +35,17 @@
35
35
  "@deepseek-ai/schemastery": "^3.18.2"
36
36
  },
37
37
  "peerDependencies": {
38
- "@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
39
- "@deepseek-ai/dsh-file-reference": "^0.1.3-alpha.2",
40
- "@deepseek-ai/dsh-system-prompt": "^0.1.3-alpha.2",
41
- "@deepseek-ai/dsh-tools": "^0.1.3-alpha.2",
42
- "@deepseek-ai/cordis": "^4.0.2"
38
+ "@deepseek-ai/dsh-file-reference": "^0.1.5-alpha.2",
39
+ "@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
40
+ "@deepseek-ai/dsh-tools": "^0.1.5-alpha.2",
41
+ "@deepseek-ai/cordis": "^4.0.2",
42
+ "@deepseek-ai/dsh-system-prompt": "^0.1.5-alpha.2"
43
43
  },
44
44
  "devDependencies": {
45
- "@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
46
- "@deepseek-ai/dsh-file-reference": "^0.1.3-alpha.2",
47
- "@deepseek-ai/dsh-system-prompt": "^0.1.3-alpha.2",
48
- "@deepseek-ai/dsh-tools": "^0.1.3-alpha.2",
45
+ "@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
46
+ "@deepseek-ai/dsh-file-reference": "^0.1.5-alpha.2",
47
+ "@deepseek-ai/dsh-system-prompt": "^0.1.5-alpha.2",
48
+ "@deepseek-ai/dsh-tools": "^0.1.5-alpha.2",
49
49
  "@deepseek-ai/cordis": "^4.0.2"
50
50
  }
51
51
  }