signetai 0.140.3 → 0.140.4

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
@@ -41814,7 +41814,7 @@ async function createMcpServer(opts) {
41814
41814
  description: "Rate how relevant injected memories were to the conversation. " + "Scores from -1 (harmful) to 1 (directly helpful). 0 = unused.",
41815
41815
  inputSchema: exports_external.object({
41816
41816
  session_key: exports_external.string().describe("Current session key"),
41817
- agent_id: exports_external.string().optional().describe("Agent id scope (default: default)"),
41817
+ agent_id: exports_external.string().optional().describe("Agent id scope (defaults to authenticated scope/current agent)"),
41818
41818
  ratings: exports_external.object({}).catchall(exports_external.number()).describe("Map of memory ID to relevance score (-1 to 1)"),
41819
41819
  paths: exports_external.object({}).catchall(exports_external.object({
41820
41820
  entity_ids: exports_external.array(exports_external.string()).optional(),
@@ -41849,7 +41849,7 @@ async function createMcpServer(opts) {
41849
41849
  title: "List Peer Sessions",
41850
41850
  description: "List currently active Signet peer agent sessions. " + "Pass include_self: true to include sessions from the same agent (same agentId).",
41851
41851
  inputSchema: exports_external.object({
41852
- agent_id: exports_external.string().optional().describe("Current agent id (default: default)"),
41852
+ agent_id: exports_external.string().optional().describe("Current agent id (defaults to authenticated scope/current agent)"),
41853
41853
  session_key: exports_external.string().optional().describe("Current session key (excluded from peers)"),
41854
41854
  include_self: exports_external.boolean().optional().describe("Include sessions owned by the current agent (default false)"),
41855
41855
  project: exports_external.string().optional().describe("Optional project path filter"),
@@ -41857,7 +41857,8 @@ async function createMcpServer(opts) {
41857
41857
  })
41858
41858
  }, async ({ agent_id, session_key, include_self, project, limit }) => {
41859
41859
  const params = new URLSearchParams;
41860
- params.set("agent_id", agent_id ?? "default");
41860
+ if (agent_id)
41861
+ params.set("agent_id", agent_id);
41861
41862
  if (session_key)
41862
41863
  params.set("session_key", session_key);
41863
41864
  params.set("include_self", String(include_self ?? false));
@@ -41932,7 +41933,7 @@ async function createMcpServer(opts) {
41932
41933
  title: "Read Agent Inbox",
41933
41934
  description: "Read recent cross-agent messages for the current or specified agent.",
41934
41935
  inputSchema: exports_external.object({
41935
- agent_id: exports_external.string().optional().describe("Recipient agent id (default: default)"),
41936
+ agent_id: exports_external.string().optional().describe("Recipient agent id (defaults to authenticated scope/current agent)"),
41936
41937
  session_key: exports_external.string().optional().describe("Recipient session key"),
41937
41938
  since: exports_external.string().optional().describe("ISO timestamp filter"),
41938
41939
  limit: exports_external.number().optional().describe("Max messages to return"),
@@ -41941,7 +41942,8 @@ async function createMcpServer(opts) {
41941
41942
  })
41942
41943
  }, async ({ agent_id, session_key, since, limit, include_sent, include_broadcast }) => {
41943
41944
  const params = new URLSearchParams;
41944
- params.set("agent_id", agent_id ?? "default");
41945
+ if (agent_id)
41946
+ params.set("agent_id", agent_id);
41945
41947
  if (session_key)
41946
41948
  params.set("session_key", session_key);
41947
41949
  if (since)
@@ -42238,8 +42240,8 @@ async function createMcpServer(opts) {
42238
42240
  }),
42239
42241
  annotations: { readOnlyHint: false }
42240
42242
  }, async ({ session_key, enabled, agent_id }) => {
42241
- const aid = agent_id ?? "default";
42242
- const result = await fetchDaemon(baseUrl, `/api/sessions/${encodeURIComponent(session_key)}/bypass?agent_id=${encodeURIComponent(aid)}`, { method: "POST", body: { enabled } });
42243
+ const query = agent_id ? `?agent_id=${encodeURIComponent(agent_id)}` : "";
42244
+ const result = await fetchDaemon(baseUrl, `/api/sessions/${encodeURIComponent(session_key)}/bypass${query}`, { method: "POST", body: { enabled } });
42243
42245
  if (!result.ok)
42244
42246
  return errorResult(`Bypass toggle failed: ${result.error}`);
42245
42247
  return textResult(result.data);
@@ -1,43 +1,43 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.140.3",
3
+ "version": "0.140.4",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "54cf4d806358a4f72aa86122833b93a1ec456cfcb4ede900c303ab89468dfaf9",
9
- "size": 125614624
8
+ "sha256": "266ef405e8a4869e7b916c9aefa36702f08946bfa15b82b540b400220348abe3",
9
+ "size": 125631136
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "37a6e54d911bc75cfbdda3678e649d310057d69376d785f9f2952246de2fe6b4",
15
- "size": 130173504
14
+ "sha256": "c7e8992e82f794c5a1c4b46fdc3137e04a29176faf4457ced46fdfda2924935a",
15
+ "size": 130189888
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "28306c95b621e011441fbcdb18ceb88c9973b627ee37b947f5464bb2587af1d3",
21
- "size": 162946597
20
+ "sha256": "b50377796868cdcae09555b1235636a04caaab0b82413ed584dad8deb8c092be",
21
+ "size": 162957105
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "e8bab2ae9ee453a2c1be58d8a83688a934ce0082996bf43ebde4af2424b184c4",
27
- "size": 163460247
26
+ "sha256": "5519156d1b8177f5113186622bc6fe8d421f794762f2445f82291d4e96f09635",
27
+ "size": 163470759
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "5cb23753dd603ef385423d46afe6a7dc4082e46e9ad925b6289dadc671de7b77",
33
- "size": 179524608
32
+ "sha256": "5057365df56a4aea28a03900bf0119e765b43f0429b62a9bea61068e77bac66c",
33
+ "size": 179535360
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.140.3.tar.gz",
39
- "sha256": "916e75687cac0d463274d5b620b1877c398c63696609dbf00b159a0ae0fbb365",
40
- "size": 15372
38
+ "url": "signet-connectors-0.140.4.tar.gz",
39
+ "sha256": "2b7a5f23f5eb993361ca99a94a124320e161ec79aa9554a6253b43915098eb6a",
40
+ "size": 15376
41
41
  }
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.140.3",
3
+ "version": "0.140.4",
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.140.3/signetai-darwin-arm64-0.140.3.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.3/signetai-darwin-x64-0.140.3.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.3/signetai-linux-arm64-0.140.3.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.3/signetai-linux-x64-0.140.3.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.3/signetai-win32-x64-0.140.3.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.4/signetai-darwin-arm64-0.140.4.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.4/signetai-darwin-x64-0.140.4.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.4/signetai-linux-arm64-0.140.4.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.4/signetai-linux-x64-0.140.4.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.4/signetai-win32-x64-0.140.4.tgz"
73
73
  }
74
74
  }