@foggy-projects/deepseek-harness-plugin 0.4.1-rc.1 → 0.4.2-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 +19 -13
- package/docs/RELEASE-CANDIDATE-0.4.2-DSH-0.1.7-RC.1.md +62 -0
- package/experience/linux/README.md +2 -2
- package/experience/linux/prepare.sh +3 -3
- package/lib/index.js +1 -1
- package/lib/remote-descriptor.js +12 -10
- package/package.json +8 -7
- package/skills/foggy-deepseek-onboarding/assets/versions.json +3 -3
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ 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
|
-
The `0.4.
|
|
10
|
+
The `0.4.2-rc.1` compatibility candidate targets DeepSeek Harness `0.1.7-rc.2`
|
|
11
11
|
and requires a system Node.js `>=24.0.0`. Foggy's Java Launcher uses a system
|
|
12
12
|
Java 17+. Foggy manages its own pinned Python 3.12 runtime
|
|
13
13
|
inside the per-user component directory; it does not require a system Python,
|
|
@@ -17,27 +17,31 @@ modify `PATH`, or register Python globally. Advanced users may explicitly set
|
|
|
17
17
|
## Local release-candidate installation
|
|
18
18
|
|
|
19
19
|
```powershell
|
|
20
|
-
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.2-rc.1.tgz
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Restart `dsh web`, use the browser it opens (or the complete printed URL,
|
|
24
24
|
including `?token=...`), open Settings → Plugins → Foggy Data Analysis, and
|
|
25
25
|
initialize the components from there. Do not share the launch-token URL.
|
|
26
26
|
|
|
27
|
-
For the DSH 0.1.
|
|
27
|
+
For the DSH 0.1.7-rc.2 compatibility pre-release, install the exact candidate
|
|
28
28
|
so the stable `beta` channel is not changed:
|
|
29
29
|
|
|
30
30
|
```powershell
|
|
31
|
-
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@0.4.
|
|
31
|
+
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@0.4.2-rc.1
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
The published candidate is also available through the dedicated `
|
|
34
|
+
The published candidate is also available through the dedicated `dsh017` npm
|
|
35
35
|
dist-tag:
|
|
36
36
|
|
|
37
37
|
```powershell
|
|
38
|
-
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@
|
|
38
|
+
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@dsh017
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
The earlier DSH `0.1.5-rc.2` compatibility candidate remains available as
|
|
42
|
+
`@foggy-projects/deepseek-harness-plugin@dsh015`; neither candidate moves the
|
|
43
|
+
existing `beta` channel.
|
|
44
|
+
|
|
41
45
|
For the existing stable beta channel, the corresponding one-line install is:
|
|
42
46
|
|
|
43
47
|
```powershell
|
|
@@ -51,12 +55,12 @@ versions. Updates are blocked while Runtime is running so the active Java
|
|
|
51
55
|
process and the next-launcher state cannot diverge. Component-specific repair
|
|
52
56
|
actions remain available under **Advanced repair**.
|
|
53
57
|
|
|
54
|
-
DeepSeek Harness
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
DeepSeek Harness profiles can apply pnpm's minimum-release-age policy to their
|
|
59
|
+
lockfiles. An upgrade performed shortly after publication can therefore fail
|
|
60
|
+
while naming either the new plugin or a previously installed version. This is
|
|
61
|
+
a DSH profile-policy failure, not a damaged Foggy package. Use the exact profile
|
|
62
|
+
directory printed in the error and rebuild its lockfile, then rerun the same
|
|
63
|
+
`dsh plugin add` command:
|
|
60
64
|
|
|
61
65
|
```powershell
|
|
62
66
|
Set-Location "<the DSH profile directory printed in the error>"
|
|
@@ -128,7 +132,9 @@ rollback plan.
|
|
|
128
132
|
|
|
129
133
|
See [`docs/PUBLIC-BETA-READINESS.md`](./docs/PUBLIC-BETA-READINESS.md) for the
|
|
130
134
|
tested public Beta scope, release gates, and stable-release blockers.
|
|
131
|
-
The DSH 0.1.
|
|
135
|
+
The DSH 0.1.7-rc.2 compatibility candidate is documented in
|
|
136
|
+
[`docs/RELEASE-CANDIDATE-0.4.2-DSH-0.1.7-RC.1.md`](./docs/RELEASE-CANDIDATE-0.4.2-DSH-0.1.7-RC.1.md).
|
|
137
|
+
The earlier DSH 0.1.5-rc.2 candidate is documented in
|
|
132
138
|
[`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).
|
|
133
139
|
Native Windows acceptance instructions are in
|
|
134
140
|
[`docs/WINDOWS-BETA-ACCEPTANCE.md`](./docs/WINDOWS-BETA-ACCEPTANCE.md); database
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Foggy DeepSeek Harness plugin 0.4.2-rc.1
|
|
2
|
+
|
|
3
|
+
This isolated compatibility candidate targets DeepSeek Harness `0.1.7-rc.2`.
|
|
4
|
+
It requires system Node.js `>=24.0.0`. It is deliberately published under a
|
|
5
|
+
dedicated npm dist-tag so the existing `beta`, `rc`, and `dsh015` installation
|
|
6
|
+
channels remain unchanged.
|
|
7
|
+
|
|
8
|
+
## Compatibility changes
|
|
9
|
+
|
|
10
|
+
- Adapt strict Typert codecs to the `create()` schema factory required by DSH
|
|
11
|
+
`0.1.7`, while retaining the `schema` property used by the earlier `0.1.5`
|
|
12
|
+
loader.
|
|
13
|
+
- Align DeepSeek Harness peer-package ranges and the onboarding manifest with
|
|
14
|
+
`0.1.7-rc.2`.
|
|
15
|
+
- Keep Foggy CLI, Launcher, Skills, Runtime behavior, and the development-only
|
|
16
|
+
product boundary unchanged.
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
Use Node.js 24 or newer and a separate Harness profile:
|
|
21
|
+
|
|
22
|
+
```powershell
|
|
23
|
+
dsh plugin --profile web add --workspace-root @foggy-projects/deepseek-harness-plugin@0.4.2-rc.1
|
|
24
|
+
dsh web
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
The same candidate is available through the dedicated `dsh017` npm dist-tag.
|
|
28
|
+
Do not use this candidate to replace a stable `beta` installation unless the
|
|
29
|
+
profile is intended to run DSH `0.1.7-rc.2`.
|
|
30
|
+
|
|
31
|
+
## Compatibility acceptance (2026-09-25)
|
|
32
|
+
|
|
33
|
+
- `npm run check`, all 23 Node tests, and all 29 Python tests passed on Node
|
|
34
|
+
`24.19.0`.
|
|
35
|
+
- Packed and installed this exact candidate into a fresh temporary DSH Web
|
|
36
|
+
profile running `0.1.7-rc.2`. The package manager completed installation;
|
|
37
|
+
DSH emitted no plugin/Typert registration error at startup.
|
|
38
|
+
- The authenticated Web boot graph included the Foggy client bundle. Fetching
|
|
39
|
+
the served bundle returned HTTP 200 and confirmed the `settings.plugins.tab`
|
|
40
|
+
contribution is present.
|
|
41
|
+
- Invoked Foggy `status` and `plan` through DSH's Remote HTTP transport. Both
|
|
42
|
+
returned successful structured results with package version `0.4.2-rc.1`.
|
|
43
|
+
- Created a temporary session and called DSH's native `skills/list` Remote. It
|
|
44
|
+
returned `foggy-deepseek-onboarding` from the installed plugin package and
|
|
45
|
+
`modelInvocable: true`. The host also exposes separately installed user-level
|
|
46
|
+
Foggy skills; the package-provided onboarding Skill remained individually
|
|
47
|
+
discoverable.
|
|
48
|
+
- Used Plugin Manager to disable and re-enable the bundle. Both changes
|
|
49
|
+
reported `application: applied`; while disabled, the Foggy strict Remote
|
|
50
|
+
correctly returned `gateway/definition-unavailable`, and after re-enabling
|
|
51
|
+
`status` succeeded again. The final bundle state is enabled and installed.
|
|
52
|
+
- No Runtime was started, no component update/repair was requested, and no
|
|
53
|
+
database connection or query was made. The status read observed the host's
|
|
54
|
+
existing Foggy component state; it did not change it. Full component
|
|
55
|
+
installation and Runtime behavior remain outside this DSH protocol smoke
|
|
56
|
+
test.
|
|
57
|
+
|
|
58
|
+
## Upstream references
|
|
59
|
+
|
|
60
|
+
- [DeepSeek Harness v0.1.7-rc.2 release](https://github.com/deepseek-ai/deepseek-harness/releases/tag/dsh-v0.1.7-rc.2)
|
|
61
|
+
- [DeepSeek Harness v0.1.7-rc.1 release](https://github.com/deepseek-ai/deepseek-harness/releases/tag/dsh-v0.1.7-rc.1)
|
|
62
|
+
- [DeepSeek Harness release history](https://github.com/deepseek-ai/deepseek-harness/releases)
|
|
@@ -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 `>=24.0.0` (the DSH 0.1.
|
|
8
|
+
- Node.js `>=24.0.0` (the DSH 0.1.7-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 0.1.
|
|
25
|
+
The script installs pinned pnpm and DeepSeek Harness 0.1.7-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.7-rc.2"
|
|
5
5
|
PNPM_VERSION="11.7.0"
|
|
6
|
-
PLUGIN_VERSION="0.4.
|
|
6
|
+
PLUGIN_VERSION="0.4.2-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
|
|
|
@@ -74,7 +74,7 @@ require_command df
|
|
|
74
74
|
require_command tar
|
|
75
75
|
|
|
76
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
|
|
77
|
+
|| fail "Node >=24 required for DeepSeek Harness ${DSH_VERSION}; 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
|
|
158
|
+
throw new Error(`This DeepSeek Harness plugin 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/remote-descriptor.js
CHANGED
|
@@ -5,6 +5,16 @@ const runtimeSettingsInputSchema = z.object({
|
|
|
5
5
|
port: z.number().int().min(1024).max(65535),
|
|
6
6
|
}).strict()
|
|
7
7
|
|
|
8
|
+
function strictCodec(typeSymbol, schema) {
|
|
9
|
+
return {
|
|
10
|
+
mode: 'strict',
|
|
11
|
+
typeSymbol,
|
|
12
|
+
// DSH 0.1.5 consumes `schema`; DSH 0.1.7 materializes it through `create()`.
|
|
13
|
+
schema,
|
|
14
|
+
create: () => schema,
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
8
18
|
function descriptor(method, parameters = []) {
|
|
9
19
|
return {
|
|
10
20
|
id: `@foggy-projects/deepseek-harness-plugin#foggyIntegration/${method}`,
|
|
@@ -13,11 +23,7 @@ function descriptor(method, parameters = []) {
|
|
|
13
23
|
method,
|
|
14
24
|
invocation: { kind: 'direct' },
|
|
15
25
|
parameters,
|
|
16
|
-
result:
|
|
17
|
-
mode: 'strict',
|
|
18
|
-
typeSymbol: '@foggy-projects/deepseek-harness-plugin#FoggyIntegrationResult',
|
|
19
|
-
schema: resultSchema,
|
|
20
|
-
},
|
|
26
|
+
result: strictCodec('@foggy-projects/deepseek-harness-plugin#FoggyIntegrationResult', resultSchema),
|
|
21
27
|
sourceLocation: { file: 'lib/index.js', line: 1, column: 1 },
|
|
22
28
|
}
|
|
23
29
|
}
|
|
@@ -37,10 +43,6 @@ export const descriptors = [
|
|
|
37
43
|
name: 'input',
|
|
38
44
|
wire: 'input',
|
|
39
45
|
source: 'json',
|
|
40
|
-
codec:
|
|
41
|
-
mode: 'strict',
|
|
42
|
-
typeSymbol: '@foggy-projects/deepseek-harness-plugin#FoggyRuntimeSettingsInput',
|
|
43
|
-
schema: runtimeSettingsInputSchema,
|
|
44
|
-
},
|
|
46
|
+
codec: strictCodec('@foggy-projects/deepseek-harness-plugin#FoggyRuntimeSettingsInput', runtimeSettingsInputSchema),
|
|
45
47
|
}]),
|
|
46
48
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foggy-projects/deepseek-harness-plugin",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2-rc.1",
|
|
4
4
|
"description": "Foggy Java data analysis engine integration for DeepSeek Harness",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"deepseek-harness",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"docs/RELEASE-CANDIDATE-0.4.0-RC.2.md",
|
|
41
41
|
"docs/RELEASE-CANDIDATE-0.4.0-RC.3.md",
|
|
42
42
|
"docs/RELEASE-CANDIDATE-0.4.1-DSH-0.1.5-RC.1.md",
|
|
43
|
+
"docs/RELEASE-CANDIDATE-0.4.2-DSH-0.1.7-RC.1.md",
|
|
43
44
|
"docs/COMMUNITY-MARKETPLACES.md",
|
|
44
45
|
"docs/WINDOWS-BETA-ACCEPTANCE.md",
|
|
45
46
|
"THIRD-PARTY-RUNTIME-NOTICES.md",
|
|
@@ -68,12 +69,12 @@
|
|
|
68
69
|
},
|
|
69
70
|
"peerDependencies": {
|
|
70
71
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
71
|
-
"@deepseek-ai/dsh-api-remotes": "^0.1.
|
|
72
|
-
"@deepseek-ai/dsh-client-locale": "^0.1.
|
|
73
|
-
"@deepseek-ai/dsh-client-ui-settings": "^0.1.
|
|
74
|
-
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.
|
|
75
|
-
"@deepseek-ai/dsh-skill": "^0.1.
|
|
76
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.
|
|
72
|
+
"@deepseek-ai/dsh-api-remotes": "^0.1.7-rc.2",
|
|
73
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.7-rc.2",
|
|
74
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.7-rc.2",
|
|
75
|
+
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.7-rc.2",
|
|
76
|
+
"@deepseek-ai/dsh-skill": "^0.1.7-rc.2",
|
|
77
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.7-rc.2"
|
|
77
78
|
},
|
|
78
79
|
"scripts": {
|
|
79
80
|
"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,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "foggy-deepseek-onboarding-versions/v1",
|
|
3
|
-
"packageVersion": "0.4.
|
|
4
|
-
"validatedAt": "2026-09-
|
|
3
|
+
"packageVersion": "0.4.2-rc.1",
|
|
4
|
+
"validatedAt": "2026-09-25",
|
|
5
5
|
"components": {
|
|
6
6
|
"deepseekHarness": {
|
|
7
|
-
"version": "0.1.
|
|
7
|
+
"version": "0.1.7-rc.2",
|
|
8
8
|
"minimumNodeVersion": "24.0.0"
|
|
9
9
|
},
|
|
10
10
|
"python": {
|