From 4dd76181595bbecf046938b3c0e5436e29d00ba5 Mon Sep 17 00:00:00 2001 From: nkkko Date: Fri, 20 Mar 2026 19:56:13 +0100 Subject: [PATCH] docs(install): add agent-facing docstring and skill setup instructions Co-Authored-By: Claude Opus 4.6 (1M context) --- install.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/install.sh b/install.sh index f4f7f9d..dc362eb 100755 --- a/install.sh +++ b/install.sh @@ -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" @@ -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 ""