signetai 0.219.0 → 0.219.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
@@ -41779,6 +41779,7 @@ function loadDreamingConfig(yaml) {
41779
41779
  const defaultSurprisal = dd.surprisal ?? DEFAULT_DREAMING_SURPRISAL;
41780
41780
  const surprisal = raw.surprisal;
41781
41781
  return {
41782
+ enabled: typeof raw.enabled === "boolean" ? raw.enabled : dd.enabled,
41782
41783
  tokenThreshold: clampWarn("tokenThreshold", raw.tokenThreshold, 1e4, 1e6, dd.tokenThreshold),
41783
41784
  maxInterval: clampWarn("maxInterval", raw.maxInterval, 5 * 60 * 1000, 7 * 24 * 60 * 60 * 1000, dd.maxInterval),
41784
41785
  timeout: clampWarn("timeout", raw.timeout, 30000, 1800000, dd.timeout),
@@ -41828,6 +41829,7 @@ var init_memory_config = __esm(() => {
41828
41829
  minScore: 0.75
41829
41830
  };
41830
41831
  DEFAULT_DREAMING = {
41832
+ enabled: false,
41831
41833
  tokenThreshold: 1e5,
41832
41834
  maxInterval: 6 * 60 * 60 * 1000,
41833
41835
  timeout: 20 * 60 * 1000,
@@ -41894,7 +41896,7 @@ var init_memory_config = __esm(() => {
41894
41896
  autonomous: {
41895
41897
  enabled: true,
41896
41898
  frozen: false,
41897
- allowUpdateDelete: false,
41899
+ allowUpdateDelete: true,
41898
41900
  maintenanceIntervalMs: 30 * 60 * 1000,
41899
41901
  maintenanceMode: "execute"
41900
41902
  },
@@ -1,43 +1,43 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.219.0",
3
+ "version": "0.219.2",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "31862b8cc0a2c79d254750b9da7f4728769a614a0d52a4b44597ebb39845f3a2",
8
+ "sha256": "1bdc5c33b870889ae392e657bf9ccaede73b76394e6013475391c3eb0aa6f378",
9
9
  "size": 198399520
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "54f6123965e42eeef5c9c2dc43167e5e022d1d11393e825210bf63c6477327fe",
15
- "size": 202836544
14
+ "sha256": "2f52bbf3fcd60585a7ff572380609fa5065bb0a1063cfd820fc890bb19eefce3",
15
+ "size": 202852928
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "8abe252120fc5a35f79b786f43d6ccbaa1e04359fc7af70f50e30db3a361bb86",
21
- "size": 245437613
20
+ "sha256": "de59d79e78cf0e5774281a75e69cabf9216697f24bd9105ca8fae3de45c22e81",
21
+ "size": 245441957
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "cafa23dfcf32296bb787b25e2d486ab7b3042c44490778e1d9b14f2697d4e720",
27
- "size": 248225620
26
+ "sha256": "603d9369ddfd1c9480d86330d44923465bd5a9391a3dceef7801230e85e539f5",
27
+ "size": 248229964
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "028a631f4c00f030eff9f0c9f1f0bc77933c4e27453d3b8aee95fde7aa9e4e81",
33
- "size": 254685696
32
+ "sha256": "d55081843f502f6268483734f88f93b50c10d096b5b04360e8dd8f1fa8c4a9bf",
33
+ "size": 254690304
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.219.0.tar.gz",
39
- "sha256": "baf425788a62d03c46c00771ad9a882c7e24a1c5df3bf32412ae72a35e534150",
40
- "size": 22025
38
+ "url": "signet-connectors-0.219.2.tar.gz",
39
+ "sha256": "da1fba515a9f0d5327fcceabe1733b14e92f6b398cc5f3d4c7944750a5eea33e",
40
+ "size": 22020
41
41
  }
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.219.0",
3
+ "version": "0.219.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.219.0/signetai-darwin-arm64-0.219.0.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.0/signetai-darwin-x64-0.219.0.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.0/signetai-linux-arm64-0.219.0.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.0/signetai-linux-x64-0.219.0.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.0/signetai-win32-x64-0.219.0.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.2/signetai-darwin-arm64-0.219.2.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.2/signetai-darwin-x64-0.219.2.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.2/signetai-linux-arm64-0.219.2.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.2/signetai-linux-x64-0.219.2.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.2/signetai-win32-x64-0.219.2.tgz"
73
73
  }
74
74
  }