squad-openclaw 1.0.0 → 2026.2.27
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 +309 -0
- package/dist/index.d.ts +0 -8
- package/dist/index.js +3188 -862
- package/openclaw.plugin.json +4 -3
- package/package.json +22 -12
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"id": "squad-
|
|
2
|
+
"id": "squad-openclaw",
|
|
3
3
|
"name": "Squad App",
|
|
4
|
-
"description": "Entity registry with FTS/vector search, filesystem tools, and self-update for Squad",
|
|
4
|
+
"description": "Entity registry with FTS/vector search, filesystem tools, cloud relay, and self-update for Squad",
|
|
5
5
|
"configSchema": {
|
|
6
6
|
"type": "object",
|
|
7
7
|
"additionalProperties": false,
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"fs.allowedRoots": {
|
|
10
10
|
"type": "array",
|
|
11
11
|
"items": { "type": "string" },
|
|
12
|
-
"
|
|
12
|
+
"default": ["~/.openclaw"],
|
|
13
|
+
"description": "Restrict filesystem operations to these directories. Defaults to [\"~/.openclaw\"]. Hardcoded blocks on credentials/, devices/, identity/, relay/squad-relay.json, and .bak files always apply."
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "squad-openclaw",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2026.2.27",
|
|
4
4
|
"description": "Entity registry, filesystem tools, and version management plugin for OpenClaw gateway",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -12,27 +12,37 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"openclaw": {
|
|
15
|
-
"extensions": [
|
|
15
|
+
"extensions": [
|
|
16
|
+
"./dist/index.js"
|
|
17
|
+
]
|
|
16
18
|
},
|
|
19
|
+
"license": "MIT",
|
|
17
20
|
"files": [
|
|
18
21
|
"dist/",
|
|
19
|
-
"openclaw.plugin.json"
|
|
22
|
+
"openclaw.plugin.json",
|
|
23
|
+
"README.md"
|
|
20
24
|
],
|
|
21
25
|
"scripts": {
|
|
22
26
|
"build": "tsup",
|
|
23
27
|
"prepublishOnly": "npm run build"
|
|
24
28
|
},
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/WorldBrain/squad.git",
|
|
32
|
+
"directory": "extensions/squad-openclaw"
|
|
29
33
|
},
|
|
30
|
-
"
|
|
31
|
-
"
|
|
34
|
+
"keywords": [
|
|
35
|
+
"openclaw",
|
|
36
|
+
"openclaw-plugin",
|
|
37
|
+
"squad"
|
|
38
|
+
],
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@sinclair/typebox": "0.31.28",
|
|
41
|
+
"chokidar": "4.0.3",
|
|
42
|
+
"ws": "8.18.3"
|
|
32
43
|
},
|
|
33
44
|
"devDependencies": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"typescript": "^5.0.0"
|
|
45
|
+
"tsup": "8.5.1",
|
|
46
|
+
"typescript": "5.9.3"
|
|
37
47
|
}
|
|
38
48
|
}
|