@foggy-projects/deepseek-harness-plugin 0.4.0-beta.11 → 0.4.0-beta.12
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
CHANGED
|
@@ -14,7 +14,7 @@ modify `PATH`, or register Python globally. Advanced users may explicitly set
|
|
|
14
14
|
## Local beta installation
|
|
15
15
|
|
|
16
16
|
```powershell
|
|
17
|
-
dsh plugin --profile web add --workspace-root ./foggy-projects-deepseek-harness-plugin-0.4.0-beta.
|
|
17
|
+
dsh plugin --profile web add --workspace-root ./foggy-projects-deepseek-harness-plugin-0.4.0-beta.12.tgz
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Restart `dsh web`, use the browser it opens (or the complete printed URL,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Public beta readiness: 0.4.0-beta.
|
|
1
|
+
# Public beta readiness: 0.4.0-beta.12
|
|
2
2
|
|
|
3
3
|
Assessment date: 2026-09-04
|
|
4
4
|
|
|
5
5
|
## Verdict
|
|
6
6
|
|
|
7
|
-
`0.4.0-beta.
|
|
7
|
+
`0.4.0-beta.12` is suitable for a scoped public beta on Windows 10/11 x64 and
|
|
8
8
|
Linux/WSL2 x64. It is not a general-availability release.
|
|
9
9
|
|
|
10
10
|
The plugin package stays small and downloads large components only during
|
|
@@ -21,16 +21,18 @@ system PATH, registry, or a user's existing Python installation.
|
|
|
21
21
|
- The component installer code is unchanged from beta.9, whose Windows x64 run
|
|
22
22
|
completed a cold Python download, checksum verification, extraction,
|
|
23
23
|
initialization, forced Python repair, and doctor run.
|
|
24
|
-
- DeepSeek Harness `0.1.2-rc.1` loaded the beta.
|
|
24
|
+
- DeepSeek Harness `0.1.2-rc.1` loaded the beta.12 candidate Bundle, web client,
|
|
25
25
|
remote status service, and native Skill provider on both Windows and WSL2.
|
|
26
26
|
- WSL2 reported the existing managed Python, CLI, Launcher, and analysis Skill
|
|
27
27
|
as ready; an isolated Windows profile correctly reported its fresh component
|
|
28
28
|
state and rejected the host's Java 12 as below the Java 17 prerequisite.
|
|
29
29
|
- The UI reported Python 3.12.13 as `Foggy private`, and CLI 0.1.23, Launcher
|
|
30
|
-
0.1.18, analysis Skill 0.1.17, and onboarding Skill 0.4.0-beta.
|
|
30
|
+
0.1.18, analysis Skill 0.1.17, and onboarding Skill 0.4.0-beta.12 as installed.
|
|
31
31
|
- Runtime startup now reports the current phase, elapsed/timeout seconds, and a
|
|
32
32
|
bounded progress value. A real WSL2 launch reached readiness in 13.4 seconds;
|
|
33
33
|
a forced timeout recorded failure evidence and cleaned up the Java process.
|
|
34
|
+
- Diagnostic export success remains visible alongside a prior Runtime startup
|
|
35
|
+
error, including the generated local JSON path.
|
|
34
36
|
- Interrupted downloads resume with HTTP Range when the server supports it;
|
|
35
37
|
downloaded artifacts are not trusted until the complete SHA256 matches.
|
|
36
38
|
- Windows progress writes tolerate transient sharing violations without losing
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Native Windows Beta acceptance
|
|
2
2
|
|
|
3
3
|
This runbook validates DeepSeek Harness `0.1.2-rc.1` with Foggy plugin
|
|
4
|
-
`0.4.0-beta.
|
|
4
|
+
`0.4.0-beta.12` on a clean 64-bit Windows 10 or Windows 11 machine. Use a local
|
|
5
5
|
directory that is not synchronized by OneDrive.
|
|
6
6
|
|
|
7
7
|
## Prerequisites
|
|
@@ -49,7 +49,7 @@ Expected component state:
|
|
|
49
49
|
- CLI 0.1.23;
|
|
50
50
|
- Launcher 0.1.18;
|
|
51
51
|
- analysis Skill 0.1.17;
|
|
52
|
-
- onboarding Skill 0.4.0-beta.
|
|
52
|
+
- onboarding Skill 0.4.0-beta.12;
|
|
53
53
|
- Java 17+ available;
|
|
54
54
|
- native DSH Skill registration available.
|
|
55
55
|
|
package/lib/client.js
CHANGED
|
@@ -413,7 +413,9 @@ window.__ModuleLoader__.load({
|
|
|
413
413
|
] }),
|
|
414
414
|
] }),
|
|
415
415
|
progress,
|
|
416
|
-
busy
|
|
416
|
+
busy ? jsx('p', { className: 'foggy-message', children: t('working') }) : null,
|
|
417
|
+
operationError ? jsx('p', { className: 'foggy-message', 'data-error': 'true', children: operationError }) : null,
|
|
418
|
+
!busy && view.message ? jsx('p', { className: 'foggy-message', 'data-error': view.error ? 'true' : undefined, children: view.message }) : null,
|
|
417
419
|
jsxs('div', { className: 'foggy-grid', children: [
|
|
418
420
|
componentCard(t('python'), status.components.python, 'tool', t),
|
|
419
421
|
componentCard(t('java'), status.components.java, 'tool', t),
|
package/package.json
CHANGED