@dipertq/dsh-openviking-status 0.1.7 → 0.2.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 +11 -3
- package/lib/client.cjs +1103 -367
- package/lib/client.cjs.map +1 -1
- package/lib/client.d.cts +186 -36
- package/lib/client.js +1100 -367
- package/lib/client.js.map +1 -1
- package/lib/index.d.ts +32 -4
- package/lib/index.js +1206 -5
- package/lib/index.js.map +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -4,13 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
This DSH UI plugin
|
|
7
|
+
This DSH UI plugin adds a chip to the composer stats row
|
|
8
|
+
(`conversation.composer.dock`), alongside `24 turns 645 steps`. It provides
|
|
9
|
+
at-a-glance transparency into OpenViking memory management:
|
|
8
10
|
|
|
9
11
|
- **Server Health**: Online / Offline indicator with live health checks.
|
|
10
12
|
- **Pending Tokens**: Real-time counter of session tokens accumulated before the auto-commit threshold (20,000 tokens).
|
|
11
|
-
- **
|
|
13
|
+
- **Recalled Memories**: Count and list of the `viking://` files injected into the current conversation.
|
|
12
14
|
- **Commit Trigger**: Instant "Commit To Memory Now" action button.
|
|
13
15
|
|
|
16
|
+
## Configuration & API Key
|
|
17
|
+
|
|
18
|
+
- **Zero-Config Auto-Discovery**: When running locally, the plugin automatically discovers connection credentials from `~/.openviking/ovcli.conf`, `~/.openviking/ov.conf`, or the `OPENVIKING_API_KEY` environment variable.
|
|
19
|
+
- **DSH Settings Integration**: Open **DSH Settings → OpenViking** to inspect connection health, run live connection tests, or customize your daemon endpoint and API token.
|
|
20
|
+
- **Seamless Remote Access (Tailscale / LAN / Mobile)**: Status requests proxy through the DSH Desktop host (`/openviking-status/api/*`), ensuring the chip and popover work reliably when accessing DSH remotely without CORS or localhost conflicts.
|
|
21
|
+
|
|
14
22
|
## Architecture & Design
|
|
15
23
|
|
|
16
24
|
See [CONTEXT.md](./CONTEXT.md), [ADR 0001](./docs/adr/0001-client-ui-widget.md), and [ADR 0002](./docs/adr/0002-release-workflow.md).
|
|
@@ -33,7 +41,7 @@ Equivalent, and useful when the registry is unreachable. Use a
|
|
|
33
41
|
**version-pinned** URL:
|
|
34
42
|
|
|
35
43
|
```bash
|
|
36
|
-
dsh plugin add https://github.com/dipertq/dsh-openviking-status/releases/download/v0.
|
|
44
|
+
dsh plugin add https://github.com/dipertq/dsh-openviking-status/releases/download/v0.2.0/dipertq-dsh-openviking-status-0.2.0.tgz
|
|
37
45
|
```
|
|
38
46
|
|
|
39
47
|
Not `/releases/latest/download/…`: that URL keeps its name while its content
|