@swmansion/argent 0.25.1-next.5 → 0.25.1-next.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/dist/cli-cmds.mjs CHANGED
@@ -21857,7 +21857,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
21857
21857
  var SESSION_ID2 = randomUUID5();
21858
21858
  function readCliVersion() {
21859
21859
  if (true) {
21860
- return "0.25.1-next.5";
21860
+ return "0.25.1-next.7";
21861
21861
  }
21862
21862
  return "0.0.0";
21863
21863
  }
@@ -16710,7 +16710,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
16710
16710
  var SESSION_ID = randomUUID4();
16711
16711
  function readCliVersion() {
16712
16712
  if (true) {
16713
- return "0.25.1-next.5";
16713
+ return "0.25.1-next.7";
16714
16714
  }
16715
16715
  return "0.0.0";
16716
16716
  }
@@ -94702,7 +94702,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
94702
94702
  var SESSION_ID = (0, import_node_crypto3.randomUUID)();
94703
94703
  function readCliVersion() {
94704
94704
  if (true) {
94705
- return "0.25.1-next.5";
94705
+ return "0.25.1-next.7";
94706
94706
  }
94707
94707
  return "0.0.0";
94708
94708
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swmansion/argent",
3
- "version": "0.25.1-next.5",
3
+ "version": "0.25.1-next.7",
4
4
  "mcpName": "io.github.software-mansion/argent",
5
5
  "description": "MCP server for iOS Simulator and Android Emulator control",
6
6
  "license": "Apache-2.0",
@@ -116,7 +116,7 @@ When reading from the log file:
116
116
  - Never `Read` the log file directly. Use `grep` or shell commands with limits using the above file format tips.
117
117
  - Default to `-m 50` unless you need more.
118
118
  - Use `tail -N` recent entries.
119
- - `clusters[].message` gives you the exact text which you may look for
119
+ - `clusters[].message` is a truncated, grouped prefix - grep a short fragment of it, not the whole string.
120
120
  - Search bracketed text such as `[L:42]` or `[object Object]` with `grep -F`, or escape the brackets (`\[L:42\]`). Unescaped, `[...]` is a character class: `grep '[L:42]'` matches every line in the file.
121
121
 
122
122
  > **If the file is too large** Delegate to an `Explore` subagent with the file path, the format spec above, the specific patterns you need, and Golden Rule 4's untrusted-data caveat.
@@ -129,5 +129,5 @@ Steps:
129
129
  | `argent-ios-simulator-setup` | Booting and connecting an iOS simulator |
130
130
  | `argent-android-emulator-setup` | Booting and connecting an Android emulator |
131
131
  | `argent-react-native-app-workflow` | Starting the app, Metro, build issues |
132
- | `argent-metro-debugger` | Breakpoints, console logs, JS evaluation |
132
+ | `argent-metro-debugger` | Console logs, JS evaluation, component inspection |
133
133
  | `argent-create-flow` | Record a test sequence as a replayable flow |