dsh-context 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +0 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -67,17 +67,6 @@ node scripts/build.mjs # writes lib/index.js (host) + lib/client.js (client bu
67
67
 
68
68
  `build.mjs` also smoke-checks the outputs (both halves must parse; the host half must import with the `name`/`inject`/`apply` plugin shape).
69
69
 
70
- ## Publishing
71
-
72
- `scripts/publish.sh` builds and publishes to npm as the authenticated user:
73
-
74
- ```sh
75
- NPM_TOKEN=<your npmjs access token> ./scripts/publish.sh # patch bump if the current version is already published
76
- NPM_TOKEN=<token> ./scripts/publish.sh minor # explicit bump level
77
- ```
78
-
79
- The token is read from the environment only and never written to disk. The script auto-bumps the version when the current one is already on the registry, so re-running it after a successful publish is a no-op.
80
-
81
70
  ## Files
82
71
 
83
72
  | File | Role |
@@ -87,7 +76,6 @@ The token is read from the environment only and never written to disk. The scrip
87
76
  | `package.json` | `dsh.bundle` (patch layer) + `dsh.client` (web UI) manifests |
88
77
  | `cordis.patch.yml` | The bundle's patch layer: inserts the `dsh-context` row |
89
78
  | `scripts/build.mjs` | Zero-dependency build of `lib/index.js` + `lib/client.js` |
90
- | `scripts/publish.sh` | npm publish with `NPM_TOKEN` |
91
79
  | `docs/screenshot.png` | The UI in action |
92
80
 
93
81
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-context",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Context insight panel for DeepSeek Harness: a Context tab (beside Chat/Trajectory) showing what the model's context window is made of and how it evolves — composition, per-request history, compactions, injections, and model switches.",
5
5
  "author": "bowenliang123",
6
6
  "repository": {