From 13fe21c5b7bd12625fbab94eba8f4d5d715490f0 Mon Sep 17 00:00:00 2001 From: ant Date: Wed, 11 Mar 2026 06:00:01 +0800 Subject: [PATCH] fix: add git fetch and use pinned checkout for update flow Address review feedback: - Add missing `git fetch origin` before comparing commits - Replace `git pull` with `git checkout ` for deterministic updates --- skills/blueprint/SKILL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skills/blueprint/SKILL.md b/skills/blueprint/SKILL.md index 4a927d5a..27882a20 100644 --- a/skills/blueprint/SKILL.md +++ b/skills/blueprint/SKILL.md @@ -83,8 +83,9 @@ To update later, review the [changelog](https://github.com/antbotlab/blueprint/b ```bash cd ~/.claude/skills/blueprint +git fetch origin git log --oneline HEAD..origin/main # review new commits -git pull +git checkout # pin to a specific reviewed commit ``` ## Requirements