@adrkit/evaluator 0.2.0 → 0.2.1

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 +7 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -6,7 +6,7 @@ reports and schema-compatible patches, and routes proposals without approving
6
6
  or persisting them.
7
7
 
8
8
  ```sh
9
- bun add @adrkit/evaluator
9
+ npm install @adrkit/evaluator # or: bun add @adrkit/evaluator
10
10
  ```
11
11
 
12
12
  ```ts
@@ -16,7 +16,12 @@ const result = evaluatePass0(input);
16
16
  ```
17
17
 
18
18
  No model, network, clock, filesystem traversal, or database is used by the
19
- library. The published ESM artifacts run on Node.js 22 or newer.
19
+ library. The published ESM artifacts run on Node.js 22 or newer; development in
20
+ the adrkit repository uses Bun.
21
+
22
+ See also [`@adrkit/mcp`](../mcp/README.md) — a local, read-only Model Context
23
+ Protocol server that exposes the ADR corpus (including superseded/rejected
24
+ decisions) to coding agents.
20
25
 
21
26
  Documentation: <https://adrkit.dev>
22
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adrkit/evaluator",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Deterministic, model-free ADR proposal evaluation and routing for adrkit.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -40,7 +40,7 @@
40
40
  "typecheck": "tsc --noEmit --customConditions bun --project ../../tsconfig.json"
41
41
  },
42
42
  "dependencies": {
43
- "@adrkit/core": "0.2.0",
43
+ "@adrkit/core": "0.2.1",
44
44
  "jsonpath-rfc9535": "1.3.0"
45
45
  },
46
46
  "devDependencies": {