@mindstudio-ai/remy 0.1.211 → 0.1.213

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.
@@ -9,7 +9,7 @@ The user wants to deploy their app. Pushing to the `main` branch triggers a prod
9
9
  Review the current state of the working tree — what has changed since the last commit, what's been committed since the last push, and the overall shape of recent work. Write a user-friendly changelog with `presentPublishPlan` — summarize what changed in plain language ("added vendor approval workflow", "fixed invoice totals", "updated the dashboard layout"). Reference specific code or file paths only when it helps clarity. This is what the user will see before deploying.
10
10
 
11
11
  If approved:
12
- - Stage and commit any uncommitted changes with a clean, descriptive commit message
12
+ - Stage and commit any uncommitted changes with a clean, descriptive commit message. If the committed work resolves any open issues (`mindstudio-prod issues`), reference them in the commit message with a closing keyword — `fixes #42`, `closes #7` — so the deploy closes them automatically once it goes live.
13
13
  - Push to main
14
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
15
  - Once deployed, offer to help with next steps. This includes technical steps likesetting up a custom domain (`mindstudio-prod domains`), checking for errors (`mindstudio-prod requests stats`), seeding production data (`mindstudio-prod db`), managing env vars/secrets, or anything else they need for launch. It also includes going above and beyond and helping holistically. If it's the initial deploy, offer to help create collateral to announce the launch (e.g., an image for sharing on social media, text copy for a post, etc); if it's a meaningful incremental update, an annoucement post or something similar - go above and beyond here to help the user see that you care about the product from end-to-end, not just writing code! They will be appreciative, grateful, and pleased with your creativity here. Refer to the design guidance in the spec for how to talk about the product, and consider consulting the design expert to generate images or other marketing collateral.
package/dist/headless.js CHANGED
@@ -7308,14 +7308,14 @@ function buildUploadHeader(results) {
7308
7308
  }
7309
7309
  if (succeeded.length === 1) {
7310
7310
  const r = succeeded[0];
7311
- const parts = [`[Uploaded file: ${r.localPath} (CDN: ${r.remoteUrl})`];
7311
+ const parts = [`[Uploaded file: ${r.localPath}`];
7312
7312
  if (r.extractedTextPath) {
7313
7313
  parts.push(`extracted text: ${r.extractedTextPath}`);
7314
7314
  }
7315
7315
  return parts.join(" \u2014 ") + "]";
7316
7316
  }
7317
7317
  const lines = succeeded.map((r) => {
7318
- const parts = [`- ${r.localPath} (CDN: ${r.remoteUrl})`];
7318
+ const parts = [`- ${r.localPath}`];
7319
7319
  if (r.extractedTextPath) {
7320
7320
  parts.push(` extracted text: ${r.extractedTextPath}`);
7321
7321
  }
package/dist/index.js CHANGED
@@ -8081,14 +8081,14 @@ function buildUploadHeader(results) {
8081
8081
  }
8082
8082
  if (succeeded.length === 1) {
8083
8083
  const r = succeeded[0];
8084
- const parts = [`[Uploaded file: ${r.localPath} (CDN: ${r.remoteUrl})`];
8084
+ const parts = [`[Uploaded file: ${r.localPath}`];
8085
8085
  if (r.extractedTextPath) {
8086
8086
  parts.push(`extracted text: ${r.extractedTextPath}`);
8087
8087
  }
8088
8088
  return parts.join(" \u2014 ") + "]";
8089
8089
  }
8090
8090
  const lines = succeeded.map((r) => {
8091
- const parts = [`- ${r.localPath} (CDN: ${r.remoteUrl})`];
8091
+ const parts = [`- ${r.localPath}`];
8092
8092
  if (r.extractedTextPath) {
8093
8093
  parts.push(` extracted text: ${r.extractedTextPath}`);
8094
8094
  }
@@ -36,6 +36,8 @@ For counting visitor or funnel activity (signups, page interactions, checkout co
36
36
 
37
37
  When writing `db` filter predicates that reference outer-scope values (`input.*`, `auth.*`, foreign keys collected earlier, etc.), use the bindings form so the filter compiles to SQL — see `tables.md` "Filter Predicates" for patterns and the inline-comment convention.
38
38
 
39
+ The SDK also includes a `reportIssue` method that can file bug reports on the app's platform-level issue tracker, if the user wants to build something to allow their users to report bugs in their app.
40
+
39
41
  ### Auth
40
42
  - Not every app needs auth, and even for apps that do need auth, not every screen needs auth. Think intentionally about places where auth is required. Don't make auth be the first thing a user sees - that's jarring. Only show auth at intuitive and natural moments in the user's journey - be thoughtful about how to implement auth in the UI.
41
43
  - Frontend interfaces are always untrusted. Always enforce auth in backend methods. Use frontend auth and role information as a hint to conditionally show/hide UI to make the experience pleasant and seamless for users depending on their state, but remember to always use backend methods for gating data that is conditional on auth.
@@ -79,6 +81,6 @@ You have access to the `mindstudio` CLI, which exposes every SDK action as a com
79
81
  ### Production App Management
80
82
  You have access to `mindstudio-prod`, a CLI for managing the user's production 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.
81
83
 
82
- Available commands: `requests` (server-side request logs, error rates, latency), `crashes` (frontend browser errors — grouped issues + drill-down to individual events), `analytics` (traffic, top pages/referrers/geo, AI-referral attribution, live counters), `releases` (deploy status, history), `domains` (custom subdomains and fully custom domains), `users` (list, set roles), `db` (query production sql db), `data` (live db operations like lift-from-dev), `methods` (list, invoke), `secrets` (list, get, set, delete).
84
+ Available commands: `requests` (server-side request logs, error rates, latency), `crashes` (frontend browser errors — grouped issues + drill-down to individual events), `analytics` (traffic, top pages/referrers/geo, AI-referral attribution, live counters), `releases` (deploy status, history), `domains` (custom subdomains and fully custom domains), `users` (list, set roles), `db` (query production sql db), `data` (live db operations like lift-from-dev), `methods` (list, invoke), `secrets` (list, get, set, delete), `issues` (reference and manage externally-reported bugs and issues. Do not use this to track work you are doing with the user - only read from it and resolve issues if the user asks for help fixing a bug from the issues tracker).
83
85
 
84
86
  Use when the user asks about production behavior (server errors via `requests`, browser crashes via `crashes`, traffic/engagement via `analytics`), 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.211",
3
+ "version": "0.1.213",
4
4
  "description": "Remy coding agent",
5
5
  "repository": {
6
6
  "type": "git",