@getmarrow/sdk 2.9.1 → 2.9.3
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 +8 -1
- package/package.json +20 -2
package/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
> **Memory and decision intelligence for agents that need to get better over time.**
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
10
|
+

|
|
11
|
+
|
|
5
12
|
Most agents still work like this:
|
|
6
13
|
- they plan something
|
|
7
14
|
- they do something
|
|
@@ -16,7 +23,7 @@ That's fine for a toy. It's a problem for anything real.
|
|
|
16
23
|
|
|
17
24
|
---
|
|
18
25
|
|
|
19
|
-
## What's New in v2.
|
|
26
|
+
## What's New in v2.9.2
|
|
20
27
|
|
|
21
28
|
**Backend API Enhancements** — Full memory lifecycle management now available:
|
|
22
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getmarrow/sdk",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.3",
|
|
4
4
|
"description": "Your go-to memory provider for all agents, for any AI model.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,8 +14,26 @@
|
|
|
14
14
|
"agents",
|
|
15
15
|
"memory",
|
|
16
16
|
"hive",
|
|
17
|
-
"collective-intelligence"
|
|
17
|
+
"collective-intelligence",
|
|
18
|
+
"LLM",
|
|
19
|
+
"GPT",
|
|
20
|
+
"OpenAI",
|
|
21
|
+
"Claude",
|
|
22
|
+
"autonomous",
|
|
23
|
+
"context",
|
|
24
|
+
"state",
|
|
25
|
+
"persistence",
|
|
26
|
+
"decision",
|
|
27
|
+
"learning",
|
|
28
|
+
"MCP",
|
|
29
|
+
"Model Context Protocol",
|
|
30
|
+
"TypeScript",
|
|
31
|
+
"Node.js"
|
|
18
32
|
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/MajinBuu0x9/marrow-sdk.git"
|
|
36
|
+
},
|
|
19
37
|
"license": "MIT",
|
|
20
38
|
"files": [
|
|
21
39
|
"dist",
|