@botcord/daemon 0.2.78 → 0.2.79

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.
Files changed (50) hide show
  1. package/dist/attention-policy-fetcher.d.ts +14 -0
  2. package/dist/attention-policy-fetcher.js +59 -0
  3. package/dist/cloud-daemon.js +8 -0
  4. package/dist/cloud-gateway-runtime.d.ts +29 -0
  5. package/dist/cloud-gateway-runtime.js +122 -0
  6. package/dist/daemon.js +21 -6
  7. package/dist/gateway/channels/botcord.js +29 -9
  8. package/dist/gateway/channels/login-session.d.ts +12 -0
  9. package/dist/gateway/channels/login-session.js +20 -2
  10. package/dist/gateway/channels/sanitize.d.ts +5 -18
  11. package/dist/gateway/channels/sanitize.js +5 -54
  12. package/dist/gateway/channels/text-split.d.ts +5 -11
  13. package/dist/gateway/channels/text-split.js +5 -31
  14. package/dist/gateway/dispatcher.d.ts +7 -1
  15. package/dist/gateway/dispatcher.js +88 -8
  16. package/dist/gateway/gateway.d.ts +16 -1
  17. package/dist/gateway/gateway.js +21 -0
  18. package/dist/gateway/policy-resolver.js +17 -9
  19. package/dist/gateway/runtimes/deepseek-tui.js +31 -12
  20. package/dist/gateway/types.d.ts +12 -57
  21. package/dist/gateway-control.js +18 -9
  22. package/dist/provision.d.ts +7 -3
  23. package/dist/provision.js +115 -8
  24. package/dist/room-recovery-context.d.ts +11 -0
  25. package/dist/room-recovery-context.js +97 -0
  26. package/package.json +2 -2
  27. package/src/__tests__/attention-policy-fetcher.test.ts +67 -0
  28. package/src/__tests__/cloud-gateway-runtime.test.ts +127 -0
  29. package/src/__tests__/gateway-control.test.ts +136 -0
  30. package/src/__tests__/policy-resolver.test.ts +20 -0
  31. package/src/__tests__/provision.test.ts +65 -0
  32. package/src/attention-policy-fetcher.ts +87 -0
  33. package/src/cloud-daemon.ts +8 -0
  34. package/src/cloud-gateway-runtime.ts +171 -0
  35. package/src/daemon.ts +23 -6
  36. package/src/gateway/__tests__/botcord-channel.test.ts +97 -0
  37. package/src/gateway/__tests__/deepseek-tui-adapter.test.ts +177 -0
  38. package/src/gateway/__tests__/dispatcher.test.ts +56 -0
  39. package/src/gateway/channels/botcord.ts +32 -8
  40. package/src/gateway/channels/login-session.ts +20 -2
  41. package/src/gateway/channels/sanitize.ts +8 -66
  42. package/src/gateway/channels/text-split.ts +5 -27
  43. package/src/gateway/dispatcher.ts +123 -27
  44. package/src/gateway/gateway.ts +29 -0
  45. package/src/gateway/policy-resolver.ts +20 -9
  46. package/src/gateway/runtimes/deepseek-tui.ts +37 -12
  47. package/src/gateway/types.ts +31 -59
  48. package/src/gateway-control.ts +21 -9
  49. package/src/provision.ts +133 -7
  50. package/src/room-recovery-context.ts +131 -0
@@ -175,6 +175,183 @@ describe("DeepseekTuiAdapter", () => {
175
175
  }
176
176
  });
177
177
 
178
+ it("parses current DeepSeek item.delta agent_message events as assistant text", async () => {
179
+ const server = await startMockDeepseekServer({
180
+ events: [
181
+ {
182
+ event: "turn.started",
183
+ data: {
184
+ seq: 1,
185
+ thread_id: "thr_test",
186
+ turn_id: "turn_test",
187
+ event: "turn.started",
188
+ payload: { turn: { status: "in_progress" } },
189
+ },
190
+ },
191
+ {
192
+ event: "item.started",
193
+ data: {
194
+ seq: 2,
195
+ thread_id: "thr_test",
196
+ turn_id: "turn_test",
197
+ item_id: "item_msg",
198
+ event: "item.started",
199
+ payload: { item: { id: "item_msg", kind: "agent_message", status: "in_progress" } },
200
+ },
201
+ },
202
+ {
203
+ event: "item.delta",
204
+ data: {
205
+ seq: 3,
206
+ thread_id: "thr_test",
207
+ turn_id: "turn_test",
208
+ item_id: "item_msg",
209
+ event: "item.delta",
210
+ payload: { kind: "agent_message", delta: "hello " },
211
+ },
212
+ },
213
+ {
214
+ event: "item.delta",
215
+ data: {
216
+ seq: 4,
217
+ thread_id: "thr_test",
218
+ turn_id: "turn_test",
219
+ item_id: "item_msg",
220
+ event: "item.delta",
221
+ payload: { kind: "agent_message", delta: "deepseek" },
222
+ },
223
+ },
224
+ {
225
+ event: "turn.completed",
226
+ data: {
227
+ seq: 5,
228
+ thread_id: "thr_test",
229
+ turn_id: "turn_test",
230
+ event: "turn.completed",
231
+ payload: { turn: { status: "completed" } },
232
+ },
233
+ },
234
+ ],
235
+ });
236
+ try {
237
+ const { result, blocks, status } = runAdapter(server.baseUrl, server.token);
238
+ const res = await result;
239
+ expect(res).toEqual({ text: "hello deepseek", newSessionId: server.threadId });
240
+ expect(blocks).toContain("assistant_text");
241
+ expect(status.at(-1)).toEqual({ phase: "stopped", label: undefined });
242
+ } finally {
243
+ await server.close();
244
+ }
245
+ });
246
+
247
+ it("parses current DeepSeek item.started/item.completed tool events", async () => {
248
+ const server = await startMockDeepseekServer({
249
+ events: [
250
+ {
251
+ event: "turn.started",
252
+ data: { thread_id: "thr_test", turn_id: "turn_test", event: "turn.started" },
253
+ },
254
+ {
255
+ event: "item.started",
256
+ data: {
257
+ thread_id: "thr_test",
258
+ turn_id: "turn_test",
259
+ event: "item.started",
260
+ payload: {
261
+ item: { id: "item_tool", kind: "tool_call", status: "in_progress" },
262
+ tool: { id: "call_1", name: "web_search", input: { query: "Shanghai weather" } },
263
+ },
264
+ },
265
+ },
266
+ {
267
+ event: "item.completed",
268
+ data: {
269
+ thread_id: "thr_test",
270
+ turn_id: "turn_test",
271
+ event: "item.completed",
272
+ payload: {
273
+ item: {
274
+ id: "item_tool",
275
+ kind: "tool_call",
276
+ status: "completed",
277
+ detail: "Found 5 result(s)",
278
+ },
279
+ },
280
+ },
281
+ },
282
+ {
283
+ event: "item.delta",
284
+ data: {
285
+ thread_id: "thr_test",
286
+ turn_id: "turn_test",
287
+ event: "item.delta",
288
+ payload: { kind: "agent_message", delta: "done" },
289
+ },
290
+ },
291
+ {
292
+ event: "turn.completed",
293
+ data: { thread_id: "thr_test", turn_id: "turn_test", event: "turn.completed" },
294
+ },
295
+ ],
296
+ });
297
+ try {
298
+ const { result, blocks, status } = runAdapter(server.baseUrl, server.token);
299
+ await expect(result).resolves.toMatchObject({ text: "done" });
300
+ expect(blocks).toEqual(expect.arrayContaining(["tool_use", "tool_result", "assistant_text"]));
301
+ expect(status).toContainEqual({ phase: "updated", label: "web_search" });
302
+ } finally {
303
+ await server.close();
304
+ }
305
+ });
306
+
307
+ it("emits current DeepSeek agent_reasoning completions as thinking blocks", async () => {
308
+ const server = await startMockDeepseekServer({
309
+ events: [
310
+ {
311
+ event: "turn.started",
312
+ data: { thread_id: "thr_test", turn_id: "turn_test", event: "turn.started" },
313
+ },
314
+ {
315
+ event: "item.completed",
316
+ data: {
317
+ thread_id: "thr_test",
318
+ turn_id: "turn_test",
319
+ event: "item.completed",
320
+ payload: {
321
+ item: {
322
+ id: "item_reasoning",
323
+ kind: "agent_reasoning",
324
+ status: "completed",
325
+ summary: "I should answer briefly.",
326
+ detail: "I should answer briefly.",
327
+ },
328
+ },
329
+ },
330
+ },
331
+ {
332
+ event: "item.delta",
333
+ data: {
334
+ thread_id: "thr_test",
335
+ turn_id: "turn_test",
336
+ event: "item.delta",
337
+ payload: { kind: "agent_message", delta: "hi" },
338
+ },
339
+ },
340
+ {
341
+ event: "turn.completed",
342
+ data: { thread_id: "thr_test", turn_id: "turn_test", event: "turn.completed" },
343
+ },
344
+ ],
345
+ });
346
+ try {
347
+ const { result, blocks } = runAdapter(server.baseUrl, server.token);
348
+ await expect(result).resolves.toMatchObject({ text: "hi" });
349
+ expect(blocks).toContain("thinking");
350
+ } finally {
351
+ await server.close();
352
+ }
353
+ });
354
+
178
355
  it("reuses an existing DeepSeek thread id and patches per-turn system context", async () => {
179
356
  const server = await startMockDeepseekServer({ threadId: "thr_existing" });
180
357
  try {
@@ -244,6 +244,7 @@ describe("Dispatcher", () => {
244
244
  turnTimeoutMs?: number;
245
245
  runtimeAuthFailureThreshold?: number;
246
246
  runtimeAuthFailureCooldownMs?: number;
247
+ buildRuntimeRecoveryContext?: (message: GatewayInboundMessage) => Promise<string | null> | string | null;
247
248
  }) {
248
249
  const { store, dir } = await makeStore();
249
250
  tempDirs.push(dir);
@@ -258,6 +259,7 @@ describe("Dispatcher", () => {
258
259
  turnTimeoutMs: args.turnTimeoutMs,
259
260
  runtimeAuthFailureThreshold: args.runtimeAuthFailureThreshold,
260
261
  runtimeAuthFailureCooldownMs: args.runtimeAuthFailureCooldownMs,
262
+ buildRuntimeRecoveryContext: args.buildRuntimeRecoveryContext,
261
263
  });
262
264
  return { dispatcher, channel, store };
263
265
  }
@@ -460,6 +462,60 @@ describe("Dispatcher", () => {
460
462
  expect(channel.sends[0].message.type).toBe("error");
461
463
  });
462
464
 
465
+ it("codex: retries a poisoned resumed session in a fresh session with recent room context", async () => {
466
+ let factoryCall = 0;
467
+ const recoveryRuntime: RuntimeAdapter = {
468
+ id: "codex",
469
+ run: vi.fn(async (opts: RuntimeRunOptions): Promise<RuntimeRunResult> => {
470
+ if ((recoveryRuntime.run as any).mock.calls.length === 1) {
471
+ expect(opts.sessionId).toBe("sid-1");
472
+ return {
473
+ text: "",
474
+ newSessionId: "sid-1",
475
+ error: "Codex context compaction failed: maximum context length exceeded",
476
+ };
477
+ }
478
+ expect(opts.sessionId).toBe(null);
479
+ expect(opts.text).toContain("[BotCord Runtime Recovery Notice]");
480
+ expect(opts.text).toContain("[Recent Room Messages]");
481
+ expect(opts.text).toContain("Alice: deploy is failing");
482
+ expect(opts.text).toContain("[Current User Turn]");
483
+ expect(opts.text).toContain("continue");
484
+ return { text: "recovered", newSessionId: "sid-2" };
485
+ }) as RuntimeAdapter["run"],
486
+ };
487
+ const runtimeFactory: RuntimeFactory = () => {
488
+ factoryCall += 1;
489
+ if (factoryCall === 1) {
490
+ return new FakeRuntime({ id: "codex", reply: "ok", newSessionId: "sid-1" });
491
+ }
492
+ return recoveryRuntime;
493
+ };
494
+ const { dispatcher, store, channel } = await scaffold({
495
+ config: baseConfig({ defaultRoute: { runtime: "codex", cwd: "/tmp/default" } }),
496
+ runtimeFactory,
497
+ buildRuntimeRecoveryContext: () =>
498
+ "[Recent Room Messages]\n- Alice: deploy is failing\n- Bot: I am checking logs",
499
+ });
500
+
501
+ await dispatcher.handle(
502
+ makeEnvelope({ id: "msg_1", conversation: { id: "rm_oc_recover", kind: "direct" } }),
503
+ );
504
+ expect(store.all()[0].runtimeSessionId).toBe("sid-1");
505
+
506
+ await dispatcher.handle(
507
+ makeEnvelope({
508
+ id: "msg_2",
509
+ text: "continue",
510
+ conversation: { id: "rm_oc_recover", kind: "direct" },
511
+ }),
512
+ );
513
+
514
+ expect(recoveryRuntime.run).toHaveBeenCalledTimes(2);
515
+ expect(store.all()[0].runtimeSessionId).toBe("sid-2");
516
+ expect(channel.sends.map((s) => s.message.text)).toEqual(["ok", "recovered"]);
517
+ });
518
+
463
519
  it("treats auth failure text as an error and does not persist the failed session", async () => {
464
520
  let callNo = 0;
465
521
  const runtimeFactory: RuntimeFactory = () => {
@@ -986,7 +986,7 @@ function normalizeBlockForHub(
986
986
  // Claude Code: {type:"assistant", message:{content:[{type:"text",text}]}}
987
987
  // Codex: {type:"item.completed", item:{type:"agent_message", text}}
988
988
  // DeepSeek: {event:"message.delta", payload:{content}} or
989
- // {event:"item.delta", payload:{payload:{kind:"agent_message", delta}}}
989
+ // {event:"item.delta", payload:{kind:"agent_message", delta}}
990
990
  let text = "";
991
991
  const contents = Array.isArray(raw?.message?.content) ? raw.message.content : [];
992
992
  for (const c of contents) {
@@ -999,10 +999,14 @@ function normalizeBlockForHub(
999
999
  if (
1000
1000
  !text &&
1001
1001
  raw?.event === "item.delta" &&
1002
- raw?.payload?.payload?.kind === "agent_message" &&
1003
- typeof raw?.payload?.payload?.delta === "string"
1002
+ (raw?.payload?.kind === "agent_message" || raw?.payload?.payload?.kind === "agent_message")
1004
1003
  ) {
1005
- text = raw.payload.payload.delta;
1004
+ text =
1005
+ typeof raw?.payload?.delta === "string"
1006
+ ? raw.payload.delta
1007
+ : typeof raw?.payload?.payload?.delta === "string"
1008
+ ? raw.payload.payload.delta
1009
+ : "";
1006
1010
  }
1007
1011
  return { kind: "assistant", seq, payload: { text } };
1008
1012
  }
@@ -1200,8 +1204,13 @@ function extractDeepseekToolCall(raw: any): { name: string; params?: unknown; id
1200
1204
  };
1201
1205
  }
1202
1206
 
1203
- if (payload.event === "item.started") {
1204
- const inner = payload.payload && typeof payload.payload === "object" ? payload.payload : {};
1207
+ if (raw?.event === "item.started" || payload.event === "item.started") {
1208
+ const inner =
1209
+ raw?.event === "item.started"
1210
+ ? payload
1211
+ : payload.payload && typeof payload.payload === "object"
1212
+ ? payload.payload
1213
+ : {};
1205
1214
  const item = inner.item && typeof inner.item === "object" ? inner.item : undefined;
1206
1215
  const tool = inner.tool && typeof inner.tool === "object" ? inner.tool : item?.tool;
1207
1216
  return {
@@ -1240,8 +1249,18 @@ function extractDeepseekToolResult(raw: any): { name?: string; result: string; i
1240
1249
  };
1241
1250
  }
1242
1251
 
1243
- if (payload.event === "item.completed" || payload.event === "item.failed") {
1244
- const inner = payload.payload && typeof payload.payload === "object" ? payload.payload : {};
1252
+ if (
1253
+ raw?.event === "item.completed" ||
1254
+ raw?.event === "item.failed" ||
1255
+ payload.event === "item.completed" ||
1256
+ payload.event === "item.failed"
1257
+ ) {
1258
+ const inner =
1259
+ raw?.event === "item.completed" || raw?.event === "item.failed"
1260
+ ? payload
1261
+ : payload.payload && typeof payload.payload === "object"
1262
+ ? payload.payload
1263
+ : {};
1245
1264
  const item = inner.item && typeof inner.item === "object" ? inner.item : undefined;
1246
1265
  const result =
1247
1266
  item?.output ??
@@ -1273,6 +1292,11 @@ function formatBlockDetails(raw: unknown): string {
1273
1292
  : typeof r.message === "string" ? r.message
1274
1293
  : typeof r.summary === "string" ? r.summary
1275
1294
  : typeof r.label === "string" ? r.label
1295
+ : typeof r.payload?.delta === "string" ? r.payload.delta
1296
+ : typeof r.payload?.item?.detail === "string" ? r.payload.item.detail
1297
+ : typeof r.payload?.item?.summary === "string" ? r.payload.item.summary
1298
+ : typeof r.payload?.payload?.item?.detail === "string" ? r.payload.payload.item.detail
1299
+ : typeof r.payload?.payload?.item?.summary === "string" ? r.payload.payload.item.summary
1276
1300
  : "";
1277
1301
  if (direct) return direct;
1278
1302
 
@@ -77,10 +77,28 @@ export class LoginSessionStore {
77
77
  return session;
78
78
  }
79
79
 
80
+ /**
81
+ * Distinguish whether `loginId` is unknown to the store ("missing") vs
82
+ * known-but-past-TTL ("expired"). When the entry is expired this also
83
+ * evicts it from the internal map so callers do not need to follow up
84
+ * with a separate `delete`. Use this when the caller wants to surface
85
+ * a precise error code to the user; prefer `get` when a single nullable
86
+ * result is enough.
87
+ */
88
+ resolve(loginId: string): { state: "live" | "expired" | "missing"; session?: LoginSession } {
89
+ const s = this.sessions.get(loginId);
90
+ if (!s) return { state: "missing" };
91
+ if (s.expiresAt <= this.now()) {
92
+ this.sessions.delete(loginId);
93
+ return { state: "expired" };
94
+ }
95
+ return { state: "live", session: s };
96
+ }
97
+
80
98
  /** Get a non-expired session by id, or `null` when missing/expired. */
81
99
  get(loginId: string): LoginSession | null {
82
- this.sweep();
83
- return this.sessions.get(loginId) ?? null;
100
+ const { state, session } = this.resolve(loginId);
101
+ return state === "live" && session ? session : null;
84
102
  }
85
103
 
86
104
  /**
@@ -1,68 +1,10 @@
1
1
  /**
2
- * Sanitize untrusted inbound content before handing it off to a local runtime.
3
- *
4
- * Copied from `packages/daemon/src/sanitize.ts` so the gateway channel adapter
5
- * does not depend back on the daemon package. Keep these two files in sync —
6
- * any new structural marker added in one place should be mirrored in the other.
7
- *
8
- * Neutralizes:
9
- * - BotCord structural markers the channel itself emits (so peers can't forge them).
10
- * - Common LLM prompt-injection patterns (<system>, [INST], <<SYS>>, <|im_start|>, etc.).
11
- * - Wrapper XML tags the channel uses to frame inbound content
12
- * (<agent-message>, <human-message>, <room-rule>).
2
+ * Thin re-export `sanitizeUntrustedContent` / `sanitizeSenderName` live
3
+ * in `@botcord/protocol-core` so the daemon channel adapters and the
4
+ * `gateway-ingress` provider adapters use one canonical implementation.
5
+ * Existing imports of this module keep working unchanged.
13
6
  */
14
-
15
- export function sanitizeUntrustedContent(text: string): string {
16
- let s = text;
17
- s = s.replace(
18
- /<\/?a[\s]*g[\s]*e[\s]*n[\s]*t[\s]*-[\s]*m[\s]*e[\s]*s[\s]*s[\s]*a[\s]*g[\s]*e[\s\S]*?>/gi,
19
- "[⚠ stripped: agent-message tag]",
20
- );
21
- s = s.replace(
22
- /<\/?h[\s]*u[\s]*m[\s]*a[\s]*n[\s]*-[\s]*m[\s]*e[\s]*s[\s]*s[\s]*a[\s]*g[\s]*e[\s\S]*?>/gi,
23
- "[⚠ stripped: human-message tag]",
24
- );
25
- s = s.replace(
26
- /<\/?r[\s]*o[\s]*o[\s]*m[\s]*-[\s]*r[\s]*u[\s]*l[\s]*e[\s\S]*?>/gi,
27
- "[⚠ stripped: room-rule tag]",
28
- );
29
-
30
- return s
31
- .split(/\r?\n/)
32
- .map((line) => {
33
- let l = line;
34
- l = l.replace(/^\[(BotCord (?:Message|Notification))\]/i, "[⚠ fake: $1]");
35
- l = l.replace(/^\[Room Rule\]/i, "[⚠ fake: Room Rule]");
36
- l = l.replace(/^\[房间规则\]/i, "[⚠ fake: 房间规则]");
37
- l = l.replace(/^\[系统提示\]/i, "[⚠ fake: 系统提示]");
38
- l = l.replace(/^\[BotCord\s+([^\]\r\n]+)\]/i, (_m, label) => {
39
- const head = String(label).split(":")[0].trim() || String(label).trim();
40
- return `[⚠ fake: BotCord ${head}]`;
41
- });
42
- l = l.replace(/^\[(System|SYSTEM|Assistant|ASSISTANT|User|USER)\]/, "[⚠ fake: $1]");
43
- l = l.replace(/<\/?\s*system(?:-reminder)?\s*>/gi, "[⚠ stripped: system tag]");
44
- l = l.replace(/<\|im_start\|>/gi, "[⚠ stripped: im_start]");
45
- l = l.replace(/<\|im_end\|>/gi, "[⚠ stripped: im_end]");
46
- l = l.replace(/\[\/?INST\]/gi, "[⚠ stripped: INST]");
47
- l = l.replace(/<<\/?SYS>>/gi, "[⚠ stripped: SYS]");
48
- l = l.replace(/<\s*\/?\|(?:system|user|assistant)\|?\s*>/gi, "[⚠ stripped: role tag]");
49
- return l;
50
- })
51
- .join("\n");
52
- }
53
-
54
- /**
55
- * Sanitize a sender label so it's safe to embed inside
56
- * `<agent-message sender="...">`. Must not contain newlines, structural
57
- * markers, or characters that could break the XML attribute boundary.
58
- */
59
- export function sanitizeSenderName(name: string): string {
60
- return name
61
- .replace(/[\n\r]/g, " ")
62
- .replace(/\[/g, "⟦")
63
- .replace(/\]/g, "⟧")
64
- .replace(/"/g, "'")
65
- .replace(/</g, "<")
66
- .replace(/>/g, ">")
67
- .slice(0, 100);
68
- }
7
+ export {
8
+ sanitizeUntrustedContent,
9
+ sanitizeSenderName,
10
+ } from "@botcord/protocol-core";
@@ -1,29 +1,7 @@
1
1
  /**
2
- * Split a long message into chunks <= `limit` characters each. Prefers to cut
3
- * on newline boundaries so multi-paragraph replies don't fragment mid-line.
4
- *
5
- * Shared by third-party channel adapters (Telegram, WeChat) which both have a
6
- * per-message size cap from upstream and no native streaming. WeChat caller
7
- * passes a smaller `limit` (~1800), Telegram a larger one (~4000, since the
8
- * raw Telegram limit is 4096).
9
- *
10
- * Empty input returns `[""]` so callers can iterate uniformly without a length
11
- * check.
2
+ * Thin re-export `splitText` lives in `@botcord/protocol-core` so the
3
+ * daemon channel adapters and the `gateway-ingress` provider adapters use
4
+ * one canonical implementation. Existing imports of this module keep
5
+ * working unchanged.
12
6
  */
13
- export function splitText(text: string, limit: number): string[] {
14
- if (limit <= 0) return [text];
15
- if (text.length === 0) return [""];
16
- if (text.length <= limit) return [text];
17
-
18
- const out: string[] = [];
19
- let remaining = text;
20
- while (remaining.length > limit) {
21
- let cut = remaining.lastIndexOf("\n", limit);
22
- if (cut <= 0) cut = limit;
23
- out.push(remaining.slice(0, cut));
24
- // Drop the leading newline so the next chunk doesn't start with a blank line.
25
- remaining = remaining.slice(cut).replace(/^\n/, "");
26
- }
27
- if (remaining.length > 0) out.push(remaining);
28
- return out;
29
- }
7
+ export { splitText } from "@botcord/protocol-core";