@alfe.ai/openclaw 0.0.12 → 0.0.14
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/openclaw.plugin.json +17 -0
- package/package.json +4 -3
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "@alfe.ai/openclaw",
|
|
3
|
+
"name": "Alfe Integration Plugin",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "Connects OpenClaw to the local Alfe gateway daemon for remote integration management via the Alfe dashboard.",
|
|
6
|
+
"entry": "./dist/plugin.js",
|
|
7
|
+
"configSchema": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"socketPath": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "Override the daemon IPC socket path. Defaults to ~/.alfe/gateway.sock"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"description": "OpenClaw plugin for Alfe — connects to local gateway daemon via IPC for integration management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,13 +25,14 @@
|
|
|
25
25
|
"@sinclair/typebox": "^0.34.48",
|
|
26
26
|
"@alfe.ai/agent-api-client": "^0.0.2",
|
|
27
27
|
"@alfe.ai/config": "^0.0.5",
|
|
28
|
-
"@alfe.ai/integrations": "^0.0.
|
|
28
|
+
"@alfe.ai/integrations": "^0.0.12"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@alfe/agent-client": "0.1.0"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
|
-
"dist"
|
|
34
|
+
"dist",
|
|
35
|
+
"openclaw.plugin.json"
|
|
35
36
|
],
|
|
36
37
|
"license": "UNLICENSED",
|
|
37
38
|
"scripts": {
|