@rulvar/cli 1.5.2 → 1.7.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 +2 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# @rulvar/cli
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The Rulvar ops shell: the `rulvar` binary (`run`, `resume`, `runs`,
|
|
4
4
|
`inspect`, `plan`, `kb`), TUI progress, the embeddable HTTP server with
|
|
5
5
|
SSE events and external-input resolution (`createServer`), the queue
|
|
6
6
|
worker over any leasable store (`createWorker`), and the OpenTelemetry
|
|
7
7
|
exporter (`toOtel`).
|
|
8
8
|
|
|
9
|
-
Part of [
|
|
9
|
+
Part of [Rulvar](https://rulvar.com), an embeddable TypeScript engine
|
|
10
10
|
for durable, budget-bounded multi-agent LLM workflows, where a completed
|
|
11
11
|
LLM call is never paid for twice. Full documentation:
|
|
12
12
|
[docs.rulvar.com](https://docs.rulvar.com).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rulvar/cli",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.7.0",
|
|
4
|
+
"description": "Rulvar shell: run/resume/runs/inspect/plan/kb commands, TUI progress, createServer, createWorker, OTel exporter.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"engines": {
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@rulvar/core": "1.
|
|
25
|
+
"@rulvar/core": "1.7.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^22.20.0",
|
|
29
29
|
"tsdown": "^0.22.3",
|
|
30
30
|
"typescript": "~6.0.3",
|
|
31
|
-
"@rulvar/
|
|
32
|
-
"@rulvar/
|
|
33
|
-
"@rulvar/
|
|
34
|
-
"@rulvar/
|
|
35
|
-
"@rulvar/
|
|
31
|
+
"@rulvar/store-sqlite": "1.7.0",
|
|
32
|
+
"@rulvar/testing": "1.7.0",
|
|
33
|
+
"@rulvar/planner": "1.7.0",
|
|
34
|
+
"@rulvar/evals": "1.7.0",
|
|
35
|
+
"@rulvar/plan": "1.7.0"
|
|
36
36
|
},
|
|
37
37
|
"bin": {
|
|
38
38
|
"rulvar": "./dist/cli.js"
|