lyra-core 0.1.10 → 0.2.0
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 +5 -5
- package/package.json +18 -6
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
The SDK behind **lyra**, a Sui-native, policy-aware AI treasury assistant:
|
|
4
4
|
the brain (OpenAI-compatible), local file-based memory + index,
|
|
5
|
-
the **permission service + approval floor**,
|
|
6
|
-
encrypted keystore,
|
|
7
|
-
|
|
5
|
+
the **permission service + approval floor**, a Sui keypair identity + local
|
|
6
|
+
encrypted keystore, deterministic per-owner agent derivation, the plugin host,
|
|
7
|
+
tool registry, and event queue.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
@@ -19,6 +19,6 @@ Bun / TypeScript-native (ships TS source). Requires [bun](https://bun.sh).
|
|
|
19
19
|
Install [`lyra-ai-agent`](https://www.npmjs.com/package/lyra-ai-agent) (the
|
|
20
20
|
CLI) for the full agent. This package is for plugin authors and library consumers
|
|
21
21
|
who want to embed the runtime, the deterministic policy/approval spine, or the
|
|
22
|
-
|
|
22
|
+
per-owner agent derivation.
|
|
23
23
|
|
|
24
|
-
See the [root README](https://github.com/
|
|
24
|
+
See the [root README](https://github.com/lyraai-protocol/lyra#readme) for the full surface.
|
package/package.json
CHANGED
|
@@ -1,26 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lyra-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The SDK for lyra, a Sui-native policy-aware AI treasury assistant: brain, local memory + storage, the policy/approval engine, and the Sui agent keypair + chain helpers",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"homepage": "https://github.com/
|
|
7
|
+
"homepage": "https://github.com/lyraai-protocol/lyra",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/lyraai-protocol/lyra.git",
|
|
11
11
|
"directory": "packages/core"
|
|
12
12
|
},
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/
|
|
14
|
+
"url": "https://github.com/lyraai-protocol/lyra/issues"
|
|
15
15
|
},
|
|
16
|
-
"keywords": [
|
|
16
|
+
"keywords": [
|
|
17
|
+
"lyra",
|
|
18
|
+
"ai",
|
|
19
|
+
"agent",
|
|
20
|
+
"sui",
|
|
21
|
+
"treasury",
|
|
22
|
+
"defi",
|
|
23
|
+
"policy"
|
|
24
|
+
],
|
|
17
25
|
"publishConfig": {
|
|
18
26
|
"access": "public"
|
|
19
27
|
},
|
|
20
28
|
"engines": {
|
|
21
29
|
"bun": ">=1.1"
|
|
22
30
|
},
|
|
23
|
-
"files": [
|
|
31
|
+
"files": [
|
|
32
|
+
"src",
|
|
33
|
+
"!src/**/*.test.ts",
|
|
34
|
+
"README.md"
|
|
35
|
+
],
|
|
24
36
|
"main": "./src/index.ts",
|
|
25
37
|
"types": "./src/index.ts",
|
|
26
38
|
"exports": {
|