@mindstudio-ai/remy 0.1.225 → 0.1.227

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
@@ -380,14 +380,14 @@ async function fetchRemyContext(config) {
380
380
  // src/models/surfaces.ts
381
381
  var MODEL_SURFACES = {
382
382
  parent: {
383
- default: "claude-4-8-opus",
383
+ default: "claude-5-opus",
384
384
  label: "Remy",
385
385
  description: "The main Remy agent you chat with about your product. Writes code and manages delegation to other agents.",
386
386
  modelType: "text",
387
387
  userPickable: true
388
388
  },
389
389
  visualDesignExpert: {
390
- default: "claude-4-8-opus",
390
+ default: "claude-5-opus",
391
391
  label: "Design Agent",
392
392
  description: "Designs your product's interfaces, including components, layouts, typography, color, and visual identity.",
393
393
  modelType: "text",
@@ -461,6 +461,7 @@ var MODEL_SURFACES = {
461
461
  };
462
462
  var ALLOWED_MODELS_BY_TYPE = {
463
463
  text: [
464
+ "claude-5-opus",
464
465
  "claude-4-8-opus",
465
466
  "claude-4-7-opus",
466
467
  "claude-4-6-opus",
package/dist/index.js CHANGED
@@ -1987,14 +1987,14 @@ var init_surfaces = __esm({
1987
1987
  "use strict";
1988
1988
  MODEL_SURFACES = {
1989
1989
  parent: {
1990
- default: "claude-4-8-opus",
1990
+ default: "claude-5-opus",
1991
1991
  label: "Remy",
1992
1992
  description: "The main Remy agent you chat with about your product. Writes code and manages delegation to other agents.",
1993
1993
  modelType: "text",
1994
1994
  userPickable: true
1995
1995
  },
1996
1996
  visualDesignExpert: {
1997
- default: "claude-4-8-opus",
1997
+ default: "claude-5-opus",
1998
1998
  label: "Design Agent",
1999
1999
  description: "Designs your product's interfaces, including components, layouts, typography, color, and visual identity.",
2000
2000
  modelType: "text",
@@ -2068,6 +2068,7 @@ var init_surfaces = __esm({
2068
2068
  };
2069
2069
  ALLOWED_MODELS_BY_TYPE = {
2070
2070
  text: [
2071
+ "claude-5-opus",
2071
2072
  "claude-4-8-opus",
2072
2073
  "claude-4-7-opus",
2073
2074
  "claude-4-6-opus",
@@ -338,6 +338,8 @@ Three tiers, all delivered to the same handler method. The new tiers are catchal
338
338
 
339
339
  Because the new tiers are catchall, `to` carries an arbitrary localpart. Methods that need to branch on it should read `input.to` (e.g. `if (input.to.startsWith('support@')) ...`).
340
340
 
341
+ A verified custom domain (and the app's `madewithremy.com` subdomain) also **sends** outbound mail, not just receives — `sendEmail` picks the app's own-brand sender automatically, configured in the dashboard's **Email** settings.
342
+
341
343
  ### Config (`interface.json`)
342
344
 
343
345
  ```json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.225",
3
+ "version": "0.1.227",
4
4
  "description": "Remy coding agent",
5
5
  "repository": {
6
6
  "type": "git",