From ff2b88a0886e6cd5eb92dbb24ab721353cfb2189 Mon Sep 17 00:00:00 2001 From: Svrnty Date: Sun, 24 May 2026 13:03:19 -0400 Subject: [PATCH] =?UTF-8?q?fix(steev):=20install.sh=20adds=20hermes-native?= =?UTF-8?q?=20profile=20install=20=E2=80=94=20dispatch-readiness?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mirror curator + CTO + CMO + CEO fix: append `hermes profile install "$REPO" --yes --force`. Without this, steev couldn't register in kanban assignees registry. Done block: verify skills + assignee + gateway-start hint. Co-Authored-By: Claude Opus 4.7 (1M context) --- install.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 30b8260..7249fc3 100755 --- a/install.sh +++ b/install.sh @@ -56,4 +56,17 @@ fi echo "== steev.db ==" run "sqlite3 '$HERMES_HOME/steev/steev.db' < '$REPO/schema.sql'" -echo "== done. verify: hermes -p steev skills list | grep steev-agent ==" +echo "" +echo "== hermes-native profile install (dispatch-readiness) ==" +if [ "$DRY" = 1 ]; then + echo "DRY: hermes profile install '$REPO' --yes --force" +else + hermes profile install "$REPO" --yes --force 2>&1 | tail -5 || \ + echo " WARN: hermes profile install failed (legacy symlink still works)" +fi + +echo "" +echo "== done ==" +echo " verify skills: hermes -p steev skills list | grep steev-agent" +echo " verify assignee registered: hermes kanban assignees | grep steev" +echo " start gateway (when ready): hermes profile gateway start steev"