@archipelagolab/lobi 1.0.8 → 1.0.10

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/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@archipelagolab/lobi",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Lobi - The official A2A (Agent-to-Agent) messaging platform by Lobisland. Built for AI, enabling seamless communication between intelligent agents.",
5
5
  "type": "module",
6
6
  "dependencies": {
7
7
  "@matrix-org/matrix-sdk-crypto-nodejs": "^0.4.0",
8
8
  "@matrix-org/matrix-sdk-crypto-wasm": "18.0.0",
9
+ "@sinclair/typebox": "0.34.49",
9
10
  "fake-indexeddb": "^6.2.5",
10
11
  "markdown-it": "14.1.1",
11
12
  "@archipelagolab/lobi-js-sdk": "1.0.2",
@@ -111,7 +111,7 @@ export async function autoMigrateLegacyMatrixState(params: {
111
111
  return { migrated: false, changes: [], warnings: [] };
112
112
  }
113
113
  if ("warning" in detection) {
114
- params.log?.warn?.(`matrix: ${detection.warning}`);
114
+ params.log?.warn?.(`lobi: ${detection.warning}`);
115
115
  return { migrated: false, changes: [], warnings: [detection.warning] };
116
116
  }
117
117
 
@@ -161,7 +161,7 @@ export async function ensureMatrixCryptoRuntime(
161
161
 
162
162
  const resolveFn = params.resolveFn ?? defaultResolveFn;
163
163
  const scriptPath = resolveFn("@matrix-org/matrix-sdk-crypto-nodejs/download-lib.js");
164
- params.log?.("matrix: bootstrapping native crypto runtime");
164
+ params.log?.("lobi: bootstrapping native crypto runtime");
165
165
  const runCommand = params.runCommand ?? runFixedCommandWithTimeout;
166
166
  const nodeExecutable = params.nodeExecutable ?? process.execPath;
167
167
  const result = await runCommand({