dsh-bailinghub 0.1.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/CHANGELOG.md +7 -0
- package/LICENSE +21 -0
- package/PRIVACY.md +11 -0
- package/README.md +105 -0
- package/README.zh-CN.md +94 -0
- package/SECURITY.md +20 -0
- package/cordis.patch.yml +15 -0
- package/docs/COMPATIBILITY.md +15 -0
- package/docs/PROJECT_BOUNDARIES.md +22 -0
- package/package.json +59 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.0 - 2026-08-18
|
|
4
|
+
|
|
5
|
+
- Add an installable DeepSeek Harness bundle for BailingHub.
|
|
6
|
+
- Expose the existing submit, get, and bounded-wait MCP tools under the `bailinghub` namespace.
|
|
7
|
+
- Pin `bailinghub-mcp-server@0.1.1` and keep route and credentials outside model arguments.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 BailingHub Contributors
|
|
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/PRIVACY.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Privacy
|
|
2
|
+
|
|
3
|
+
This bundle adds no telemetry and stores no BailingHub credentials or task payloads.
|
|
4
|
+
|
|
5
|
+
Task text submitted through the installed tools is sent to the BailingHub deployment chosen
|
|
6
|
+
by the operator. DeepSeek Harness, the configured model provider, BailingHub, and the target
|
|
7
|
+
business system each have their own data-retention boundary. Review those deployments before
|
|
8
|
+
using personal, confidential, or regulated data.
|
|
9
|
+
|
|
10
|
+
Do not include tokens, private URLs, personal information, or production payloads in public
|
|
11
|
+
issues, screenshots, or compatibility reports.
|
package/README.md
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# BailingHub for DeepSeek Harness
|
|
2
|
+
|
|
3
|
+
[简体中文](README.zh-CN.md) | English
|
|
4
|
+
|
|
5
|
+
Run governed tasks from DeepSeek Harness against a business route already connected to
|
|
6
|
+
BailingHub, then track the same job and read its available result. You can do this from the
|
|
7
|
+
Harness Web UI on your own computer without opening the embedded chat page in each business
|
|
8
|
+
backend.
|
|
9
|
+
|
|
10
|
+
This is an independent community integration. It is not developed, certified, endorsed, or
|
|
11
|
+
recommended by DeepSeek.
|
|
12
|
+
|
|
13
|
+
## What You Get
|
|
14
|
+
|
|
15
|
+
After installation, DeepSeek Harness discovers three native tools:
|
|
16
|
+
|
|
17
|
+
| Harness tool | What it does |
|
|
18
|
+
| --- | --- |
|
|
19
|
+
| `mcp__bailinghub__submit_governed_job` | Submit task text with a stable request ID |
|
|
20
|
+
| `mcp__bailinghub__get_governed_job` | Read the current state and public result of one job |
|
|
21
|
+
| `mcp__bailinghub__wait_for_governed_job` | Wait briefly for the same job without resubmitting it |
|
|
22
|
+
|
|
23
|
+
BailingHub remains the control plane between the model and the business system. The URL,
|
|
24
|
+
Client Token, and route are operator configuration, not model arguments. The model cannot
|
|
25
|
+
switch to another route or supply administrator, executor, approval, or business-system
|
|
26
|
+
credentials through these tools.
|
|
27
|
+
|
|
28
|
+
## Install
|
|
29
|
+
|
|
30
|
+
Prerequisites:
|
|
31
|
+
|
|
32
|
+
- Node.js `22.19.0+` or `24+`;
|
|
33
|
+
- `pnpm` and `@deepseek-ai/dsh@0.1.0-rc.7`;
|
|
34
|
+
- a reachable [BailingHub deployment](https://github.com/bailinghub/bailinghub#quick-start);
|
|
35
|
+
- one BailingHub Client Token restricted to the route you want this Harness profile to use.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install --global pnpm @deepseek-ai/dsh@0.1.0-rc.7
|
|
39
|
+
dsh plugin --profile web add dsh-bailinghub@0.1.0
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Configure the process that starts Harness:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
export BAILINGHUB_BASE_URL='https://hub.example.com'
|
|
46
|
+
export BAILINGHUB_CLIENT_TOKEN='replace-with-a-route-scoped-client-token'
|
|
47
|
+
export BAILINGHUB_ROUTE='order_assistant'
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Then verify the composed profile and start the local Web UI:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
dsh --profile web --dump-config
|
|
54
|
+
dsh web
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
The default Web UI is local to your computer. Ask Harness to submit a task through
|
|
58
|
+
BailingHub, preserve the returned `job_id`, and wait for or query that same job.
|
|
59
|
+
|
|
60
|
+
For a first try, use a task supported by your configured route and say explicitly: submit it
|
|
61
|
+
once with a stable `request_id`, preserve the returned `job_id`, and query that same job if a
|
|
62
|
+
bounded wait times out.
|
|
63
|
+
|
|
64
|
+
## Correct Task Flow
|
|
65
|
+
|
|
66
|
+
1. Generate one stable `request_id` for one business request.
|
|
67
|
+
2. Call `mcp__bailinghub__submit_governed_job` once.
|
|
68
|
+
3. Preserve its `job_id`.
|
|
69
|
+
4. Call `wait_for_governed_job`, or call `get_governed_job` later.
|
|
70
|
+
5. A wait timeout is not a failed task. Do not submit a replacement request.
|
|
71
|
+
|
|
72
|
+
## Identity and Permission Boundary
|
|
73
|
+
|
|
74
|
+
Using the local Harness UI removes the need to open a business backend's embedded chat UI;
|
|
75
|
+
it does **not** turn the Harness login or local user into a trusted business identity.
|
|
76
|
+
Version `0.1.0` deliberately does not accept an acting subject as tool input. A route or
|
|
77
|
+
downstream business system must still resolve trusted identity and perform final
|
|
78
|
+
authorization. If the selected action requires identity that the configured path cannot
|
|
79
|
+
establish, it should remain unavailable or be rejected.
|
|
80
|
+
|
|
81
|
+
This bundle governs only tasks submitted through its three BailingHub tools. It does not
|
|
82
|
+
intercept or govern every other tool installed in DeepSeek Harness.
|
|
83
|
+
|
|
84
|
+
## Supply-Chain Note
|
|
85
|
+
|
|
86
|
+
This bundle contains no custom runtime JavaScript, no production dependencies, and no
|
|
87
|
+
install scripts. When Harness starts the bundle, its built-in MCP Client runs the pinned
|
|
88
|
+
command `npx -y --package=bailinghub-mcp-server@0.1.1 bailinghub-mcp-server` outside the
|
|
89
|
+
agent sandbox. The first start may
|
|
90
|
+
need npm network access. Review and pin the package before using it in a sensitive
|
|
91
|
+
environment; production images may pre-cache the exact version.
|
|
92
|
+
|
|
93
|
+
Non-loopback HTTP is rejected by the MCP server by default. Only set
|
|
94
|
+
`BAILINGHUB_ALLOW_INSECURE_HTTP=true` on a controlled private network where TLS terminates at
|
|
95
|
+
another trusted boundary.
|
|
96
|
+
|
|
97
|
+
## Compatibility and Feedback
|
|
98
|
+
|
|
99
|
+
The first release is verified against DeepSeek Harness `0.1.0-rc.7`,
|
|
100
|
+
`bailinghub-mcp-server@0.1.1`, and BailingHub Client API v1. Harness is still a developer
|
|
101
|
+
preview, so each Harness release requires a compatibility smoke test.
|
|
102
|
+
|
|
103
|
+
Report problems through [GitHub Issues](https://github.com/bailinghub/bailinghub-dsh-plugin/issues).
|
|
104
|
+
Never include tokens, private deployment URLs, personal information, or production business
|
|
105
|
+
payloads.
|
package/README.zh-CN.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# BailingHub for DeepSeek Harness
|
|
2
|
+
|
|
3
|
+
[English](README.md) | 简体中文
|
|
4
|
+
|
|
5
|
+
在电脑上的 DeepSeek Harness 里,通过 BailingHub 向已经接入的业务 route 发起受控任务,
|
|
6
|
+
并在同一会话中持续查看状态和可用结果,不必再进入每个业务后台里的嵌入聊天入口。
|
|
7
|
+
|
|
8
|
+
这是独立社区集成,不是 DeepSeek 官方开发、认证、合作、背书或推荐的插件。
|
|
9
|
+
|
|
10
|
+
## 使用者得到什么
|
|
11
|
+
|
|
12
|
+
安装后,DeepSeek Harness 会发现三个原生工具:
|
|
13
|
+
|
|
14
|
+
| Harness 工具 | 能力 |
|
|
15
|
+
| --- | --- |
|
|
16
|
+
| `mcp__bailinghub__submit_governed_job` | 使用稳定请求 ID 提交一项业务任务 |
|
|
17
|
+
| `mcp__bailinghub__get_governed_job` | 查询同一个任务的当前状态和公开结果 |
|
|
18
|
+
| `mcp__bailinghub__wait_for_governed_job` | 有界等待同一个任务,不重复提交 |
|
|
19
|
+
|
|
20
|
+
BailingHub 仍位于模型与业务系统之间。中枢地址、Client Token 和 route 都由运营者预先
|
|
21
|
+
配置,不是模型参数;模型不能借工具参数切换 route,也不能提交管理员凭据、执行器凭据、
|
|
22
|
+
审批结论或业务系统密钥。
|
|
23
|
+
|
|
24
|
+
## 安装
|
|
25
|
+
|
|
26
|
+
前置条件:
|
|
27
|
+
|
|
28
|
+
- Node.js `22.19.0+` 或 `24+`;
|
|
29
|
+
- 已安装 `pnpm` 与 `@deepseek-ai/dsh@0.1.0-rc.7`;
|
|
30
|
+
- 一套可访问的 [BailingHub](https://github.com/bailinghub/bailinghub#快速上手);
|
|
31
|
+
- 一个只允许目标 route 的 BailingHub Client Token。
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm install --global pnpm @deepseek-ai/dsh@0.1.0-rc.7
|
|
35
|
+
dsh plugin --profile web add dsh-bailinghub@0.1.0
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
在启动 Harness 的终端或进程环境中配置:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
export BAILINGHUB_BASE_URL='https://hub.example.com'
|
|
42
|
+
export BAILINGHUB_CLIENT_TOKEN='替换为仅允许指定-route-的-client-token'
|
|
43
|
+
export BAILINGHUB_ROUTE='order_assistant'
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
检查最终配置,然后启动本机 Web 界面:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
dsh --profile web --dump-config
|
|
50
|
+
dsh web
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
接下来可以直接要求 Harness 通过 BailingHub 提交任务、保存返回的 `job_id`,并等待或
|
|
54
|
+
查询同一个任务。
|
|
55
|
+
|
|
56
|
+
第一次尝试时,请选择当前 route 已支持的任务,并明确要求:使用稳定 `request_id` 只提交
|
|
57
|
+
一次,保存返回的 `job_id`;有界等待超时后,只查询同一个任务,不要重新提交。
|
|
58
|
+
|
|
59
|
+
## 正确任务流程
|
|
60
|
+
|
|
61
|
+
1. 为一项业务请求生成一个稳定的 `request_id`;
|
|
62
|
+
2. 只调用一次 `mcp__bailinghub__submit_governed_job`;
|
|
63
|
+
3. 保存返回的 `job_id`;
|
|
64
|
+
4. 短时调用 `wait_for_governed_job`,或者稍后调用 `get_governed_job`;
|
|
65
|
+
5. 等待超时不等于任务失败,不能因此重新提交一份替代任务。
|
|
66
|
+
|
|
67
|
+
## 身份与权限边界
|
|
68
|
+
|
|
69
|
+
使用本机 Harness 界面,省掉的是“必须打开业务后台聊天入口”这一步;它不代表 Harness
|
|
70
|
+
登录态或本机用户自动成为可信业务身份。`0.1.0` 有意不接受模型传入行动主体。route 或
|
|
71
|
+
下游业务系统仍需解析可信主体并执行最终授权;如果目标动作必须具备业务身份,而当前接入
|
|
72
|
+
路径无法建立该身份,该动作就应保持不可用或被拒绝。
|
|
73
|
+
|
|
74
|
+
本 Bundle 只治理通过这三个 BailingHub 工具提交的任务,不会自动拦截 Harness 中安装的
|
|
75
|
+
其他工具。
|
|
76
|
+
|
|
77
|
+
## 供应链说明
|
|
78
|
+
|
|
79
|
+
这个 Bundle 没有自定义运行时代码、生产依赖和安装脚本。Harness 启动时,会由内置 MCP
|
|
80
|
+
Client 在 Agent 沙箱之外执行固定命令
|
|
81
|
+
`npx -y --package=bailinghub-mcp-server@0.1.1 bailinghub-mcp-server`。首次启动可能需要
|
|
82
|
+
访问 npm;敏感环境应审查并固定版本,生产镜像可提前缓存该精确版本。
|
|
83
|
+
|
|
84
|
+
MCP Server 默认拒绝非回环明文 HTTP。只有在受控私网中已经由其他可信边界终止 TLS 时,
|
|
85
|
+
才可设置 `BAILINGHUB_ALLOW_INSECURE_HTTP=true`。
|
|
86
|
+
|
|
87
|
+
## 兼容范围与反馈
|
|
88
|
+
|
|
89
|
+
首版验证范围为 DeepSeek Harness `0.1.0-rc.7`、`bailinghub-mcp-server@0.1.1` 与
|
|
90
|
+
BailingHub Client API v1。Harness 当前仍是 Developer Preview,升级 Harness 后应重新
|
|
91
|
+
执行兼容性 Smoke。
|
|
92
|
+
|
|
93
|
+
问题请提交到 [GitHub Issues](https://github.com/bailinghub/bailinghub-dsh-plugin/issues)。
|
|
94
|
+
请勿附带 Token、私有部署地址、个人信息或生产业务数据。
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
Report vulnerabilities through a private GitHub Security Advisory in this repository.
|
|
4
|
+
Do not put tokens, private deployment URLs, personal information, or raw business payloads
|
|
5
|
+
in a public issue.
|
|
6
|
+
|
|
7
|
+
## Boundary
|
|
8
|
+
|
|
9
|
+
This bundle contributes configuration only. It has no custom runtime JavaScript, production
|
|
10
|
+
dependencies, or install-time scripts. On Harness startup, the built-in DSH MCP Client runs
|
|
11
|
+
the exact external command
|
|
12
|
+
`npx -y --package=bailinghub-mcp-server@0.1.1 bailinghub-mcp-server` outside the agent sandbox.
|
|
13
|
+
Treat that package as trusted executable code and review any version change before upgrade.
|
|
14
|
+
|
|
15
|
+
Use a dedicated BailingHub Client Token restricted to one route. The bundle must never
|
|
16
|
+
receive an administrator token, executor token, approval credential, business-system secret,
|
|
17
|
+
or acting-subject credential. Route, URL, and token stay in operator-controlled environment
|
|
18
|
+
configuration and are never model tool arguments.
|
|
19
|
+
|
|
20
|
+
Non-loopback HTTP is denied by default. Do not enable insecure HTTP on an untrusted network.
|
package/cordis.patch.yml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
- insert:
|
|
2
|
+
- id: mcp-bailinghub
|
|
3
|
+
name: '@deepseek-ai/dsh-mcp-client'
|
|
4
|
+
config:
|
|
5
|
+
serverName: bailinghub
|
|
6
|
+
transport: stdio
|
|
7
|
+
command: npx
|
|
8
|
+
args: ['-y', '--package=bailinghub-mcp-server@0.1.1', 'bailinghub-mcp-server']
|
|
9
|
+
env:
|
|
10
|
+
BAILINGHUB_BASE_URL: !!js process.env.BAILINGHUB_BASE_URL ?? ''
|
|
11
|
+
BAILINGHUB_CLIENT_TOKEN: !!js process.env.BAILINGHUB_CLIENT_TOKEN ?? ''
|
|
12
|
+
BAILINGHUB_ROUTE: !!js process.env.BAILINGHUB_ROUTE ?? ''
|
|
13
|
+
BAILINGHUB_ALLOW_INSECURE_HTTP: !!js process.env.BAILINGHUB_ALLOW_INSECURE_HTTP ?? 'false'
|
|
14
|
+
toolCallTimeoutMs: 90000
|
|
15
|
+
failOnStartupError: true
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Compatibility
|
|
2
|
+
|
|
3
|
+
| Component | Verified version |
|
|
4
|
+
| --- | --- |
|
|
5
|
+
| DeepSeek Harness | `0.1.0-rc.7` |
|
|
6
|
+
| DSH MCP Client | in-box version shipped by `0.1.0-rc.7` |
|
|
7
|
+
| BailingHub MCP Server | `0.1.1` |
|
|
8
|
+
| BailingHub Client API | `bailing.client-api.v1` |
|
|
9
|
+
| Node.js | `22.19.0+` |
|
|
10
|
+
|
|
11
|
+
DeepSeek Harness is currently a developer preview. Compatibility with another Harness release
|
|
12
|
+
must be rechecked before changing this table or the package's supported range.
|
|
13
|
+
|
|
14
|
+
The bundle uses DSH's in-box `@deepseek-ai/dsh-mcp-client`; it intentionally does not install a
|
|
15
|
+
second copy into the profile. The stdio child is pinned to `bailinghub-mcp-server@0.1.1`.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Project Boundaries
|
|
2
|
+
|
|
3
|
+
The dependency direction is one-way:
|
|
4
|
+
|
|
5
|
+
```text
|
|
6
|
+
dsh-bailinghub
|
|
7
|
+
-> DeepSeek Harness in-box MCP Client
|
|
8
|
+
-> bailinghub-mcp-server
|
|
9
|
+
-> BailingHub public Client API
|
|
10
|
+
-> operator-selected business route
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
This repository owns only the DSH bundle and its compatibility evidence. It does not fork or
|
|
14
|
+
modify DeepSeek Harness, BailingHub Core, the generic MCP adapter, or a downstream business
|
|
15
|
+
system.
|
|
16
|
+
|
|
17
|
+
The integration does not establish a trusted business subject, grant permissions, make an
|
|
18
|
+
approval decision, or replace the business system's final authorization. It also does not
|
|
19
|
+
govern DSH tools that are unrelated to the three BailingHub MCP tools.
|
|
20
|
+
|
|
21
|
+
DeepSeek and DeepSeek Harness are names of their respective owners. This is an independent
|
|
22
|
+
community integration, not an official DeepSeek plugin or partnership.
|
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-bailinghub",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Use DeepSeek Harness to submit and follow governed business tasks through BailingHub.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "BailingHub Contributors",
|
|
9
|
+
"email": "niejingchuan@live.com"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/bailinghub/bailinghub-dsh-plugin.git"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/bailinghub/bailinghub-dsh-plugin/issues"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/bailinghub/bailinghub-dsh-plugin#readme",
|
|
19
|
+
"keywords": [
|
|
20
|
+
"deepseek-harness",
|
|
21
|
+
"dsh",
|
|
22
|
+
"dsh-plugin",
|
|
23
|
+
"bailinghub",
|
|
24
|
+
"mcp",
|
|
25
|
+
"ai-agent-governance",
|
|
26
|
+
"business-system-automation",
|
|
27
|
+
"human-in-the-loop",
|
|
28
|
+
"audit-trail",
|
|
29
|
+
"self-hosted"
|
|
30
|
+
],
|
|
31
|
+
"files": [
|
|
32
|
+
"cordis.patch.yml",
|
|
33
|
+
"README.zh-CN.md",
|
|
34
|
+
"SECURITY.md",
|
|
35
|
+
"PRIVACY.md",
|
|
36
|
+
"CHANGELOG.md",
|
|
37
|
+
"docs/COMPATIBILITY.md",
|
|
38
|
+
"docs/PROJECT_BOUNDARIES.md"
|
|
39
|
+
],
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": "^22.19.0 || >=24.0.0"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"check:project": "node scripts/check-project.mjs",
|
|
45
|
+
"check:release-tag": "node scripts/check-release-tag.mjs",
|
|
46
|
+
"test": "node --test tests/*.test.mjs",
|
|
47
|
+
"verify": "npm run check:project && npm test",
|
|
48
|
+
"prepack": "npm run verify"
|
|
49
|
+
},
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public",
|
|
52
|
+
"provenance": true
|
|
53
|
+
},
|
|
54
|
+
"dsh": {
|
|
55
|
+
"bundle": {
|
|
56
|
+
"patch": "./cordis.patch.yml"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|