@rulvar/executor 1.162.0 → 1.164.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 +37 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @rulvar/executor
|
|
2
|
+
|
|
3
|
+
Isolated tool executors for Rulvar: the subprocess `ToolExecutorProvider`
|
|
4
|
+
(fresh workdir per dispatch, replaced environment, timeout and output
|
|
5
|
+
bounds) and the container adapter over the same seam, plus the executor
|
|
6
|
+
conformance kit and the optional two-phase effect ledger (a durable
|
|
7
|
+
intent BEFORE the external effect, the outcome after, so a crash leaves
|
|
8
|
+
an orphan intent as the reconciliation signal instead of an untracked
|
|
9
|
+
effect).
|
|
10
|
+
|
|
11
|
+
Part of [Rulvar](https://rulvar.com), an embeddable TypeScript engine
|
|
12
|
+
for durable, budget-bounded multi-agent LLM workflows, where a completed
|
|
13
|
+
LLM call is never paid for twice. Full documentation:
|
|
14
|
+
[docs.rulvar.com](https://docs.rulvar.com).
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pnpm add @rulvar/core @rulvar/executor
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## What it is NOT
|
|
23
|
+
|
|
24
|
+
The executors isolate a dispatch; they are not a security sandbox by
|
|
25
|
+
themselves (bring a container or OS boundary for hostile code), and the
|
|
26
|
+
effect ledger is not a transactional outbox, not an authorization
|
|
27
|
+
surface, and not exactly-once delivery: the host's reconciliation
|
|
28
|
+
against provider receipts stays mandatory.
|
|
29
|
+
|
|
30
|
+
## Documentation
|
|
31
|
+
|
|
32
|
+
- [Isolated executors](https://docs.rulvar.com/guide/isolated-executor)
|
|
33
|
+
- [API reference](https://docs.rulvar.com/api/%40rulvar/executor/)
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
[Apache-2.0](https://github.com/o-stepper/rulvar/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rulvar/executor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.164.0",
|
|
4
4
|
"description": "Rulvar isolated tool executors: reference ToolExecutorProvider adapters that run tool work out of process (subprocess and container) so hostile or model-generated scripts cannot reach host capabilities.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@rulvar/core": "1.
|
|
25
|
+
"@rulvar/core": "1.164.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^22.20.1",
|
|
29
29
|
"tsdown": "^0.22.14",
|
|
30
30
|
"typescript": "~6.0.3",
|
|
31
|
-
"@rulvar/testing": "1.
|
|
31
|
+
"@rulvar/testing": "1.164.0"
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|