squad-openclaw 1.0.0 → 2026.2.16

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/dist/index.js CHANGED
@@ -29,7 +29,7 @@ var db;
29
29
  var vecEnabled = false;
30
30
  function getDb(configDir) {
31
31
  if (db) return db;
32
- const pluginDir = path.join(configDir, "extensions", "squad-app");
32
+ const pluginDir = path.join(configDir, "extensions", "squad-openclaw");
33
33
  const dataDir = path.join(pluginDir, "data");
34
34
  fs.mkdirSync(dataDir, { recursive: true });
35
35
  const dbPath = path.join(dataDir, DB_NAME);
@@ -330,7 +330,7 @@ function syncEntitiesFromFilesystem(db2, configDir) {
330
330
  const seedPath = path.join(
331
331
  configDir,
332
332
  "extensions",
333
- "squad-app",
333
+ "squad-openclaw",
334
334
  "data",
335
335
  "search-seed.json"
336
336
  );
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "squad-app",
2
+ "id": "squad-openclaw",
3
3
  "name": "Squad App",
4
4
  "description": "Entity registry with FTS/vector search, filesystem tools, and self-update for Squad",
5
5
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-openclaw",
3
- "version": "1.0.0",
3
+ "version": "2026.2.16",
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,7 +12,9 @@
12
12
  }
13
13
  },
14
14
  "openclaw": {
15
- "extensions": ["./dist/index.js"]
15
+ "extensions": [
16
+ "./dist/index.js"
17
+ ]
16
18
  },
17
19
  "files": [
18
20
  "dist/",
@@ -22,7 +24,11 @@
22
24
  "build": "tsup",
23
25
  "prepublishOnly": "npm run build"
24
26
  },
25
- "keywords": ["openclaw", "openclaw-plugin", "squad"],
27
+ "keywords": [
28
+ "openclaw",
29
+ "openclaw-plugin",
30
+ "squad"
31
+ ],
26
32
  "dependencies": {
27
33
  "@sinclair/typebox": "^0.31.0",
28
34
  "better-sqlite3": "^11.0.0"