@canary-builds/dsh-connect 0.3.1 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.2 — 2026-09-06
4
+
5
+ - Publish new stable versions automatically from main through npm OIDC trusted publishing.
6
+ - Skip already-published versions and serialize publishing runs.
7
+ - Document the direct npm install command and OAuth sign-in without an OpenAI API key.
8
+
3
9
  ## 0.3.1 — 2026-09-06
4
10
 
5
11
  First packaged GitHub release.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # DSH Connect
2
2
 
3
- Connect DeepSeek Harness to ChatGPT models through the official Codex app-server.
3
+ Connect DeepSeek Harness to ChatGPT models using OAuth sign-in through the official Codex app-server, without requiring an OpenAI API key.
4
4
 
5
5
  DSH Connect is a community Cordis plugin with a model-provider adapter and a web Settings panel. The first connector supports Codex/ChatGPT; it is not tied to a particular model. The provider ID is `openai-codex`.
6
6
 
@@ -8,13 +8,15 @@ DSH Connect is a community Cordis plugin with a model-provider adapter and a web
8
8
 
9
9
  Requires Node.js 22.19+ and an installed official Codex CLI. Tested with DSH 0.1.1-rc.2 and Codex 0.153.4 on Linux. Both upstream interfaces are evolving; other versions and operating systems need validation.
10
10
 
11
- Install the prebuilt [v0.3.1 release](https://github.com/Canary-Builds/dhs-connect/releases/tag/v0.3.1); no npm account or plugin build step is required:
11
+ Install from npm:
12
12
 
13
13
  ```sh
14
- dsh plugin --profile web add https://github.com/Canary-Builds/dhs-connect/releases/download/v0.3.1/canary-builds-dsh-connect-0.3.1.tgz
14
+ dsh plugin --profile web add @canary-builds/dsh-connect
15
15
  ```
16
16
 
17
- Use `--profile headless` instead for the CLI profile. Release assets include `SHA256SUMS` for checking downloaded packages. npm publication is separate; the scoped name is reserved in this source as `@canary-builds/dsh-connect`, but npm availability is not implied.
17
+ Use `--profile headless` instead for the CLI profile. To pin this release, use `@canary-builds/dsh-connect@0.3.2`. No npm account or plugin build step is required to install the public package.
18
+
19
+ A prebuilt tarball and `SHA256SUMS` are also available in the [v0.3.2 GitHub release](https://github.com/Canary-Builds/dhs-connect/releases/tag/v0.3.2).
18
20
 
19
21
  Restart your running Harness instance after installation. Open **Settings → DSH Connect**, sign in with ChatGPT, and select a model from the normal model picker. Install only the profiles you use. A pnpm workspace-root profile may require its existing `ignoreWorkspaceRootCheck` setting or the package-manager workspace-root option.
20
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canary-builds/dsh-connect",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Connect DeepSeek Harness to ChatGPT models through the Codex app-server",
5
5
  "license": "MIT",
6
6
  "author": "Canary Builds",