@norman-else/dsh-claude 0.1.0 → 0.1.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 +12 -1
- package/cordis.patch.yml +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -106,7 +106,7 @@ To configure a nonstandard path, edit the plugin row in the Web profile composit
|
|
|
106
106
|
|
|
107
107
|
```yaml
|
|
108
108
|
- id: llm-claude
|
|
109
|
-
name: dsh-claude
|
|
109
|
+
name: @norman-else/dsh-claude
|
|
110
110
|
config:
|
|
111
111
|
executablePath: /absolute/path/to/claude
|
|
112
112
|
model: default
|
|
@@ -136,6 +136,17 @@ To inspect the package that would be published:
|
|
|
136
136
|
pnpm pack --pack-destination ./dist-pack
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
+
### Release
|
|
140
|
+
|
|
141
|
+
Update the version in `package.json`, commit it, and push the clean release commit first. Then verify and publish both npm and GitHub releases:
|
|
142
|
+
|
|
143
|
+
```sh
|
|
144
|
+
pnpm release:check
|
|
145
|
+
pnpm release
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
The release script requires `HEAD` to match the current branch on `origin`. It runs the full project check and npm package preview, publishes the public npm package, verifies npm's `gitHead`, and creates a matching `v<version>` GitHub Release with generated notes. It is safe to rerun after a partial failure: an existing npm version or GitHub Release is accepted only when it points to the current commit.
|
|
149
|
+
|
|
139
150
|
The project uses fixture/state-machine tests and a minimal SDK-level handshake probe (a tool-disabled, one-turn `query()` against the resolved local executable). Full DSH-linked live acceptance (native coexistence, Claude turn, permission allow/deny, cancel, resume, orphan-process check) is run after the Host restart per `INSTALL.md`. The Agent SDK is pinned to `0.3.233`; runtime execution is forced to the resolved local Claude executable through `pathToClaudeCodeExecutable`.
|
|
140
151
|
|
|
141
152
|
## Uninstall
|
package/cordis.patch.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@norman-else/dsh-claude",
|
|
3
3
|
"description": "Run the local Claude Code CLI as a first-class main conversation inside DeepSeek Harness",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.mjs",
|
|
7
7
|
"types": "lib/index.d.mts",
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
|
|
14
14
|
"test": "vitest run",
|
|
15
15
|
"check": "pnpm run typecheck && pnpm run test && pnpm run build",
|
|
16
|
-
"prepack": "pnpm run build"
|
|
16
|
+
"prepack": "pnpm run build",
|
|
17
|
+
"release": "node scripts/publish.mjs",
|
|
18
|
+
"release:check": "node scripts/publish.mjs --dry-run"
|
|
17
19
|
},
|
|
18
20
|
"exports": {
|
|
19
21
|
".": {
|