@ricsam/r5d-worker 0.0.151 → 0.0.153
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/dist/cjs/package.json +1 -1
- package/dist/mjs/internal-r5dctl.cjs +24122 -0
- package/dist/mjs/main.mjs +2 -2
- package/dist/mjs/package.json +1 -1
- package/dist/mjs/personal/cli-entrypoint.mjs +22 -6
- package/dist/mjs/personal/runtime.mjs +1 -1
- package/dist/mjs/runtime/workspace/authority.mjs +17 -3
- package/dist/types/personal/cli-entrypoint.d.ts +1 -0
- package/dist/types/runtime/workspace/authority.d.ts +1 -0
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -9,4 +9,4 @@ r5d-worker manager /absolute/private/manager-config.json
|
|
|
9
9
|
|
|
10
10
|
The executor retains processes and durable receipts independently of application releases. The manager authenticates the approved workspace keeper and retains old adapters until their delivery receipts are settled. Configuration and host roots belong exclusively to one installation. Never share an executor's state directory, credentials or workspace root between environments.
|
|
11
11
|
|
|
12
|
-
The published worker
|
|
12
|
+
The published worker contains its own exact-version `r5dctl` build. A personal worker resolves that internal CLI before the host `PATH`, verifies its package boundary, and exposes it to agent shells through a private worker-owned wrapper. Each worker remains bound to one server origin and installation, so stage, production, and review workers cannot accidentally select another environment's global CLI or credentials.
|
package/dist/cjs/package.json
CHANGED