@try-works/dsh-righthand 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 +1 -1
- package/cordis.patch.yml +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ partial patch (persisted by the harness settings provider).
|
|
|
64
64
|
The store family needs `ctx.storageDomain`, which the web profile provides
|
|
65
65
|
(`storage` + `storage-json` + `storage-domain` rows). In a profile without
|
|
66
66
|
it — e.g. the headless bundle — the store tools stay dormant and the other
|
|
67
|
-
|
|
67
|
+
seven tools still register; the plugin never fails the boot.
|
|
68
68
|
|
|
69
69
|
## Development
|
|
70
70
|
|
package/cordis.patch.yml
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# guard-tools tools/pre-execute policy needs tools
|
|
9
9
|
#
|
|
10
10
|
# A profile without `storageDomain` (e.g. headless) simply gets the other
|
|
11
|
-
#
|
|
11
|
+
# seven tools; the store family stays dormant instead of failing the boot.
|
|
12
12
|
- insert:
|
|
13
13
|
- id: dsh-righthand
|
|
14
14
|
name: '@try-works/dsh-righthand'
|
package/lib/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* The package's plugin entry (name/inject/apply) mounts the four tool
|
|
9
9
|
* modules as child fibers; each child waits on its own services, so a
|
|
10
10
|
* profile without `storageDomain` (e.g. headless) simply gets the other
|
|
11
|
-
*
|
|
11
|
+
* seven tools instead of failing the boot.
|
|
12
12
|
*
|
|
13
13
|
* Modules (each individually mountable via `export * as ...`):
|
|
14
14
|
* - store-tools: rh_store_put/get/delete/list over ctx.storageDomain
|
package/lib/index.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* The package's plugin entry (name/inject/apply) mounts the four tool
|
|
9
9
|
* modules as child fibers; each child waits on its own services, so a
|
|
10
10
|
* profile without `storageDomain` (e.g. headless) simply gets the other
|
|
11
|
-
*
|
|
11
|
+
* seven tools instead of failing the boot.
|
|
12
12
|
*
|
|
13
13
|
* Modules (each individually mountable via `export * as ...`):
|
|
14
14
|
* - store-tools: rh_store_put/get/delete/list over ctx.storageDomain
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@try-works/dsh-righthand",
|
|
3
3
|
"description": "DeepSeek Harness plugin: DSH-native righthand tools — durable KV store, credential/settings management, governed exec, and a tool guard",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
package/src/index.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* The package's plugin entry (name/inject/apply) mounts the four tool
|
|
9
9
|
* modules as child fibers; each child waits on its own services, so a
|
|
10
10
|
* profile without `storageDomain` (e.g. headless) simply gets the other
|
|
11
|
-
*
|
|
11
|
+
* seven tools instead of failing the boot.
|
|
12
12
|
*
|
|
13
13
|
* Modules (each individually mountable via `export * as ...`):
|
|
14
14
|
* - store-tools: rh_store_put/get/delete/list over ctx.storageDomain
|