@mindstudio-ai/remy 0.1.160 → 0.1.162

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/headless.js CHANGED
@@ -5725,7 +5725,11 @@ var patterns = [
5725
5725
  /HTTP 5\d\d/i,
5726
5726
  "The AI service is temporarily unavailable. Please try again."
5727
5727
  ],
5728
- [/Stream stalled/i, "The connection was interrupted. Please try again."]
5728
+ [/Stream stalled/i, "The connection was interrupted. Please try again."],
5729
+ [
5730
+ /content filter|Output blocked/i,
5731
+ "The AI model's content moderation filter blocked this response. These are usually false positives, we apologize for the interruption. Rephrasing your request typically fixes this."
5732
+ ]
5729
5733
  ];
5730
5734
  function friendlyError(raw) {
5731
5735
  for (const [pattern, message] of patterns) {
package/dist/index.js CHANGED
@@ -6056,7 +6056,11 @@ var init_errors = __esm({
6056
6056
  /HTTP 5\d\d/i,
6057
6057
  "The AI service is temporarily unavailable. Please try again."
6058
6058
  ],
6059
- [/Stream stalled/i, "The connection was interrupted. Please try again."]
6059
+ [/Stream stalled/i, "The connection was interrupted. Please try again."],
6060
+ [
6061
+ /content filter|Output blocked/i,
6062
+ "The AI model's content moderation filter blocked this response. These are usually false positives, we apologize for the interruption. Rephrasing your request typically fixes this."
6063
+ ]
6060
6064
  ];
6061
6065
  }
6062
6066
  });
@@ -112,5 +112,6 @@ Always rely on the details provided by the design expert - their work is the sou
112
112
  - **Avoid long scrolling forms with no visual grouping.** Instead: group fields into sections with clear headings, cards, or stepped flows.
113
113
  - **Avoid cramped layouts.** Avoid text pressed against edges, no room to breathe. Instead: generous padding, comfortable margins, let the content float.
114
114
  - **Avoid loading states that are just a centered spinner on a blank page.** Instead: use skeletons that mirror the layout, or keep the existing structure visible with a subtle loading indicator.
115
+ - **Always build styled modals, sheets, popovers, and toasts** Never use lazy native browser primitives like alert(), prompt(), or confirm().
115
116
 
116
117
  Most importantly: **Avoid any interface where the first reaction is "this looks like a demo" or "this looks like it was made with a website builder."**
@@ -13,7 +13,7 @@
13
13
  - Work with what you already know. If you've read a file in this session, use what you learned rather than reading it again. If a subagent already researched something, use its findings. Every tool call costs time; prefer acting on information you have over re-gathering it.
14
14
  - When multiple tool calls are independent, make them all in a single turn. Reading three files, writing two methods, or running a scenario while taking a screenshot: batch them instead of doing one per turn.
15
15
  - After two failed attempts at the same approach, tell the user what's going wrong.
16
- - Never estimate how long something will take. Just do it.
16
+ - Never estimate how long something will take or how much it will cost. Just do it. If the user asks, you must politely refuse and let them know that due to the way AI models work, any answer would just be a guess. You can, however, help them understand the scope and scale of the work, or how long it might take/how much it might cost a traditional engineering or product team (e.g., weeks/months, $100k USD+ to a consulting shop, etc.) - but you can not estimate token usage or costs of work within the system.
17
17
  - Pushing to main branch will trigger a deploy. The user presses the publish button in the interface to request publishing.
18
18
 
19
19
  ### Build Notes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.160",
3
+ "version": "0.1.162",
4
4
  "description": "MindStudio coding agent",
5
5
  "repository": {
6
6
  "type": "git",