agentlife 1.1.1 → 1.1.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.
Files changed (2) hide show
  1. package/dist/index.js +8 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2192,8 +2192,7 @@ function registerPairingServices(api) {
2192
2192
  qrTerminal = mainRequire("qrcode-terminal");
2193
2193
  } catch {}
2194
2194
  console.log(`
2195
- \x1B[36m[agentlife]\x1B[0m \x1B[1mPairing QR\x1B[0m`);
2196
- console.log(`Scan this with the Agent Life app to connect.
2195
+ \x1B[36m[agentlife]\x1B[0m \x1B[1mPlugin installed — get the app to see your dashboard.\x1B[0m
2197
2196
  `);
2198
2197
  if (qrTerminal?.generate) {
2199
2198
  qrTerminal.generate(setupCode, { small: true }, (qr) => {
@@ -2207,10 +2206,13 @@ Setup code: ${setupCode}
2207
2206
  console.log(`Run 'openclaw qr' for a scannable QR code.
2208
2207
  `);
2209
2208
  }
2210
- console.log(" Download the app:");
2211
- console.log(" iOS: https://agentlife.app/ios");
2212
- console.log(" Android: https://agentlife.app/android");
2213
- console.log("");
2209
+ console.log(" \x1B[32mMac:\x1B[0m https://agentlife.app/desktop");
2210
+ console.log(" \x1B[32miOS:\x1B[0m https://agentlife.app/ios");
2211
+ console.log(" \x1B[32mAndroid:\x1B[0m https://agentlife.app/android");
2212
+ console.log(` \x1B[2mBrowser:\x1B[0m http://localhost:${port}/agentlife/`);
2213
+ console.log(`
2214
+ Scan the QR from the mobile app to connect.
2215
+ `);
2214
2216
  } catch (err) {
2215
2217
  console.warn("[agentlife] QR generation skipped:", err?.message);
2216
2218
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentlife",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "bun build index.ts --outfile dist/index.js --target node --external openclaw/plugin-sdk",