@deepseek-ai/dsh-experimental-agent-team-web-profile 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/LICENSE +21 -0
- package/README.i18n.yaml +6 -0
- package/README.md +98 -0
- package/README.zh.md +98 -0
- package/cordis.patch.yml +6 -0
- package/lib/index.js +1 -0
- package/lib/types/index.d.ts +3 -0
- package/package.json +47 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 DeepSeek
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.i18n.yaml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# Bilingual-pair consistency record (docs/i18n/README.md): the git blob hash of each
|
|
2
|
+
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
|
+
# after editing either side, bring the other along and re-record with:
|
|
4
|
+
# pnpm run verify-translation-pairing --write packages/experimental/agent-team-web-profile/README.md
|
|
5
|
+
README.md: 16d71b5b30f5b18cb35e3eb289757d48a5271385
|
|
6
|
+
README.zh.md: 9ffd5e83bc200c52c5ef4364eba131bac3bcd7ac
|
package/README.md
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Add the published experimental Agent Teams panel to a Web profile after the Host Team layer."
|
|
3
|
+
kind: "package-bundle"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# @deepseek-ai/dsh-experimental-agent-team-web-profile
|
|
7
|
+
|
|
8
|
+
English | [中文](README.zh.md)
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
11
|
+
|
|
12
|
+
`dsh-experimental-agent-team-web-profile` is the published experimental Web layer for [Agent Teams](../agent-team/README.md). Add it after `@deepseek-ai/dsh-web-app` and [`@deepseek-ai/dsh-experimental-agent-team-profile`](../agent-team-profile/README.md) to show the Team roster, task board, and teammate navigation in the browser. Removing either experimental layer leaves the stable base and Web composition unchanged. No shipped Web profile enables it by default.
|
|
13
|
+
|
|
14
|
+
## Table of Contents
|
|
15
|
+
|
|
16
|
+
- [Use this package](#use-this-package)
|
|
17
|
+
- [Understand the implementation](#understand-the-implementation)
|
|
18
|
+
- [Further Exploration](#further-exploration)
|
|
19
|
+
- [Model Experience](#model-experience)
|
|
20
|
+
- [Known Limitations and Deferred Work](#known-limitations-and-deferred-work)
|
|
21
|
+
- [Dev Note](#dev-note)
|
|
22
|
+
|
|
23
|
+
-----
|
|
24
|
+
|
|
25
|
+
<a id="use-this-package"></a>
|
|
26
|
+
## Use this package
|
|
27
|
+
|
|
28
|
+
### Install into a profile
|
|
29
|
+
|
|
30
|
+
Add the Host and Web Agent Teams layers to an initialized `web` profile in this order:
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
dsh plugin --profile web add @deepseek-ai/dsh-experimental-agent-team-profile
|
|
34
|
+
dsh plugin --profile web add @deepseek-ai/dsh-experimental-agent-team-web-profile
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
The first command supplies the Team domain, generated Remote methods, and model tools. The second command activates this package's declared patch and its browser presentation. Removing the package with `dsh plugin --profile web remove @deepseek-ai/dsh-experimental-agent-team-web-profile` removes the Web layer from the profile's ordered bundle list.
|
|
38
|
+
|
|
39
|
+
### What you get
|
|
40
|
+
|
|
41
|
+
The conversation header gains the Team roster, shared task board, and teammate navigation. [`@deepseek-ai/dsh-experimental-client-ui-agent-team`](../client-ui-agent-team/README.md) owns those browser interactions and mounts the generated Client Remote namespace used to reach the Host Team service.
|
|
42
|
+
|
|
43
|
+
-----
|
|
44
|
+
|
|
45
|
+
<a id="understand-the-implementation"></a>
|
|
46
|
+
## Understand the implementation
|
|
47
|
+
|
|
48
|
+
<details>
|
|
49
|
+
<summary>Implementation internals — click to expand</summary>
|
|
50
|
+
|
|
51
|
+
The package's runtime content is [`cordis.patch.yml`](cordis.patch.yml). Applied after `dsh-web-app` and the Host Agent Teams layer, its single `insert` entry adds the `ui-agent-team` row for `@deepseek-ai/dsh-experimental-client-ui-agent-team`. The inserted Client plugin owns the generated Remote assembly and Team UI; this static bundle holds no mutable state and installs no runtime invariant.
|
|
52
|
+
|
|
53
|
+
| File | Role |
|
|
54
|
+
|---|---|
|
|
55
|
+
| [`cordis.patch.yml`](cordis.patch.yml) | Ordered Web patch containing the `ui-agent-team` row |
|
|
56
|
+
| [`src/index.ts`](src/index.ts) | Empty module entry; the patch is the runtime content |
|
|
57
|
+
| — | No runtime invariant companion is published; the package carries only a static profile patch. The Remote assembly and Team UI own their activation requirements. |
|
|
58
|
+
|
|
59
|
+
</details>
|
|
60
|
+
|
|
61
|
+
-----
|
|
62
|
+
|
|
63
|
+
<a id="further-exploration"></a>
|
|
64
|
+
## Further Exploration
|
|
65
|
+
|
|
66
|
+
- [Experimental packages](../README.md) — incubation status and publication policy.
|
|
67
|
+
- [Agent Teams Host profile](../agent-team-profile/README.md) — the required domain, Remote, and model-tool layer.
|
|
68
|
+
- [Agent Teams browser UI](../client-ui-agent-team/README.md) — roster, task-board, and teammate-navigation behavior.
|
|
69
|
+
- [Web bundle](../../bundle/web-app/README.md) — the stable browser layer this patch extends.
|
|
70
|
+
|
|
71
|
+
-----
|
|
72
|
+
|
|
73
|
+
<a id="model-experience"></a>
|
|
74
|
+
## Model Experience
|
|
75
|
+
|
|
76
|
+
Indirectly, through the Host-side Agent Teams profile selected alongside this Web layer.
|
|
77
|
+
|
|
78
|
+
#### KV Cache effect
|
|
79
|
+
|
|
80
|
+
This Web bundle adds no model request content; the Host-side Team tools own prompt, schema, and cache effects.
|
|
81
|
+
|
|
82
|
+
## Known Limitations and Deferred Work
|
|
83
|
+
|
|
84
|
+
<a id="known-limitations-and-deferred-work"></a>
|
|
85
|
+
|
|
86
|
+
- **Ordered composition** — `dsh-base`, `dsh-web-app`, `dsh-experimental-agent-team-profile`, and this package must remain in that order.
|
|
87
|
+
- **Preset-scoped legacy controls** — stable Web presets still mount continuable Subagent controls inside the preset scope. Top-level Host profile overrides do not replace those scoped registrations, so the Team roster and legacy child controls can both appear until Web has a Team-aware preset. The [Web Agent Teams decision](../../../.agents/notes/archived/feature/2026-08-06-agent-teams-web.md) records this deferred composition work.
|
|
88
|
+
- **Opt-in only** — the package is public, but no shipped Web profile enables either Agent Teams layer.
|
|
89
|
+
|
|
90
|
+
<a id="dev-note"></a>
|
|
91
|
+
### Dev Note
|
|
92
|
+
|
|
93
|
+
<details>
|
|
94
|
+
<summary>Working context for maintainers — click to expand</summary>
|
|
95
|
+
|
|
96
|
+
None.
|
|
97
|
+
|
|
98
|
+
</details>
|
package/README.zh.md
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "在 Host Team 层之后,为 Web profile 添加公开发布的实验性 Agent Teams 面板。"
|
|
3
|
+
kind: "package-bundle"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# @deepseek-ai/dsh-experimental-agent-team-web-profile
|
|
7
|
+
|
|
8
|
+
[English](README.md) | 中文
|
|
9
|
+
|
|
10
|
+
## 概述
|
|
11
|
+
|
|
12
|
+
`dsh-experimental-agent-team-web-profile` 是 [Agent Teams](../agent-team/README.zh.md) 公开发布的实验性 Web 层。把它放在 `@deepseek-ai/dsh-web-app` 与 [`@deepseek-ai/dsh-experimental-agent-team-profile`](../agent-team-profile/README.zh.md) 之后,即可在浏览器中显示 Team roster、任务板与 teammate 导航。移除任一实验层都会让稳定的 base 与 Web composition 保持不变。随附 Web profile 默认不会启用它。
|
|
13
|
+
|
|
14
|
+
## 目录
|
|
15
|
+
|
|
16
|
+
- [使用本包](#use-this-package)
|
|
17
|
+
- [理解实现](#understand-the-implementation)
|
|
18
|
+
- [进一步探索](#further-exploration)
|
|
19
|
+
- [模型体验](#model-experience)
|
|
20
|
+
- [已知限制与延期工作](#known-limitations-and-deferred-work)
|
|
21
|
+
- [开发备注](#dev-note)
|
|
22
|
+
|
|
23
|
+
-----
|
|
24
|
+
|
|
25
|
+
<a id="use-this-package"></a>
|
|
26
|
+
## 使用本包
|
|
27
|
+
|
|
28
|
+
### 安装到 profile
|
|
29
|
+
|
|
30
|
+
按以下顺序把 Host 与 Web Agent Teams 层添加到已初始化的 `web` profile:
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
dsh plugin --profile web add @deepseek-ai/dsh-experimental-agent-team-profile
|
|
34
|
+
dsh plugin --profile web add @deepseek-ai/dsh-experimental-agent-team-web-profile
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
第一条命令提供 Team domain、生成的 Remote 方法与模型工具。第二条命令激活本包声明的 patch 及其浏览器 presentation。执行 `dsh plugin --profile web remove @deepseek-ai/dsh-experimental-agent-team-web-profile` 移除本包时,Web 层也会从 profile 的有序 bundle 列表中移除。
|
|
38
|
+
|
|
39
|
+
### 获得的功能
|
|
40
|
+
|
|
41
|
+
对话标题栏会获得 Team roster、共享任务板与 teammate 导航。[`@deepseek-ai/dsh-experimental-client-ui-agent-team`](../client-ui-agent-team/README.zh.md) 负责这些浏览器交互,并挂载用于访问 Host Team service 的生成 Client Remote namespace。
|
|
42
|
+
|
|
43
|
+
-----
|
|
44
|
+
|
|
45
|
+
<a id="understand-the-implementation"></a>
|
|
46
|
+
## 理解实现
|
|
47
|
+
|
|
48
|
+
<details>
|
|
49
|
+
<summary>实现细节——点击展开</summary>
|
|
50
|
+
|
|
51
|
+
本包的运行时内容是 [`cordis.patch.yml`](cordis.patch.yml)。在 `dsh-web-app` 与 Host Agent Teams 层之后应用时,它唯一的 `insert` 条目会为 `@deepseek-ai/dsh-experimental-client-ui-agent-team` 添加 `ui-agent-team` 行。插入的 Client 插件负责生成的 Remote assembly 与 Team UI;这个静态 bundle 不持有可变状态,也不安装运行时不变式。
|
|
52
|
+
|
|
53
|
+
| 文件 | 职责 |
|
|
54
|
+
|---|---|
|
|
55
|
+
| [`cordis.patch.yml`](cordis.patch.yml) | 包含 `ui-agent-team` 行的有序 Web patch |
|
|
56
|
+
| [`src/index.ts`](src/index.ts) | 空模块入口;patch 是运行时内容 |
|
|
57
|
+
| — | 不发布运行时不变式伴生入口;本包是静态 bundle,不持有可独立观察的运行时关系。 |
|
|
58
|
+
|
|
59
|
+
</details>
|
|
60
|
+
|
|
61
|
+
-----
|
|
62
|
+
|
|
63
|
+
<a id="further-exploration"></a>
|
|
64
|
+
## 进一步探索
|
|
65
|
+
|
|
66
|
+
- [实验性包](../README.zh.md)——孵化状态与发布规则。
|
|
67
|
+
- [Agent Teams Host profile](../agent-team-profile/README.zh.md)——所需的 domain、Remote 与模型工具层。
|
|
68
|
+
- [Agent Teams 浏览器 UI](../client-ui-agent-team/README.zh.md)——roster、任务板与 teammate 导航行为。
|
|
69
|
+
- [Web bundle](../../bundle/web-app/README.zh.md)——本 patch 扩展的稳定浏览器层。
|
|
70
|
+
|
|
71
|
+
-----
|
|
72
|
+
|
|
73
|
+
<a id="model-experience"></a>
|
|
74
|
+
## 模型体验
|
|
75
|
+
|
|
76
|
+
通过与本 Web 层同时选择的 Host-side Agent Teams profile 间接产生影响。
|
|
77
|
+
|
|
78
|
+
#### KV Cache 影响
|
|
79
|
+
|
|
80
|
+
本 Web bundle 不添加任何模型请求内容;Host-side Team 工具负责提示词、schema 与缓存影响。
|
|
81
|
+
|
|
82
|
+
## 已知限制与延期工作
|
|
83
|
+
|
|
84
|
+
<a id="known-limitations-and-deferred-work"></a>
|
|
85
|
+
|
|
86
|
+
- **有序组合**——`dsh-base`、`dsh-web-app`、`dsh-experimental-agent-team-profile` 与本包必须保持这个顺序。
|
|
87
|
+
- **Preset-scoped 旧控制项**——稳定 Web preset 仍会在 preset scope 内挂载 continuable Subagent 控制项。顶层 Host profile override 不会替换这些 scoped registration,因此在 Web 获得 Team-aware preset 前,Team roster 与旧 child 控制项可能同时出现。[Web Agent Teams 决策](../../../.agents/notes/archived/feature/2026-08-06-agent-teams-web.md)记录了这项暂缓的 composition 工作。
|
|
88
|
+
- **仅显式启用**——本包公开发布,但随附 Web profile 默认不会启用任何 Agent Teams 层。
|
|
89
|
+
|
|
90
|
+
<a id="dev-note"></a>
|
|
91
|
+
### 开发备注
|
|
92
|
+
|
|
93
|
+
<details>
|
|
94
|
+
<summary>维护者的工作上下文——点击展开</summary>
|
|
95
|
+
|
|
96
|
+
无。
|
|
97
|
+
|
|
98
|
+
</details>
|
package/cordis.patch.yml
ADDED
package/lib/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deepseek-ai/dsh-experimental-agent-team-web-profile",
|
|
3
|
+
"description": "Experimental Web profile layer for Agent Teams Remote and UI plugins",
|
|
4
|
+
"version": "0.1.5-alpha.2",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
|
|
11
|
+
"directory": "packages/experimental/agent-team-web-profile"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "lib/index.js",
|
|
15
|
+
"types": "lib/types/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./lib/types/index.d.ts",
|
|
19
|
+
"default": "./lib/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
22
|
+
"./src/*": "./src/*",
|
|
23
|
+
"./package.json": "./package.json"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"lib/index.js",
|
|
27
|
+
"cordis.patch.yml",
|
|
28
|
+
"lib/types/**/*.d.ts"
|
|
29
|
+
],
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"dsh": {
|
|
32
|
+
"bundle": {
|
|
33
|
+
"patch": "./cordis.patch.yml"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@deepseek-ai/dsh-experimental-client-ui-agent-team": "^0.1.5-alpha.2"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"js-yaml": "^4.2.0",
|
|
44
|
+
"@deepseek-ai/cordis-plugin-include": "^1.0.7",
|
|
45
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
46
|
+
}
|
|
47
|
+
}
|