@rulvar/core 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 +40 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # @rulvar/core
2
+
3
+ The rulvar engine in one dependency-light package: the L0 contracts and
4
+ SPI interfaces, the journal kernel behind the never-pay-twice invariant,
5
+ the model router with the capability and price registry, the agent
6
+ runtime, the tool system and MCP bus, the `ctx` primitives and run
7
+ engine, the dynamic orchestrator, the in-memory and JSONL reference
8
+ stores, and the typed event stream. Zero provider SDK dependencies:
9
+ adapters plug in from their own packages. Key exports: `createEngine`,
10
+ `defineWorkflow`, `tool`, `mcp`, `orchestrate`, `InMemoryStore`,
11
+ `JsonlFileStore`.
12
+
13
+ Part of [rulvar](https://rulvar.com), an embeddable TypeScript engine
14
+ for durable, budget-bounded multi-agent LLM workflows, where a completed
15
+ LLM call is never paid for twice. Full documentation:
16
+ [docs.rulvar.com](https://docs.rulvar.com).
17
+
18
+ ## Install
19
+
20
+ ```bash
21
+ pnpm add @rulvar/core
22
+ ```
23
+
24
+ Most applications start with the umbrella instead: `pnpm add
25
+ @rulvar/rulvar` bundles this engine with both first-class adapters and
26
+ the recommended model defaults. The a la carte path pairs the core with
27
+ exactly the pieces you need, for example
28
+ `pnpm add @rulvar/core @rulvar/anthropic @rulvar/store-sqlite`.
29
+
30
+ ## Documentation
31
+
32
+ - [Quickstart](https://docs.rulvar.com/guide/quickstart)
33
+ - [Architecture](https://docs.rulvar.com/guide/architecture)
34
+ - [Workflows](https://docs.rulvar.com/guide/workflows) and
35
+ [The journal](https://docs.rulvar.com/guide/journal)
36
+ - [API reference](https://docs.rulvar.com/api/%40rulvar/core/)
37
+
38
+ ## License
39
+
40
+ [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/core",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "rulvar core: L0 contracts, journal kernel, ctx primitives, agent runtime, model router, tool system, dynamic orchestrator, InMemory and JSONL stores, event stream.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",