@mindstudio-ai/remy 0.1.111 → 0.1.113

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.
@@ -11,6 +11,7 @@ Review the current state of the working tree — what has changed since the last
11
11
  If approved:
12
12
  - Stage and commit any uncommitted changes with a clean, descriptive commit message
13
13
  - Push to main
14
- - Let the user know their app is deploying
14
+ - Use `mindstudio-prod releases status --wait` to poll the build until it completes. Let the user know it's deploying, then report back when it's live.
15
+ - Once deployed, offer to help with next steps: setting up a custom domain (`mindstudio-prod domains`), checking for errors (`mindstudio-prod requests stats`), seeding production data (`mindstudio-prod db`), or anything else they need for launch.
15
16
 
16
17
  If dismissed, acknowledge and do nothing.
package/dist/headless.js CHANGED
@@ -2507,7 +2507,7 @@ var queryDatabaseTool = {
2507
2507
  };
2508
2508
 
2509
2509
  // src/subagents/common/analyzeImage.ts
2510
- var VISION_MODEL = "gemini-3-flash";
2510
+ var VISION_MODEL = "claude-4.5-sonnet";
2511
2511
  var VISION_MODEL_OVERRIDE = JSON.stringify({
2512
2512
  model: VISION_MODEL,
2513
2513
  config: { thinkingBudget: "off" }
package/dist/index.js CHANGED
@@ -2214,7 +2214,7 @@ var init_analyzeImage = __esm({
2214
2214
  "src/subagents/common/analyzeImage.ts"() {
2215
2215
  "use strict";
2216
2216
  init_runCli();
2217
- VISION_MODEL = "gemini-3-flash";
2217
+ VISION_MODEL = "claude-4.5-sonnet";
2218
2218
  VISION_MODEL_OVERRIDE = JSON.stringify({
2219
2219
  model: VISION_MODEL,
2220
2220
  config: { thinkingBudget: "off" }
@@ -47,3 +47,10 @@ For any work involving AI models, external actions (web scraping, email, SMS), o
47
47
 
48
48
  ### Dependencies
49
49
  Before installing a package you haven't used in this project, do a quick web search to confirm it's still the best option. The JavaScript ecosystem moves fast — the package you remember from training may have been superseded by something smaller, faster, or better maintained. A 10-second search beats debugging a deprecated library.
50
+
51
+ ### Production App Management
52
+ 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.
53
+
54
+ 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).
55
+
56
+ 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.111",
3
+ "version": "0.1.113",
4
4
  "description": "MindStudio coding agent",
5
5
  "repository": {
6
6
  "type": "git",