@rulvar/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.
Files changed (2) hide show
  1. package/README.md +43 -0
  2. package/package.json +5 -5
package/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # @rulvar/rulvar
2
+
3
+ The batteries-included rulvar install: re-exports the entire
4
+ `@rulvar/core` surface plus both first-class adapters (`anthropic`,
5
+ `openai`), the terminal progress renderer, and `recommendedDefaults`,
6
+ the only place the project names strong default models for the
7
+ orchestrate and plan roles. Also installable through the unscoped alias
8
+ package `rulvar`, which re-exports this one.
9
+
10
+ Part of [rulvar](https://rulvar.com), an embeddable TypeScript engine
11
+ for durable, budget-bounded multi-agent LLM workflows, where a completed
12
+ LLM call is never paid for twice. Full documentation:
13
+ [docs.rulvar.com](https://docs.rulvar.com).
14
+
15
+ ## Install
16
+
17
+ ```bash
18
+ pnpm add @rulvar/rulvar
19
+ ```
20
+
21
+ A minimal engine is one import:
22
+
23
+ ```ts
24
+ import { createEngine, anthropic, openai, recommendedDefaults } from '@rulvar/rulvar';
25
+
26
+ const engine = createEngine({
27
+ adapters: [anthropic(), openai()],
28
+ defaults: {
29
+ routing: recommendedDefaults.routing,
30
+ roleFloors: recommendedDefaults.floors,
31
+ },
32
+ });
33
+ ```
34
+
35
+ ## Documentation
36
+
37
+ - [Quickstart](https://docs.rulvar.com/guide/quickstart)
38
+ - [Installation](https://docs.rulvar.com/guide/installation)
39
+ - [API reference](https://docs.rulvar.com/api/%40rulvar/rulvar/)
40
+
41
+ ## License
42
+
43
+ [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/rulvar",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "rulvar umbrella package: re-exports @rulvar/core, both first-class adapters, the file store, and the terminal progress renderer. Also installable through the unscoped alias package rulvar, which re-exports this one.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -22,16 +22,16 @@
22
22
  "access": "public"
23
23
  },
24
24
  "dependencies": {
25
- "@rulvar/core": "1.3.1",
26
- "@rulvar/openai": "1.3.1",
27
- "@rulvar/anthropic": "1.3.1"
25
+ "@rulvar/core": "1.3.2",
26
+ "@rulvar/anthropic": "1.3.2",
27
+ "@rulvar/openai": "1.3.2"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "^22.20.0",
31
31
  "tsdown": "^0.22.3",
32
32
  "typescript": "~6.0.3",
33
33
  "zod": "^4.4.3",
34
- "@rulvar/testing": "1.3.1"
34
+ "@rulvar/testing": "1.3.2"
35
35
  },
36
36
  "repository": {
37
37
  "type": "git",