You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: harden client validation and secret stdin handling
Validate SDK auth, billing, email, and project inputs before network requests.
Stream MCP blob local_path uploads through upload sessions and map local file errors.
Support run402 secrets set from stdin sources and document the safer flow.
Copy file name to clipboardExpand all lines: cli/llms-cli.txt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -753,9 +753,9 @@ Deploying a scheduled function beyond your tier's limit returns a 403 error. Upg
753
753
Secrets available as `process.env` (see secrets below).
754
754
755
755
### secrets
756
-
Injected as `process.env` in functions. Values are write-only — `list` returns keys and timestamps only, never values or value-derived hashes. Prefer `--file` for real values so they do not land in shell history.
756
+
Injected as `process.env` in functions. Values are write-only — `list` returns keys and timestamps only, never values or value-derived hashes. Prefer `--file` or `--stdin` for real values so they do not land in shell history. `--file -` and `--file /dev/stdin` read stdin too.
757
757
758
-
- `run402 secrets set <id> <KEY> [<VALUE>] [--file <path>]`
758
+
- `run402 secrets set <id> <KEY> [<VALUE>] [--file <path>|--stdin]`
0 commit comments