@mindstudio-ai/remy 0.1.297 → 0.1.298
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/prompt/skills/files.md +13 -1
- package/package.json +1 -1
|
@@ -98,7 +98,19 @@ Need an image on the site (hero, logo, OG image)? **Never commit binaries to the
|
|
|
98
98
|
```bash
|
|
99
99
|
mindstudio-prod files put --public ./hero.jpg # → { url, key } — content-addressed, immutable
|
|
100
100
|
```
|
|
101
|
-
Write that URL into your JSX/HTML.
|
|
101
|
+
Write that URL into your JSX/HTML. The full CLI surface: `put` (any size up to 5 GiB — bytes go directly to storage), `get` (download an object to disk), `sign` (mint a link), `stat` (metadata / existence), `ls` (objects in a store), `list` (store summary), `rm` (`--help` for flags).
|
|
102
|
+
|
|
103
|
+
## Moving large or private files off the sandbox
|
|
104
|
+
|
|
105
|
+
The sandbox is ephemeral; when a user needs a file out of it (an export, an archive, a handoff), the channel is a **private store + a signed link** — private, expiring, and revocable:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
mindstudio-prod files put --private --store handoff ./export.tar.gz # → { key }
|
|
109
|
+
mindstudio-prod files sign --private --store handoff --key <key> --ttl 86400 # → { url, expiresAt }
|
|
110
|
+
mindstudio-prod files rm --store handoff --key <key> --private # revoke when confirmed received
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**Never use the account media CDN (`mindstudio upload`) for sensitive material — those URLs are public and permanent, with no delete.** That includes probing: don't test an upload channel with the real payload; use throwaway bytes.
|
|
102
114
|
|
|
103
115
|
## Generated assets
|
|
104
116
|
|