rulvar 1.3.1 → 1.3.2
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 +22 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# rulvar (pointer package)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
rulvar is an embeddable TypeScript engine for multi-agent LLM workflows:
|
|
4
|
+
durable (a completed LLM call is never paid for twice), budget-bounded
|
|
5
|
+
(immutable per-run dollar ceilings), vendor-neutral (Anthropic, OpenAI,
|
|
6
|
+
OpenAI-compatible endpoints, and a Vercel AI SDK bridge), observable, and
|
|
7
|
+
testable, with no server, no database, and no control plane required.
|
|
4
8
|
|
|
5
|
-
|
|
9
|
+
The canonical package is
|
|
10
|
+
[`@rulvar/rulvar`](https://www.npmjs.com/package/@rulvar/rulvar); this
|
|
11
|
+
unscoped name is an alias that re-exports it one to one and tracks its
|
|
12
|
+
releases, so `npm install rulvar` works and the bare name stays reserved
|
|
13
|
+
for the project. New projects should depend on the scoped package
|
|
14
|
+
directly:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pnpm add @rulvar/rulvar
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Start with the ten-minute
|
|
21
|
+
[quickstart](https://docs.rulvar.com/guide/quickstart); the full
|
|
22
|
+
documentation lives at [docs.rulvar.com](https://docs.rulvar.com).
|
|
23
|
+
|
|
24
|
+
Project home: [rulvar.com](https://rulvar.com) and
|
|
25
|
+
[github.com/o-stepper/rulvar](https://github.com/o-stepper/rulvar).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulvar",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Pointer to the rulvar umbrella package: install @rulvar/rulvar (or this alias, which re-exports it). An embeddable TypeScript engine for durable, budget-bounded, testable multi-agent LLM workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
],
|
|
17
17
|
"sideEffects": false,
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@rulvar/rulvar": "^1.3.
|
|
19
|
+
"@rulvar/rulvar": "^1.3.2"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|