signetai 0.161.4 → 0.162.2

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/mcp-stdio.js CHANGED
@@ -53357,6 +53357,27 @@ var GENERIC_ENTITY_NAMES = new Set([
53357
53357
  "you",
53358
53358
  "your"
53359
53359
  ]);
53360
+ var TOPOLOGY_PLACEHOLDERS = SOURCE_NATIVE_TOPOLOGY_ENTITY_TYPES.map(() => "?").join(", ");
53361
+ var SEMANTIC_ENTITY_FRAGMENT = `COALESCE(e.pinned, 0) = 0
53362
+ AND NOT (e.entity_type IN (${TOPOLOGY_PLACEHOLDERS}) OR (e.entity_type = 'source' AND e.source_root IS NOT NULL))`;
53363
+ var ZERO_ACTIVE_ATTRIBUTE_ENTITIES_SQL = `
53364
+ SELECT e.id, e.name
53365
+ FROM entities e
53366
+ WHERE e.agent_id = ? AND COALESCE(e.status, 'active') = 'active' AND ${SEMANTIC_ENTITY_FRAGMENT}
53367
+ AND NOT EXISTS (
53368
+ SELECT 1
53369
+ FROM entity_aspects asp
53370
+ WHERE asp.entity_id = e.id AND asp.agent_id = e.agent_id
53371
+ AND COALESCE(asp.status, 'active') = 'active'
53372
+ AND EXISTS (
53373
+ SELECT 1
53374
+ FROM entity_attributes attr
53375
+ WHERE attr.aspect_id = asp.id AND attr.agent_id = asp.agent_id
53376
+ AND attr.status = 'active'
53377
+ )
53378
+ )
53379
+ ORDER BY e.updated_at ASC
53380
+ LIMIT ?`;
53360
53381
 
53361
53382
  // ../../platform/daemon/src/logger.ts
53362
53383
  import { EventEmitter } from "node:events";
@@ -1,43 +1,43 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.161.4",
3
+ "version": "0.162.2",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "94c20b3393a6109d4f3edc55473332487d6695e956b00ac358e3b62255fc4eb1",
9
- "size": 125350432
8
+ "sha256": "d9752d046a73816e4de76da30d6996ba89024696b455659a02e2e0008b05b9cc",
9
+ "size": 117688864
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "2e3d3d7a8016c4ec81058b0ec7eb4d5a82771420e2795ba4cee75d274f061b0b",
15
- "size": 129911360
14
+ "sha256": "fe99c8252300067102eba9a81fb343bb02303e731d550d11e61b93526394fec8",
15
+ "size": 122309184
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "a9bee1ae1434ef2f21c2e3e3e62331f358e491824e1347026a36fa98198529ab",
21
- "size": 162526108
20
+ "sha256": "10d21060fec058733a300c766277507b6554211b9871450c93268921d08e5eea",
21
+ "size": 154925847
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "8f4168f58527b53ef548aa7b8ed93a2b919434996231c99e6db3e9e5bd90027d",
27
- "size": 163085105
26
+ "sha256": "cc9a931238e0ea09be6d3744ad922f802856bc9a0e1c2ff6f6b487f5cf700b8e",
27
+ "size": 155484840
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "6dca692e5c796a7400cbc5673e06200b54ac8b713d4732192a17b2986e8d8fc2",
33
- "size": 179216896
32
+ "sha256": "9e853ebd7c862c7e1422a95fd45e6cc3d8bfea20064880bf04e16b8ad4bcb033",
33
+ "size": 171617792
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.161.4.tar.gz",
39
- "sha256": "d5c56ca2e223eac461d53505824cd46466280910bde379b9ef29bfa351db5814",
40
- "size": 16158
38
+ "url": "signet-connectors-0.162.2.tar.gz",
39
+ "sha256": "f01f8a2807d1da106b12495d981e9c3f2706ec8b31b84e06f89f4d1269afcf0f",
40
+ "size": 16159
41
41
  }
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.161.4",
3
+ "version": "0.162.2",
4
4
  "description": "Signet native CLI installer wrapper",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,10 +65,10 @@
65
65
  "access": "public"
66
66
  },
67
67
  "optionalDependencies": {
68
- "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.161.4/signetai-darwin-arm64-0.161.4.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.161.4/signetai-darwin-x64-0.161.4.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.161.4/signetai-linux-arm64-0.161.4.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.161.4/signetai-linux-x64-0.161.4.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.161.4/signetai-win32-x64-0.161.4.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.162.2/signetai-darwin-arm64-0.162.2.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.162.2/signetai-darwin-x64-0.162.2.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.162.2/signetai-linux-arm64-0.162.2.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.162.2/signetai-linux-x64-0.162.2.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.162.2/signetai-win32-x64-0.162.2.tgz"
73
73
  }
74
74
  }