visionclaw 0.1.206-beta.3 → 0.1.206-beta.4

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.
@@ -155,3 +155,7 @@ fin-app 服务端每天在 owner 当地时间早上 8 点向 `fin-home` thread
155
155
  **owner 在 manual 策略 thread 说"模拟盘买入 600519 200 股"**:确认策略已开通模拟盘(没有则先确认市场后 `finapp_start_paper_trading`)→ `finapp_place_paper_order(id, assetId="A:600519", side="buy", quantity=200)` → 回复"已在模拟盘提交买入订单"(明确是模拟)。
156
156
 
157
157
  **owner 说"茅台跌破 1500 提醒我"(在某 idea/strategy thread)**:一次 `finapp_create_monitor(objectType, objectId, title, condition={symbol:"600519", market:"CN", operator:"lte", threshold:1500})` 即完成(服务端自动注册 event-trigger)→ 回复已设置监控。
158
+
159
+ ### Mentioned instruments
160
+
161
+ When you explicitly discuss a listed instrument in a FinApp object thread, proactively call `finapp_add_mentioned_instruments(threadKey, instruments)` after confirming complete identity. Supply market (`US|HK|A`), an ISO MIC exchange from the supported list (`XNAS|XNYS|ARCX|XHKG|XSHG|XSHE`), assetType, canonicalSymbol, and a contract/share-class identifier for options or non-ETF funds. This is an Agent decision and tool write, not automatic text extraction. Never guess from a bare ticker; omit genuinely ambiguous candidates.
@@ -20792,7 +20792,7 @@ var require_prompts3 = __commonJS({
20792
20792
 
20793
20793
  // dist/utils/version-check.js
20794
20794
  function isBundled() {
20795
- const v14 = "0.1.206-beta.3";
20795
+ const v14 = "0.1.206-beta.4";
20796
20796
  return typeof v14 === "string" && v14 !== "undefined";
20797
20797
  }
20798
20798
  function getPackageRoot() {
@@ -20809,7 +20809,7 @@ function getInstallationInfo() {
20809
20809
  };
20810
20810
  }
20811
20811
  function getCurrentVersion() {
20812
- const bundledVersion = "0.1.206-beta.3";
20812
+ const bundledVersion = "0.1.206-beta.4";
20813
20813
  if (bundledVersion && bundledVersion !== "undefined") {
20814
20814
  return bundledVersion;
20815
20815
  }
@@ -990857,7 +990857,7 @@ var init_browser_launcher = __esm({
990857
990857
 
990858
990858
  // dist/utils/playwriter-relay.js
990859
990859
  function isBundled2() {
990860
- const v14 = "0.1.206-beta.3";
990860
+ const v14 = "0.1.206-beta.4";
990861
990861
  return typeof v14 === "string" && v14 !== "undefined";
990862
990862
  }
990863
990863
  function resolveRelayEntryPath() {
@@ -990892,7 +990892,7 @@ function getPm2RelayProcess() {
990892
990892
  }
990893
990893
  }
990894
990894
  function pm2Start(entryPath, host, port) {
990895
- const versionStr = "0.1.206-beta.3";
990895
+ const versionStr = "0.1.206-beta.4";
990896
990896
  (0, import_node_child_process19.execFileSync)("pm2", ["start", entryPath, "--name", PM2_PROCESS_NAME, "--update-env"], {
990897
990897
  encoding: "utf-8",
990898
990898
  stdio: "pipe",
@@ -990918,7 +990918,7 @@ function pm2Delete() {
990918
990918
  }
990919
990919
  }
990920
990920
  function pm2Restart(host, port) {
990921
- const versionStr = "0.1.206-beta.3";
990921
+ const versionStr = "0.1.206-beta.4";
990922
990922
  (0, import_node_child_process19.execFileSync)("pm2", ["restart", PM2_PROCESS_NAME, "--update-env"], {
990923
990923
  encoding: "utf-8",
990924
990924
  stdio: "pipe",
@@ -991088,7 +991088,7 @@ function reconcilePlaywriterRelay(host = "127.0.0.1", port = 19988) {
991088
991088
  pm2Restart(host, port);
991089
991089
  return;
991090
991090
  }
991091
- const currentVersion = "0.1.206-beta.3";
991091
+ const currentVersion = "0.1.206-beta.4";
991092
991092
  if (currentEnv.VISIONCLAW_VERSION && currentEnv.VISIONCLAW_VERSION !== currentVersion) {
991093
991093
  logger.system(`Playwriter relay: VisionClaw version changed (${currentEnv.VISIONCLAW_VERSION} \u2192 ${currentVersion}), recreating`);
991094
991094
  pm2Delete();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "visionclaw",
3
- "version": "0.1.206-beta.3",
3
+ "version": "0.1.206-beta.4",
4
4
  "description": "A personal assistant agent that runs on your desktop, receives commands from messaging channels, and executes tasks autonomously.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",