Skip to content

Commit 146c1de

Browse files
committed
fix: remove incorrect references
1 parent f0bc1eb commit 146c1de

File tree

3 files changed

+19
-23
lines changed

3 files changed

+19
-23
lines changed

bin/steel.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,13 @@ if (existsSync(BINARY_PATH)) {
3131
} else {
3232
console.error("Steel CLI native binary not found.");
3333
console.error("");
34-
console.error(
35-
"The @steel-dev/cli npm package is now a migration shim."
36-
);
34+
console.error("The @steel-dev/cli npm package is now a migration shim.");
3735
console.error(
3836
"The actual CLI has moved to a native binary distributed via GitHub Releases."
3937
);
4038
console.error("");
4139
console.error("Install the native binary:");
42-
console.error(
43-
" curl -LsSf https://steel.dev/install.sh | sh"
44-
);
40+
console.error(" curl -LsSf https://setup.steel.dev | sh");
4541
console.error("");
4642
console.error("Then add to your PATH:");
4743
console.error(' export PATH="$HOME/.steel/bin:$PATH"');

scripts/postinstall.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function main() {
1818
if (process.env.CI && !process.env.STEEL_FORCE_INSTALL) {
1919
console.log("[steel] Skipping native binary install in CI.");
2020
console.log(
21-
"[steel] Set STEEL_FORCE_INSTALL=1 to override, or use: curl -LsSf https://steel.dev/install.sh | sh"
21+
"[steel] Set STEEL_FORCE_INSTALL=1 to override, or use: curl -LsSf https://setup.steel.dev | sh"
2222
);
2323
return;
2424
}
@@ -41,7 +41,7 @@ function main() {
4141
} catch {
4242
console.error("[steel] Error: curl is required but not found.");
4343
console.error(
44-
"[steel] Install curl, then run: curl -LsSf https://steel.dev/install.sh | sh"
44+
"[steel] Install curl, then run: curl -LsSf https://setup.steel.dev | sh"
4545
);
4646
// Don't fail npm install — just warn
4747
return;
@@ -63,7 +63,7 @@ function main() {
6363
console.error("");
6464
console.error("[steel] Automatic installation failed.");
6565
console.error("[steel] Install manually:");
66-
console.error(" curl -LsSf https://steel.dev/install.sh | sh");
66+
console.error(" curl -LsSf https://setup.steel.dev | sh");
6767
console.error("");
6868
console.error(
6969
"[steel] Or download from: https://github.com/steel-dev/cli/releases"

skills/steel-browser/SKILL.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ Then apply targeted fixes:
245245
- Stale session state:
246246
`steel browser stop --all` then restart with a fresh named session.
247247
- `steel: command not found`:
248-
install the native binary with `curl -LsSf https://steel.dev/install.sh | sh`
248+
install the native binary with `curl -LsSf https://setup.steel.dev | sh`
249249
and add `$HOME/.steel/bin` to your PATH.
250250
251251
If issue persists, use the full playbook:
@@ -255,19 +255,19 @@ If issue persists, use the full playbook:
255255
256256
The following commands do **not** exist. Do not attempt them. Use `eval` workarounds instead.
257257
258-
| Does NOT exist | Use instead |
259-
|---|---|
260-
| `steel browser network` / `route` / `unroute` | `eval` with fetch monkey-patch or Performance API |
261-
| `steel browser record` / `video` | Not available — no recording support |
262-
| `steel browser console` / `errors` | `eval` with `console.log` interceptor |
263-
| `steel browser frame` | `eval` with `document.querySelector('iframe').contentDocument` |
264-
| `steel browser set device` | `set viewport` + `set useragent` |
265-
| `steel browser set media` | `eval` with `window.matchMedia` override |
266-
| `steel browser set credentials` | Use `steel credentials` commands + `--credentials` flag on start |
267-
| `steel browser geolocation` | `steel browser set geo <lat> <lon>` |
268-
| `steel browser mouse` | `eval` with `Input.dispatchMouseEvent` via CDP or MouseEvent dispatch |
269-
| `steel browser tabs` | `steel browser tab list` (singular `tab`, not `tabs`) |
270-
| `steel browser execute` / `run` | `steel browser eval` |
258+
| Does NOT exist | Use instead |
259+
| --------------------------------------------- | --------------------------------------------------------------------- |
260+
| `steel browser network` / `route` / `unroute` | `eval` with fetch monkey-patch or Performance API |
261+
| `steel browser record` / `video` | Not available — no recording support |
262+
| `steel browser console` / `errors` | `eval` with `console.log` interceptor |
263+
| `steel browser frame` | `eval` with `document.querySelector('iframe').contentDocument` |
264+
| `steel browser set device` | `set viewport` + `set useragent` |
265+
| `steel browser set media` | `eval` with `window.matchMedia` override |
266+
| `steel browser set credentials` | Use `steel credentials` commands + `--credentials` flag on start |
267+
| `steel browser geolocation` | `steel browser set geo <lat> <lon>` |
268+
| `steel browser mouse` | `eval` with `Input.dispatchMouseEvent` via CDP or MouseEvent dispatch |
269+
| `steel browser tabs` | `steel browser tab list` (singular `tab`, not `tabs`) |
270+
| `steel browser execute` / `run` | `steel browser eval` |
271271
272272
## Guardrails
273273

0 commit comments

Comments
 (0)