@mindstudio-ai/remy 0.1.180 → 0.1.181
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.
|
@@ -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
|
|
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-
|
|
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
|
|
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.
|