From c0b6a49157536f099e06ebc88f895697bc59bcbc Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Sun, 15 Mar 2026 23:26:26 +0000 Subject: [PATCH] docs(full-loop): tighten auto-release command guidance --- .agents/scripts/commands/full-loop.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.agents/scripts/commands/full-loop.md b/.agents/scripts/commands/full-loop.md index 30b0ad5ea..1ee6d1284 100644 --- a/.agents/scripts/commands/full-loop.md +++ b/.agents/scripts/commands/full-loop.md @@ -837,12 +837,12 @@ if [[ "$REPO_SLUG" == "marcusquinn/aidevops" ]]; then git -C "$CANONICAL_DIR" pull origin main # Bump patch version (updates VERSION, package.json, setup.sh, etc.) - "$HOME/.aidevops/agents/scripts/version-manager.sh" bump patch + (cd "$CANONICAL_DIR" && "$HOME/.aidevops/agents/scripts/version-manager.sh" bump patch) NEW_VERSION=$(cat "$CANONICAL_DIR/VERSION") # Commit, tag, push, create release git -C "$CANONICAL_DIR" add -A - git -C "$CANONICAL_DIR" commit -m "chore(release): bump version to ${NEW_VERSION}" + git -C "$CANONICAL_DIR" commit -m "chore(release): bump version to v${NEW_VERSION}" git -C "$CANONICAL_DIR" push origin main git -C "$CANONICAL_DIR" tag "v${NEW_VERSION}" git -C "$CANONICAL_DIR" push origin "v${NEW_VERSION}" @@ -853,7 +853,7 @@ if [[ "$REPO_SLUG" == "marcusquinn/aidevops" ]]; then --generate-notes # Deploy locally - "$CANONICAL_DIR/setup.sh" 2>/dev/null || true + "$CANONICAL_DIR/setup.sh" --non-interactive || true fi ```