From 66aa00532c022a1541dc137104194c6ce3d699a7 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Tue, 5 May 2026 10:43:04 +0000 Subject: [PATCH] fix: use claude-code agent target in setup.sh `claude` is not a valid value for the skills CLI `--agent` flag; correct value is `claude-code`. Without this, setup.sh fails with "Invalid agents: claude" before installing any skills. Co-Authored-By: Claude Opus 4.7 --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 9e35f18..900f15f 100755 --- a/setup.sh +++ b/setup.sh @@ -27,7 +27,7 @@ MATTPOCOCK_REF="" # leave empty to track HEAD; set to a commit SHA to pin DOMNA_SOURCE="Hestia-Homes/agentic-toolkit" DOMNA_REF="" # leave empty to track HEAD; set to a commit SHA to pin -AGENT_TARGET="claude" # Claude Code agent install layout +AGENT_TARGET="claude-code" # Claude Code agent install layout # --- guards -------------------------------------------------------------------- if ! command -v npx >/dev/null 2>&1; then