@aletheia-labs/core 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.
- package/README.md +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,13 @@ The core authority engine of Aletheia: memory as governance for LLM agents.
|
|
|
4
4
|
|
|
5
5
|
> **Status**: `0.1.0` public baseline. The consumer facade (`AletheiaAuthority`) and strict TypeScript domain/storage/runtime contracts are live.
|
|
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/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* Build a memory that knows when to distrust itself."
|
|
12
12
|
*/
|
|
13
13
|
export declare const PACKAGE_NAME = "@aletheia-labs/core";
|
|
14
|
-
export declare const PACKAGE_VERSION = "0.1.
|
|
14
|
+
export declare const PACKAGE_VERSION = "0.1.1";
|
|
15
15
|
export * from './types/index.js';
|
|
16
16
|
export * from './storage/index.js';
|
|
17
17
|
export * from './runtime/index.js';
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* Build a memory that knows when to distrust itself."
|
|
12
12
|
*/
|
|
13
13
|
export const PACKAGE_NAME = '@aletheia-labs/core';
|
|
14
|
-
export const PACKAGE_VERSION = '0.1.
|
|
14
|
+
export const PACKAGE_VERSION = '0.1.1';
|
|
15
15
|
// Domain types and schemas — the public protocol surface.
|
|
16
16
|
export * from './types/index.js';
|
|
17
17
|
// Storage interfaces — implementations live in adapter packages.
|