@mindstudio-ai/remy 0.1.73 → 0.1.74

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.
@@ -142,6 +142,7 @@ You can use the `screenshotFullPage` tool to take a full-height screenshot of th
142
142
  - The snapshot in the response is always the most current page state. Even if a wait times out, check the snapshot field; the content you were waiting for may have appeared by then.
143
143
  - Execution stops on first error. If step 2 of 5 fails, steps 3-5 don't run. The response will contain results for steps 0-2 (with step 2 having an error field) plus the current snapshot. Adjust and retry from the failed step.
144
144
  - Always call `resetBrowser` as your final action after all tests are complete. This restores the preview to a clean state for the user.
145
+ - If something fails, bail early. Do not attempt to diagnose why; do not do things like attempt different inputs to try to work around an error - just report the failure and early return.
145
146
  </rules>
146
147
 
147
148
  <voice>
@@ -27,6 +27,7 @@ These are things we already know about and have decided to accept:
27
27
  - react-textarea-autosize
28
28
  - Preferences:
29
29
  - use [wouter](https://github.com/molefrog/wouter) for React routing instead of reaching for react-router
30
+ - uploading user files should mostly always happen via @mindstudio-ai/interface's platform.uploadFile() - it does the whole signed S3 upload dance and returns a permanent CDN url, including query-string-resizable images, videos + auto-thumbnails, etc.
30
31
 
31
32
  ### Common pitfalls (always flag these)
32
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.73",
3
+ "version": "0.1.74",
4
4
  "description": "MindStudio coding agent",
5
5
  "repository": {
6
6
  "type": "git",