unimemory 0.0.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 +13 -0
- package/index.js +2 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# UniMemory
|
|
2
|
+
|
|
3
|
+
UniMemory is a unified memory layer for AI agents.
|
|
4
|
+
|
|
5
|
+
This package is currently a placeholder while the core system is under active development.
|
|
6
|
+
|
|
7
|
+
Planned:
|
|
8
|
+
- Local-first memory core
|
|
9
|
+
- System-level capture (macOS)
|
|
10
|
+
- SDK for Node, browser extensions, and agents
|
|
11
|
+
- Search and recall APIs
|
|
12
|
+
|
|
13
|
+
Follow development at: https://github.com/unimemory
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "unimemory",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Unified memory layer for AI Agents.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"memory",
|
|
8
|
+
"context",
|
|
9
|
+
"ai",
|
|
10
|
+
"agents",
|
|
11
|
+
"unified-memory",
|
|
12
|
+
"recall"
|
|
13
|
+
],
|
|
14
|
+
"author": "Shreyas Gurav",
|
|
15
|
+
"license": "MIT"
|
|
16
|
+
}
|