@mindstudio-ai/remy 0.1.180 → 0.1.182

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
@@ -3802,7 +3802,8 @@ var ALLOWED_MODELS_BY_TYPE = {
3802
3802
  "gpt-5.5",
3803
3803
  "gemini-3-pro",
3804
3804
  "gemini-3.1-pro",
3805
- "gemini-3-flash"
3805
+ "gemini-3-flash",
3806
+ "gemini-3.5-flash"
3806
3807
  ]
3807
3808
  // vision: undefined — unconstrained
3808
3809
  // image_generation: undefined — unconstrained
package/dist/index.js CHANGED
@@ -2114,7 +2114,8 @@ var init_surfaces = __esm({
2114
2114
  "gpt-5.5",
2115
2115
  "gemini-3-pro",
2116
2116
  "gemini-3.1-pro",
2117
- "gemini-3-flash"
2117
+ "gemini-3-flash",
2118
+ "gemini-3.5-flash"
2118
2119
  ]
2119
2120
  // vision: undefined — unconstrained
2120
2121
  // image_generation: undefined — unconstrained
@@ -40,7 +40,7 @@ The platform builds and deploys automatically:
40
40
  5. **Compute effects** — roles diff, cron diff, bot command diffs, table DDL
41
41
  6. **Apply** — create/update roles, sync bot commands, apply DDL to a staging database copy, swap the live pointer
42
42
 
43
- All deployed apps are available on <uuid>.msagent.ai where uuid is their app ID. If an app has a custom subdomain, it's available at <subdomain>.msagent.ai as well. This can be configured using the `mindstudio-prod` CLI via bash.
43
+ All deployed apps are available on `<uuid>.msagent.ai` where uuid is their app ID. Apps can also be served on a custom platform subdomain (`<subdomain>.msagent.ai`) or on a fully custom domain the user owns (pointed at the platform via CNAME or A records). Configure either via the `mindstudio-prod` CLI.
44
44
 
45
45
  ### Preview Deployments
46
46
 
@@ -338,7 +338,7 @@ Inbound HTTP endpoints that invoke methods.
338
338
  }
339
339
  ```
340
340
 
341
- Endpoint URL: `https://{app-subdomain}.mindstudio.ai/_/webhook/{secret}`
341
+ Endpoint URL: `https://{app-host}/_/webhook/{secret}` — `{app-host}` is any hostname the app is served on (default `<uuid>.msagent.ai`, a custom platform subdomain, or a custom domain).
342
342
 
343
343
  Accepts any HTTP method. The method receives `{ method, headers, query, body }` as input.
344
344
 
@@ -78,6 +78,6 @@ You have access to the `mindstudio` CLI, which exposes every SDK action as a com
78
78
  ### Production App Management
79
79
  You have access to `mindstudio-prod`, a CLI for managing the user's production MindStudio app. Use it via your bash tool. All output is JSON. Run `mindstudio-prod --help` or `mindstudio-prod <command> --help` to discover usage and available options.
80
80
 
81
- Available commands: `requests` (logs, error rates, latency), `releases` (deploy status, history), `domains` (custom subdomain management), `users` (list, set roles), `db` (query production sql db), `methods` (list, invoke), `secrets` (list, get, set, delete).
81
+ Available commands: `requests` (logs, error rates, latency), `releases` (deploy status, history), `domains` (custom subdomains and fully custom domains), `users` (list, set roles), `db` (query production sql db), `methods` (list, invoke), `secrets` (list, get, set, delete).
82
82
 
83
83
  Use when the user asks about production behavior (errors, logs, metrics), wants to manage their live app (domains, users, roles), needs to seed or query production data, or wants to check release status.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.180",
3
+ "version": "0.1.182",
4
4
  "description": "MindStudio coding agent",
5
5
  "repository": {
6
6
  "type": "git",