signetai 0.140.3 → 0.140.5
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 +9 -7
- package/native-manifest.json +14 -14
- package/package.json +6 -6
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 (
|
|
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 (
|
|
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
|
-
|
|
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 (
|
|
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
|
-
|
|
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
|
|
42242
|
-
const result = await fetchDaemon(baseUrl, `/api/sessions/${encodeURIComponent(session_key)}/bypass
|
|
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);
|
package/native-manifest.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"version": "0.140.
|
|
3
|
+
"version": "0.140.5",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "728cfaa57783a6aa351ff981772c81d9775b215c07fb3b6b7983ef3ea046f422",
|
|
9
|
+
"size": 125631136
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "be65011ede8d87046bf7dbc57ffbb6fc1307f300c7bb01a5ec693aa701f1f49b",
|
|
15
|
+
"size": 130189888
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "f59b79ea28da2225f99071bbc94ef65897c89b9bc336fac960726623fd67e28d",
|
|
21
|
+
"size": 162958564
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "25d90848e433d4d8f7f9d24eaf41f6c4fc7ddb079aed96855f7025b1959e8756",
|
|
27
|
+
"size": 163472214
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "b6172cb06d375482a3c4c254bf1d514389c3456d6435ea51164a522fc0292dc5",
|
|
33
|
+
"size": 179536896
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.140.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.140.5.tar.gz",
|
|
39
|
+
"sha256": "3a300303e6077c0dcf7b984148dd6f3a128803c6a5b41f862cdfcd7ec45d4419",
|
|
40
|
+
"size": 15378
|
|
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
|
+
"version": "0.140.5",
|
|
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.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.5/signetai-darwin-arm64-0.140.5.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.5/signetai-darwin-x64-0.140.5.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.5/signetai-linux-arm64-0.140.5.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.5/signetai-linux-x64-0.140.5.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.140.5/signetai-win32-x64-0.140.5.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|