@streamapp/stream 0.0.5 → 0.0.7

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/bin/stream.mjs CHANGED
@@ -70,7 +70,7 @@ if (opts.help) {
70
70
  process.exit(0);
71
71
  }
72
72
  if (opts.version) {
73
- console.log(true ? "0.0.5" : "dev");
73
+ console.log(true ? "0.0.7" : "dev");
74
74
  process.exit(0);
75
75
  }
76
76
  var here = dirname(fileURLToPath(import.meta.url));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamapp/stream",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Stream — a self-hostable information-flow layer: many sources into one inbox, exposed to AI over MCP",
5
5
  "type": "module",
6
6
  "bin": {
@@ -174331,7 +174331,7 @@ async function runDesktopRecipeLocked(recipe, params, driver) {
174331
174331
  const foreground = async () => {
174332
174332
  if (!await driver.focusApp(scoped)) {
174333
174333
  throw new ForegroundRefused(
174334
- `\u6CA1\u80FD\u628A\u300C${scoped.title ?? scoped.process}\u300D\u62AC\u5230\u524D\u53F0\u2014\u2014\u5C4F\u5E55\u9501\u7740\u3001\u4F1A\u8BDD\u6CA1\u4EBA\u8FDE\u7740\u3001\u6216\u8005\u522B\u7684\u7A97\u53E3\u538B\u7740\u4E0D\u653E\u3002\u8FD9\u4E00\u6B65\u8981\u53D1\u7684\u662F\u952E\u76D8/\u9F20\u6807\u8F93\u5165\uFF0C\u6CA1\u6709\u524D\u53F0\u5C31\u6CA1\u6709\u6536\u4EF6\u4EBA\uFF0C\u6240\u4EE5\u505C\u624B\u3002`
174334
+ `\u6CA1\u80FD\u628A\u300C${scoped.title ?? scoped.process}\u300D\u62AC\u5230\u524D\u53F0\u3002\u8FD9\u4E00\u6B65\u8981\u53D1\u7684\u662F\u952E\u76D8/\u9F20\u6807\u8F93\u5165\uFF0C\u6CA1\u6709\u524D\u53F0\u5C31\u6CA1\u6709\u6536\u4EF6\u4EBA\uFF0C\u6240\u4EE5\u505C\u624B\u3002\u4E09\u79CD\u53EF\u80FD\uFF1A**Stream \u662F\u4EE5\u7BA1\u7406\u5458\u8EAB\u4EFD\u8DD1\u7684**\uFF08\u63D0\u6743\u8FDB\u7A0B\u62A2\u4E0D\u52A8\u666E\u901A\u6743\u9650\u7A97\u53E3\u7684\u524D\u53F0\uFF0CUIPI \u6321\u4F4F AttachThreadInput\u2014\u2014\u8FD9\u4E00\u6761\u6700\u9690\u853D\uFF0C\u56E0\u4E3A\u5176\u5B83\u4E00\u5207\u90FD\u6B63\u5E38\uFF09\u3001\u5C4F\u5E55\u9501\u7740 / \u4F1A\u8BDD\u6CA1\u4EBA\u8FDE\u7740\u3001\u522B\u7684\u7A97\u53E3\u538B\u7740\u4E0D\u653E\u3002`
174335
174335
  );
174336
174336
  }
174337
174337
  };
@@ -174395,7 +174395,7 @@ async function runDesktopRecipeLocked(recipe, params, driver) {
174395
174395
  await driver.sleep(step.ms);
174396
174396
  }
174397
174397
  } catch (e) {
174398
- if (e instanceof ForegroundRefused) return stepFailed(step, e.message);
174398
+ if (e instanceof ForegroundRefused) return blocked("drift", e.message);
174399
174399
  throw e;
174400
174400
  }
174401
174401
  }