@dipertq/dsh-openviking-status 0.1.8 → 0.2.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 +5 -13
- package/lib/client.cjs +724 -6
- package/lib/client.cjs.map +1 -1
- package/lib/client.d.cts +39 -11
- package/lib/client.js +724 -6
- package/lib/client.js.map +1 -1
- package/lib/index.d.ts +32 -4
- package/lib/index.js +1193 -5
- package/lib/index.js.map +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -13,19 +13,11 @@ at-a-glance transparency into OpenViking memory management:
|
|
|
13
13
|
- **Recalled Memories**: Count and list of the `viking://` files injected into the current conversation.
|
|
14
14
|
- **Commit Trigger**: Instant "Commit To Memory Now" action button.
|
|
15
15
|
|
|
16
|
-
## API
|
|
16
|
+
## Configuration & API Key
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
browser cannot read `~/.openviking/ovcli.conf`, so supply the key once from the
|
|
22
|
-
DSH devtools console:
|
|
23
|
-
|
|
24
|
-
```js
|
|
25
|
-
localStorage.setItem("openviking_api_key", "<your key>");
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
The key from `ovcli.conf` works. Daemons without authentication need nothing.
|
|
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.
|
|
29
21
|
|
|
30
22
|
## Architecture & Design
|
|
31
23
|
|
|
@@ -49,7 +41,7 @@ Equivalent, and useful when the registry is unreachable. Use a
|
|
|
49
41
|
**version-pinned** URL:
|
|
50
42
|
|
|
51
43
|
```bash
|
|
52
|
-
dsh plugin add https://github.com/dipertq/dsh-openviking-status/releases/download/v0.1
|
|
44
|
+
dsh plugin add https://github.com/dipertq/dsh-openviking-status/releases/download/v0.2.1/dipertq-dsh-openviking-status-0.2.1.tgz
|
|
53
45
|
```
|
|
54
46
|
|
|
55
47
|
Not `/releases/latest/download/…`: that URL keeps its name while its content
|