@foggy-projects/deepseek-harness-plugin 0.4.0-rc.3 → 0.4.1-rc.1
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 +32 -6
- package/docs/COMMUNITY-MARKETPLACES.md +64 -0
- package/docs/RELEASE-CANDIDATE-0.4.1-DSH-0.1.5-RC.1.md +60 -0
- package/experience/linux/README.md +2 -2
- package/experience/linux/prepare.sh +4 -4
- package/lib/index.js +1 -1
- package/lib/version.js +2 -2
- package/package.json +28 -11
- package/skills/foggy-deepseek-onboarding/assets/versions.json +4 -4
package/README.md
CHANGED
|
@@ -7,23 +7,38 @@ are downloaded only when the user selects **Initialize and start** (or the
|
|
|
7
7
|
equivalent component action). Existing installations are not silently changed
|
|
8
8
|
when the plugin package is upgraded.
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
The `0.4.1-rc.1` compatibility candidate targets DeepSeek Harness `0.1.5-rc.2`
|
|
11
|
+
and requires a system Node.js `>=24.0.0`. Foggy's Java Launcher uses a system
|
|
12
|
+
Java 17+. Foggy manages its own pinned Python 3.12 runtime
|
|
12
13
|
inside the per-user component directory; it does not require a system Python,
|
|
13
14
|
modify `PATH`, or register Python globally. Advanced users may explicitly set
|
|
14
15
|
`FOGGY_PYTHON` to a compatible Python 3.11+ executable.
|
|
15
16
|
|
|
16
|
-
## Local
|
|
17
|
+
## Local release-candidate installation
|
|
17
18
|
|
|
18
19
|
```powershell
|
|
19
|
-
dsh plugin --profile web add --workspace-root ./foggy-projects-deepseek-harness-plugin-0.4.
|
|
20
|
+
dsh plugin --profile web add --workspace-root ./foggy-projects-deepseek-harness-plugin-0.4.1-rc.1.tgz
|
|
20
21
|
```
|
|
21
22
|
|
|
22
23
|
Restart `dsh web`, use the browser it opens (or the complete printed URL,
|
|
23
24
|
including `?token=...`), open Settings → Plugins → Foggy Data Analysis, and
|
|
24
25
|
initialize the components from there. Do not share the launch-token URL.
|
|
25
26
|
|
|
26
|
-
|
|
27
|
+
For the DSH 0.1.5-rc.2 compatibility pre-release, install the exact candidate
|
|
28
|
+
so the stable `beta` channel is not changed:
|
|
29
|
+
|
|
30
|
+
```powershell
|
|
31
|
+
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@0.4.1-rc.1
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
The published candidate is also available through the dedicated `dsh015` npm
|
|
35
|
+
dist-tag:
|
|
36
|
+
|
|
37
|
+
```powershell
|
|
38
|
+
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@dsh015
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
For the existing stable beta channel, the corresponding one-line install is:
|
|
27
42
|
|
|
28
43
|
```powershell
|
|
29
44
|
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@beta
|
|
@@ -36,7 +51,7 @@ versions. Updates are blocked while Runtime is running so the active Java
|
|
|
36
51
|
process and the next-launcher state cannot diverge. Component-specific repair
|
|
37
52
|
actions remain available under **Advanced repair**.
|
|
38
53
|
|
|
39
|
-
DeepSeek Harness 0.1.
|
|
54
|
+
DeepSeek Harness 0.1.5-rc.2 applies pnpm's minimum-release-age policy to its
|
|
40
55
|
profile lockfile. An upgrade performed shortly after publication can therefore
|
|
41
56
|
fail while naming either the new plugin or the previously installed Beta. This
|
|
42
57
|
is a DSH profile-policy failure, not a damaged Foggy package. Use the exact
|
|
@@ -113,10 +128,21 @@ rollback plan.
|
|
|
113
128
|
|
|
114
129
|
See [`docs/PUBLIC-BETA-READINESS.md`](./docs/PUBLIC-BETA-READINESS.md) for the
|
|
115
130
|
tested public Beta scope, release gates, and stable-release blockers.
|
|
131
|
+
The DSH 0.1.5-rc.2 compatibility candidate is documented in
|
|
132
|
+
[`docs/RELEASE-CANDIDATE-0.4.1-DSH-0.1.5-RC.1.md`](./docs/RELEASE-CANDIDATE-0.4.1-DSH-0.1.5-RC.1.md).
|
|
116
133
|
Native Windows acceptance instructions are in
|
|
117
134
|
[`docs/WINDOWS-BETA-ACCEPTANCE.md`](./docs/WINDOWS-BETA-ACCEPTANCE.md); database
|
|
118
135
|
credentials intentionally remain outside the public repository.
|
|
119
136
|
|
|
137
|
+
## Community discovery
|
|
138
|
+
|
|
139
|
+
DeepSeek Harness does not currently publish a first-party plugin marketplace.
|
|
140
|
+
For discoverability, this repository is intended to carry the GitHub
|
|
141
|
+
[`dsh-plugin`](https://github.com/topics/dsh-plugin) topic. Independent community
|
|
142
|
+
directories and their submission rules are tracked in
|
|
143
|
+
[`docs/COMMUNITY-MARKETPLACES.md`](./docs/COMMUNITY-MARKETPLACES.md); inclusion in
|
|
144
|
+
any directory is community curation, not an endorsement by DeepSeek or Foggy.
|
|
145
|
+
|
|
120
146
|
## Linux and WSL2 experience
|
|
121
147
|
|
|
122
148
|
Ubuntu and WSL2 users can use the checked-in preflighted installer under
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# DeepSeek Harness 社区插件目录准备
|
|
2
|
+
|
|
3
|
+
状态记录:2026-09-06。DeepSeek Harness 官方页面仍标注为开发者预览版,
|
|
4
|
+
官方公开入口是源码、开发者文档、GitHub `dsh-plugin` Topic 和社区讨论,
|
|
5
|
+
目前没有看到官方一方插件市场或官方审核收录入口。
|
|
6
|
+
|
|
7
|
+
## 推荐顺序
|
|
8
|
+
|
|
9
|
+
### 1. `awesome-dsh-plugin`(优先提交)
|
|
10
|
+
|
|
11
|
+
- 目录仓库:<https://github.com/awesome-dsh-plugin/awesome-dsh-plugin>
|
|
12
|
+
- 提交方式:向该仓库提交 PR,只新增一个
|
|
13
|
+
`data/plugins/foggy-projects__foggy-deepseek-harness-plugin.yml` 文件。
|
|
14
|
+
- 主要要求:真实可用代码、仓库至少存在 1 天、添加 `dsh-plugin` Topic、
|
|
15
|
+
描述准确且不使用夸张营销语句、根包声明 `dsh.bundle`。
|
|
16
|
+
- 可选增强:在 npm 发布包中保留正确的 `repository` 字段;如提供 GitHub
|
|
17
|
+
Release `.tgz`,可在条目中声明固定版本的 `tarball`。
|
|
18
|
+
- 评审说明:CI 检查格式和 manifest,维护者会阅读目标仓库;收录不等于
|
|
19
|
+
安全审计或官方认证。
|
|
20
|
+
|
|
21
|
+
建议条目草稿:
|
|
22
|
+
|
|
23
|
+
```yaml
|
|
24
|
+
url: https://github.com/foggy-projects/foggy-deepseek-harness-plugin
|
|
25
|
+
name: foggy-projects/foggy-deepseek-harness-plugin
|
|
26
|
+
category: tools
|
|
27
|
+
description:
|
|
28
|
+
en: Foggy Java data-analysis integration for DeepSeek Harness with a managed Runtime, CLI, Launcher, onboarding Skills, and semantic-layer workflows.
|
|
29
|
+
zh: 在 DeepSeek Harness 中管理 Foggy Java 数据分析 Runtime、CLI、Launcher 与 onboarding/语义查询 Skill,支持数据库接入和语义层建模。
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### 2. `dsh-market`(市场应用,目录来自上游)
|
|
33
|
+
|
|
34
|
+
- 项目:<https://github.com/dsh-market/dsh-market>
|
|
35
|
+
- 它是可安装到 DSH 设置页的社区市场应用,本身不是目录数据源。
|
|
36
|
+
- 目录来自 `awesome-dsh-plugin`;其说明要求向上游目录提交 PR,
|
|
37
|
+
市场会自动同步,通常不需要重复提交到 `dsh-market`。
|
|
38
|
+
- 适合验证“一键安装”体验,但它不是 DeepSeek 官方产品。
|
|
39
|
+
|
|
40
|
+
### 3. `DSH-Plugins-Marketplace`(Topic 自动聚合)
|
|
41
|
+
|
|
42
|
+
- 项目:<https://github.com/bradeGithub/DSH-Plugins-Marketplace>
|
|
43
|
+
- 通过 GitHub `dsh-plugin` Topic 自动聚合,项目讨论中说明无需手工 PR,
|
|
44
|
+
Topic 出现后等待索引刷新即可。
|
|
45
|
+
- 它会安装到 DSH Web profile,适合做第二个发现入口;必须标注为第三方市场。
|
|
46
|
+
|
|
47
|
+
### 4. `dshplugin.app`(独立目录与证据页)
|
|
48
|
+
|
|
49
|
+
- 目录:<https://dshplugin.app/>
|
|
50
|
+
- 支持提交公开 GitHub 仓库,随后进行源码、manifest、依赖、安装路径和兼容性
|
|
51
|
+
信号分析。
|
|
52
|
+
- 页面明确声明其为独立社区项目,不隶属于 DeepSeek;“Indexed”不等于安全认证。
|
|
53
|
+
- 适合补充兼容性说明和安全信号展示,但不应把它描述为官方市场。
|
|
54
|
+
|
|
55
|
+
## 当前可执行清单
|
|
56
|
+
|
|
57
|
+
1. 保持当前 npm `rc` 预发布与 GitHub Release,不切换 `latest`。
|
|
58
|
+
2. 给 GitHub 仓库添加 `dsh-plugin` Topic;可同时保留
|
|
59
|
+
`deepseek-harness`、`data-analysis`、`semantic-layer` 等描述性 Topic。
|
|
60
|
+
3. 确认下一次 npm 发布继续携带 `repository`、`homepage`、`bugs` 和
|
|
61
|
+
`dsh-plugin` keywords,便于目录把 npm 包与源码仓库关联。
|
|
62
|
+
4. 优先向 `awesome-dsh-plugin` 提交上面的单文件 PR,再等待 `dsh-market`
|
|
63
|
+
同步;随后向 `dshplugin.app` 提交公开仓库 URL。
|
|
64
|
+
5. 对外文案统一使用“社区目录/第三方市场”,不使用“官方市场/官方认证”。
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Foggy DeepSeek Harness plugin 0.4.1-rc.1
|
|
2
|
+
|
|
3
|
+
This release candidate is the compatibility line for DeepSeek Harness
|
|
4
|
+
`0.1.5-rc.2`. It is published as a separate pre-release so the existing
|
|
5
|
+
`0.4.0-rc.3`/`beta` installation path remains unchanged while the new Harness
|
|
6
|
+
client is evaluated.
|
|
7
|
+
|
|
8
|
+
## Compatibility changes
|
|
9
|
+
|
|
10
|
+
- Align DSH peer packages with `0.1.5-rc.2` and Cordis `4.0.2`.
|
|
11
|
+
- Remove the obsolete `@deepseek-ai/dsh-client-runtime` injection. DSH
|
|
12
|
+
`0.1.5-rc.2` does not ship that package and the plugin does not use its API.
|
|
13
|
+
- Require Node.js `>=24.0.0`. DSH 0.1.5 uses modern ESM entry-point behavior;
|
|
14
|
+
the plugin fails early with a visible prerequisite error on older Node lines.
|
|
15
|
+
- Pin the onboarding manifest to DSH `0.1.5-rc.2` and keep the Foggy CLI,
|
|
16
|
+
Launcher, and Skills pins unchanged.
|
|
17
|
+
|
|
18
|
+
The plugin's remote service, native Skill provider, locale registration, and
|
|
19
|
+
Settings → Plugins tab continue to use the same public APIs. The DSH 0.1.5
|
|
20
|
+
web client adds file/sidebar features, but none of those changes are required
|
|
21
|
+
by Foggy's integration.
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
Use Node.js 24 or newer and install the exact candidate in a separate profile:
|
|
26
|
+
|
|
27
|
+
```powershell
|
|
28
|
+
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@0.4.1-rc.1
|
|
29
|
+
dsh web
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The npm `dsh015` dist-tag points to this candidate. Existing users of the
|
|
33
|
+
stable `beta` tag are not moved automatically.
|
|
34
|
+
|
|
35
|
+
## Verification gate
|
|
36
|
+
|
|
37
|
+
The candidate must pass all of the following before it replaces the stable
|
|
38
|
+
baseline:
|
|
39
|
+
|
|
40
|
+
1. npm package shape and Node syntax checks;
|
|
41
|
+
2. the repository onboarding/unit test suite;
|
|
42
|
+
3. a clean DSH `0.1.5-rc.2` profile can add the package without an impossible
|
|
43
|
+
`dsh-client-runtime` peer resolution;
|
|
44
|
+
4. `dsh --version` reports `0.1.5-rc.2` and `dsh web --no-open` starts under
|
|
45
|
+
Node 24;
|
|
46
|
+
5. the web Settings → Plugins page loads Foggy's tab, native Skills are
|
|
47
|
+
discoverable, and the plugin status remote responds;
|
|
48
|
+
6. Foggy initialization remains development-only and does not restart a
|
|
49
|
+
healthy Runtime during datasource/model onboarding.
|
|
50
|
+
|
|
51
|
+
The candidate does not change Foggy Runtime/Launcher binaries or production
|
|
52
|
+
deployment policy. If a DSH profile reports
|
|
53
|
+
`ERR_PNPM_MINIMUM_RELEASE_AGE_VIOLATION`, rebuild only that profile's lockfile
|
|
54
|
+
and retry the exact add command; do not disable pnpm's policy globally.
|
|
55
|
+
|
|
56
|
+
## Upstream references
|
|
57
|
+
|
|
58
|
+
- [DeepSeek Harness v0.1.5-rc.2 release](https://github.com/deepseek-ai/deepseek-harness/releases/tag/dsh-v0.1.5-rc.2)
|
|
59
|
+
- [DeepSeek Harness release history](https://github.com/deepseek-ai/deepseek-harness/releases)
|
|
60
|
+
- [Node entry-point compatibility discussion](https://github.com/deepseek-ai/deepseek-harness/discussions/6124)
|
|
@@ -5,7 +5,7 @@ It has been designed for Ubuntu 22.04/24.04 x86_64 and WSL2.
|
|
|
5
5
|
|
|
6
6
|
## Prerequisites
|
|
7
7
|
|
|
8
|
-
- Node.js
|
|
8
|
+
- Node.js `>=24.0.0` (the DSH 0.1.5-rc.2 compatibility candidate)
|
|
9
9
|
- Java 17 or newer
|
|
10
10
|
- Git, npm, and `tar`
|
|
11
11
|
- At least 4 GiB free disk space and 2 GiB available memory; 4 GiB memory is recommended
|
|
@@ -22,7 +22,7 @@ bash experience/linux/prepare.sh --dry-run
|
|
|
22
22
|
bash experience/linux/prepare.sh
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
The script installs pinned pnpm and DeepSeek Harness
|
|
25
|
+
The script installs pinned pnpm and DeepSeek Harness 0.1.5-rc.2 inside
|
|
26
26
|
`~/.local/share/foggy-deepseek-harness-experience`, clones and packs the public Foggy Bundle, and
|
|
27
27
|
adds it to a clean DSH web profile. It does not use `sudo`, install operating-system packages, write
|
|
28
28
|
model credentials, initialize Foggy components, or start the web process.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
-
DSH_VERSION="0.1.
|
|
4
|
+
DSH_VERSION="0.1.5-rc.2"
|
|
5
5
|
PNPM_VERSION="11.7.0"
|
|
6
|
-
PLUGIN_VERSION="0.4.
|
|
6
|
+
PLUGIN_VERSION="0.4.1-rc.1"
|
|
7
7
|
PLUGIN_REF="v${PLUGIN_VERSION}"
|
|
8
8
|
PLUGIN_REPOSITORY="https://github.com/foggy-projects/foggy-deepseek-harness-plugin.git"
|
|
9
9
|
|
|
@@ -73,8 +73,8 @@ require_command git
|
|
|
73
73
|
require_command df
|
|
74
74
|
require_command tar
|
|
75
75
|
|
|
76
|
-
node -e 'const [major
|
|
77
|
-
|| fail "Node
|
|
76
|
+
node -e 'const [major] = process.versions.node.split(".").map(Number); if (major < 24) process.exit(1)' \
|
|
77
|
+
|| fail "Node >=24 required for DeepSeek Harness 0.1.5-rc.2; detected $(node --version 2>/dev/null || echo unknown)"
|
|
78
78
|
|
|
79
79
|
java_major="$(java -version 2>&1 | awk -F'[\".]' '/version/ { print $2; exit }')"
|
|
80
80
|
[[ "$java_major" =~ ^[0-9]+$ ]] || fail "could not detect Java version"
|
package/lib/index.js
CHANGED
|
@@ -155,7 +155,7 @@ async function runOnboarding(args, timeout = 15 * 60_000, options = {}) {
|
|
|
155
155
|
|
|
156
156
|
async function assertSystemPrerequisites(kind) {
|
|
157
157
|
if (kind === 'initialize' && !compatibleNode(process.versions.node)) {
|
|
158
|
-
throw new Error(`DeepSeek Harness requires Node.js
|
|
158
|
+
throw new Error(`DeepSeek Harness 0.1.5-rc.2 requires Node.js >=24.0.0; detected ${process.versions.node}`)
|
|
159
159
|
}
|
|
160
160
|
if (kind === 'initialize' || kind === 'runtime-start') {
|
|
161
161
|
const java = compatible(await commandVersion(process.env.JAVA_EXE || 'java', ['-version']), '17.0')
|
package/lib/version.js
CHANGED
|
@@ -15,6 +15,6 @@ export function compatible(probe, minimum) {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
export function compatibleNode(version) {
|
|
18
|
-
const [major
|
|
19
|
-
return
|
|
18
|
+
const [major] = String(version).split('.').map(Number)
|
|
19
|
+
return major >= 24
|
|
20
20
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foggy-projects/deepseek-harness-plugin",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1-rc.1",
|
|
4
4
|
"description": "Foggy Java data analysis engine integration for DeepSeek Harness",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"deepseek-harness",
|
|
7
|
+
"dsh",
|
|
8
|
+
"dsh-plugin",
|
|
9
|
+
"foggy",
|
|
10
|
+
"data-analysis",
|
|
11
|
+
"semantic-layer",
|
|
12
|
+
"runtime"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/foggy-projects/foggy-deepseek-harness-plugin#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/foggy-projects/foggy-deepseek-harness-plugin/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/foggy-projects/foggy-deepseek-harness-plugin.git"
|
|
21
|
+
},
|
|
5
22
|
"type": "module",
|
|
6
23
|
"main": "./lib/index.js",
|
|
7
24
|
"exports": {
|
|
@@ -22,13 +39,15 @@
|
|
|
22
39
|
"docs/PUBLIC-BETA-READINESS.md",
|
|
23
40
|
"docs/RELEASE-CANDIDATE-0.4.0-RC.2.md",
|
|
24
41
|
"docs/RELEASE-CANDIDATE-0.4.0-RC.3.md",
|
|
42
|
+
"docs/RELEASE-CANDIDATE-0.4.1-DSH-0.1.5-RC.1.md",
|
|
43
|
+
"docs/COMMUNITY-MARKETPLACES.md",
|
|
25
44
|
"docs/WINDOWS-BETA-ACCEPTANCE.md",
|
|
26
45
|
"THIRD-PARTY-RUNTIME-NOTICES.md",
|
|
27
46
|
"README.md"
|
|
28
47
|
],
|
|
29
48
|
"license": "Apache-2.0",
|
|
30
49
|
"engines": {
|
|
31
|
-
"node": "
|
|
50
|
+
"node": ">=24.0.0"
|
|
32
51
|
},
|
|
33
52
|
"dsh": {
|
|
34
53
|
"bundle": {
|
|
@@ -38,7 +57,6 @@
|
|
|
38
57
|
"platform": "web",
|
|
39
58
|
"inject": [
|
|
40
59
|
"@deepseek-ai/dsh-api-remotes",
|
|
41
|
-
"@deepseek-ai/dsh-client-runtime",
|
|
42
60
|
"@deepseek-ai/dsh-client-locale",
|
|
43
61
|
"@deepseek-ai/dsh-client-ui-settings",
|
|
44
62
|
"@deepseek-ai/dsh-client-ui-settings-plugins"
|
|
@@ -49,14 +67,13 @@
|
|
|
49
67
|
"zod": "^4.4.3"
|
|
50
68
|
},
|
|
51
69
|
"peerDependencies": {
|
|
52
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
53
|
-
"@deepseek-ai/dsh-api-remotes": "^0.1.
|
|
54
|
-
"@deepseek-ai/dsh-client-locale": "^0.1.
|
|
55
|
-
"@deepseek-ai/dsh-client-
|
|
56
|
-
"@deepseek-ai/dsh-client-ui-settings": "^0.1.
|
|
57
|
-
"@deepseek-ai/dsh-
|
|
58
|
-
"@deepseek-ai/dsh-
|
|
59
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-rc.1"
|
|
70
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
71
|
+
"@deepseek-ai/dsh-api-remotes": "^0.1.5-rc.2",
|
|
72
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.5-rc.2",
|
|
73
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.5-rc.2",
|
|
74
|
+
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.5-rc.2",
|
|
75
|
+
"@deepseek-ai/dsh-skill": "^0.1.5-rc.2",
|
|
76
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.5-rc.2"
|
|
60
77
|
},
|
|
61
78
|
"scripts": {
|
|
62
79
|
"check": "node --check lib/index.js && node --check lib/atomic-json.js && node --check lib/diagnostics.js && node --check lib/python-runtime.js && node --check lib/runtime-settings.js && node --check lib/skill-provider.js && node --check lib/client.js && node --check lib/typert.js && node --check lib/remote.js",
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "foggy-deepseek-onboarding-versions/v1",
|
|
3
|
-
"packageVersion": "0.4.
|
|
4
|
-
"validatedAt": "2026-09-
|
|
3
|
+
"packageVersion": "0.4.1-rc.1",
|
|
4
|
+
"validatedAt": "2026-09-13",
|
|
5
5
|
"components": {
|
|
6
6
|
"deepseekHarness": {
|
|
7
|
-
"version": "0.1.
|
|
8
|
-
"minimumNodeVersion": "
|
|
7
|
+
"version": "0.1.5-rc.2",
|
|
8
|
+
"minimumNodeVersion": "24.0.0"
|
|
9
9
|
},
|
|
10
10
|
"python": {
|
|
11
11
|
"version": "3.12.13",
|