Skip to content

Commit 89bedf8

Browse files
chore(install): update install.sh comments/help text to use new skill name
Four cosmetic updates to scripts/install.sh that referenced the legacy agentfield-multi-reasoner-builder name. The install logic itself is unchanged — it always installed whatever the af binary's catalog defaults to.
1 parent 8dac858 commit 89bedf8

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

scripts/install.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ STAGING="${STAGING:-0}"
1818

1919
# Skill install mode (all | all-targets | interactive | none)
2020
#
21-
# Defaults to "all" — installs the agentfield-multi-reasoner-builder skill
21+
# Defaults to "all" — installs the agentfield skill
2222
# into every coding agent the binary detects on the user's machine, without
2323
# any prompts. This is the right default for `curl … | bash` because there
2424
# is no TTY for an interactive picker to read from, and the whole point of
@@ -88,8 +88,8 @@ parse_args() {
8888
echo "Options:"
8989
echo " --staging Install latest prerelease/staging version"
9090
echo " --verbose Enable verbose output"
91-
echo " --no-skill Skip the agentfield-multi-reasoner-builder"
92-
echo " skill install step (binary only)"
91+
echo " --no-skill Skip the agentfield skill install step"
92+
echo " (binary only)"
9393
echo " --all-skills Install the skill into every detected coding"
9494
echo " agent (default behaviour — flag kept for"
9595
echo " backwards compatibility with older docs)"
@@ -529,10 +529,10 @@ verify_installation() {
529529
fi
530530
}
531531

532-
# Install the agentfield-multi-reasoner-builder skill into coding-agent
533-
# integrations (Claude Code, Codex, Gemini, OpenCode, Aider, Windsurf, Cursor).
534-
# Delegated to the freshly-installed `af` binary so the install logic stays
535-
# in one place. Honors $SKILL_MODE: all (default) | all-targets | interactive | none.
532+
# Install the agentfield skill into coding-agent integrations (Claude Code,
533+
# Codex, Gemini, OpenCode, Aider, Windsurf, Cursor). Delegated to the
534+
# freshly-installed `af` binary so the install logic stays in one place.
535+
# Honors $SKILL_MODE: all (default) | all-targets | interactive | none.
536536
install_skill() {
537537
local install_dir="$1"
538538
local af_bin="$install_dir/agentfield"
@@ -707,10 +707,10 @@ main() {
707707
# Verify installation
708708
verify_installation "$INSTALL_DIR"
709709

710-
# Install the agentfield-multi-reasoner-builder skill into coding agents.
711-
# Default mode is `all` — installs into every detected coding agent without
712-
# any prompts (the right behaviour for `curl … | bash`). Override via
713-
# --no-skill / --all-skill-targets / --interactive-skill or SKILL_MODE.
710+
# Install the agentfield skill into coding agents. Default mode is `all` —
711+
# installs into every detected coding agent without any prompts (the right
712+
# behaviour for `curl … | bash`). Override via --no-skill /
713+
# --all-skill-targets / --interactive-skill or SKILL_MODE.
714714
install_skill "$INSTALL_DIR"
715715

716716
# Print success message

0 commit comments

Comments
 (0)