dsh-context 0.46.0 → 0.47.0
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 +5 -4
- package/lib/client.js +490 -285
- package/lib/index.d.ts +48 -3
- package/lib/index.js +243 -32
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -8,19 +8,20 @@
|
|
|
8
8
|
|
|
9
9
|
**The best [DeepSeek Harness plugin](https://www.deepseek.com/harness/) for Agent's context insights and management.**
|
|
10
10
|
|
|
11
|
-
`dsh-context` provides full context lifecycle management features.
|
|
11
|
+
[`dsh-context`](https://www.npmjs.com/package/dsh-context) provides full context lifecycle management features.
|
|
12
12
|
- **Context tab** — an UI context dashboard for DeepSeek Harness's context stats, composition, trend, events, and messages.
|
|
13
|
+
- **Context panel** — the same dashboard as a right-sidebar tab (dsh 0.1.5+): pick **Context** on the sidebar's guide page and the panel opens beside the chat.
|
|
13
14
|
- **`/context` command** — the slash command shows the context model for current context composition and recent context evolution.
|
|
14
15
|
|
|
15
16
|
## Install / Update
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
Install [`dsh-context`](https://www.npmjs.com/package/dsh-context) plugin from [DeepSeek Harness](https://www.npmjs.com/package/@deepseek-ai/dsh):
|
|
18
19
|
|
|
19
20
|
```sh
|
|
20
21
|
dsh plugin --profile web add dsh-context
|
|
21
22
|
```
|
|
22
23
|
|
|
23
|
-
Or
|
|
24
|
+
Or update the `dsh-context` plugin:
|
|
24
25
|
|
|
25
26
|
```sh
|
|
26
27
|
dsh plugin --profile web update dsh-context@latest
|
|
@@ -140,7 +141,7 @@ In **Settings → Plugins → Plugin configuration**, the **Context** card holds
|
|
|
140
141
|
## Good to know
|
|
141
142
|
|
|
142
143
|
- **Estimates vs actuals** — category figures use dsh's own fixed-density heuristic (the same one as its built-in token meter); the pinned trend details and Token/Timing rings show provider-reported actuals next to them.
|
|
143
|
-
- **Compatibility** — works on `@deepseek-ai/dsh` **0.1.2-rc1
|
|
144
|
+
- **Compatibility** — works on `@deepseek-ai/dsh` **0.1.2-rc1+**, across the V0 (0.1.2-rc.x), V2 (0.1.3-alpha.x), and V3 (0.1.5-alpha.x+) session-log generations. The per-release matrix and how it is verified: [docs/compatibility.md](docs/compatibility.md).
|
|
144
145
|
- **I18n** — UI in English and 简体中文.
|
|
145
146
|
|
|
146
147
|
## Like it?
|