@alfe.ai/openclaw-database 0.0.28 → 0.0.30
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 +12 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @alfe.ai/openclaw-database
|
|
2
|
+
|
|
3
|
+
> **FROZEN (2026-07-03).** The per-tenant database feature is frozen platform-side.
|
|
4
|
+
> This plugin is no longer shipped to new agents and its backend
|
|
5
|
+
> (`services/database`) refuses to provision clusters. The package is retained
|
|
6
|
+
> but dormant. See [`services/database/REVIVE.md`](../../services/database/REVIVE.md)
|
|
7
|
+
> for the rationale and how to bring it back.
|
|
8
|
+
|
|
9
|
+
OpenClaw plugin that gives an agent direct MongoDB access to its org's Atlas
|
|
10
|
+
cluster via `db_*` MCP tools (find / insert / update / delete / aggregate /
|
|
11
|
+
index / schema). Credentials are fetched from the Alfe database service at
|
|
12
|
+
activation time.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw-database",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"description": "OpenClaw database plugin — MongoDB access for agents via MCP tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/plugin.js",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"mongodb": "^6.12.0",
|
|
31
|
-
"@alfe.ai/agent-api-client": "0.
|
|
32
|
-
"@alfe.ai/config": "0.
|
|
31
|
+
"@alfe.ai/agent-api-client": "0.5.0",
|
|
32
|
+
"@alfe.ai/config": "0.3.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"openclaw": ">=2026.3.0"
|