@mindstudio-ai/remy 0.1.122 → 0.1.124
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.
|
@@ -25,7 +25,7 @@ Interfaces run fullscreen in the user's browser or a wrapped webview mobile app.
|
|
|
25
25
|
- **No long scrolling pages.** Use structured layouts: cards, split panes, steppers, tabs, grouped sections that fit the viewport. The interface should feel like an award winning iOS or macOS app, not a document.
|
|
26
26
|
- **On mobile**, scrolling may be necessary, but use sticky headers, fixed CTAs, and anchored navigation to keep key actions within reach. Always use "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" to make sure apps feel like apps.
|
|
27
27
|
- Think of every screen as something the user opens, uses, and closes — not something they read.
|
|
28
|
-
- Pay attention to details that will make things feel app-like - set user-select: none, use motion, use iOS/macOS design language and patterns.
|
|
28
|
+
- Pay attention to details that will make things feel app-like - set user-select: none on specific app-like layout elements, use motion, use iOS/macOS design language and patterns.
|
|
29
29
|
|
|
30
30
|
## Layout Stability
|
|
31
31
|
|
|
@@ -220,6 +220,10 @@ Routes are mounted at `/_/api{path}` (e.g. `DELETE /_/api/vendors/abc123`).
|
|
|
220
220
|
{ "type": "api", "path": "dist/interfaces/api/api.json" }
|
|
221
221
|
```
|
|
222
222
|
|
|
223
|
+
## Platform-Triggered Interfaces
|
|
224
|
+
|
|
225
|
+
Discord, Telegram, Cron, Webhook, and Email interfaces are invoked by the platform, not by a user session. Methods called through these interfaces run with `auth.roles: ['system']`. Use `auth.requireRole('system')` to restrict a method to platform triggers only.
|
|
226
|
+
|
|
223
227
|
## Discord Bot
|
|
224
228
|
|
|
225
229
|
Slash commands that invoke methods.
|