Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
#!/bin/sh
: <<'DOCSTRING'
Steel CLI — browser automation for AI agents
https://github.com/steel-dev/cli

This script installs the Steel CLI binary. After installation, agents should
install the steel-browser skill to unlock full browser automation capabilities.

REQUIRES: curl
INSTALLS TO: ~/.steel/bin

After install, PATH is NOT updated in the current process.
Fix: export PATH="$HOME/.steel/bin:$PATH"

POST-INSTALL:
steel login # authenticate
steel browser start # start automation session

SKILL SETUP (recommended for agents):
npx skills add https://github.com/steel-dev/cli --skill steel-browser
DOCSTRING
set -eu

echo "Steel CLI — browser automation for AI agents"
Expand Down Expand Up @@ -99,3 +119,6 @@ echo " steel --help"
echo " steel login"
echo " steel browser start"
echo ""
echo "SKILL SETUP (recommended for agents):"
echo " npx skills add https://github.com/steel-dev/cli --skill steel-browser"
echo ""