yaver-cli 1.99.94 → 1.99.95

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,6 +1,6 @@
1
1
  {
2
2
  "name": "yaver-cli",
3
- "version": "1.99.94",
3
+ "version": "1.99.95",
4
4
  "mcpName": "io.github.kivanccakmak/yaver",
5
5
  "description": "Unified npm bootstrap for the Yaver agent, SDK injection, and local-first developer runtime",
6
6
  "bin": {
package/sdk-manifest.json CHANGED
@@ -35,7 +35,7 @@
35
35
  "sdkVersion": "1.0.0",
36
36
  "expoVersion": "54.0.33",
37
37
  "reactNativeVersion": "0.81.5",
38
- "reactVersion": "19.1.0",
38
+ "reactVersion": "19.2.5",
39
39
  "hermesVersion": "0.81.5",
40
40
  "hermesBCVersion": 96,
41
41
  "supportedRNRange": "0.81.x",
@@ -261,6 +261,15 @@ async function main() {
261
261
  log(`Skipping mobile bootstrap: ${error.message}`);
262
262
  }
263
263
 
264
+ if (!envEnabled("YAVER_SKIP_POSTINSTALL_REMOTE_RUNTIME")) {
265
+ try {
266
+ await runAgentCommand(["install", "remote-runtime"], { quiet: true });
267
+ log("Provisioned native remote-runtime host tools (Android everywhere; macOS host helpers where supported).");
268
+ } catch (error) {
269
+ log(`Skipping remote-runtime bootstrap: ${error.message}`);
270
+ }
271
+ }
272
+
264
273
  if (!envEnabled("YAVER_SKIP_POSTINSTALL_MOBILE_TOOLS")) {
265
274
  installMissingMobileTools();
266
275
  }