@aletheia-labs/adapters-anthropic 0.1.0 → 0.1.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 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,13 @@ Anthropic-compatible adapter for Aletheia authority-governed memory.
4
4
 
5
5
  > **Status**: `0.1.0` public baseline. Reference Anthropic integration is live as a narrow library adapter. It does not own OAuth, API keys, terminal UX, tools, publication, or provider account state.
6
6
 
7
+ ## Requirements
8
+
9
+ - Node 20+.
10
+ - ESM-only. Add `"type": "module"` to your `package.json`, use `.mjs`, or use
11
+ a build tool/runtime that handles ESM. CommonJS `require()` is not shipped in
12
+ `0.1.x`.
13
+
7
14
  ## Quickstart
8
15
 
9
16
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aletheia-labs/adapters-anthropic",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Anthropic-compatible LLM adapter for Aletheia authority-governed memory.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -19,7 +19,7 @@
19
19
  "LICENSE"
20
20
  ],
21
21
  "dependencies": {
22
- "@aletheia-labs/core": "0.1.0"
22
+ "@aletheia-labs/core": "0.1.1"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "@anthropic-ai/sdk": ">=0.30.0"