Skip to content

Commit 2812e8a

Browse files
committed
fix(step-8): repin SKILL_COMMIT off the orphaned pre-rewrite SHA
The privacy history rewrite orphaned ec37161, but raw.githubusercontent still serves orphaned commits — verified HTTP 200 — and that tree still contains the client roster the rewrite was meant to remove. The installer was therefore publishing a working URL straight to the scrubbed content. Repinned to cfb973b (current main). The file is byte-identical, so SKILL_SHA256 is unchanged and the integrity check still passes. Force-push is not deletion: GitHub retains unreachable objects until it GCs the repo, so purging the orphaned blobs requires a request to GitHub Support.
1 parent cfb973b commit 2812e8a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

step-8/step-8-install.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,11 @@ install_skill() {
133133
SKILL_FILE="$SKILL_DIR/SKILL.md"
134134
# Pinned to a specific commit SHA — prevents rug-pull via mutable branch ref
135135
# To update: change the SHA to the new commit and update SKILL_SHA256 to match
136-
SKILL_COMMIT="ec371619f2302b6ec91a6711ad3e78a9691fd1c8"
136+
# Repinned 2026-08-17: the previous SHA was orphaned by the privacy history
137+
# rewrite, and raw.githubusercontent still serves orphaned commits (HTTP 200),
138+
# so the old pin advertised a tree that still contained the scrubbed content.
139+
# File content is byte-identical, so SKILL_SHA256 below is unchanged.
140+
SKILL_COMMIT="cfb973bbecd7e2bb54deb15027ee8b5f5deb6513"
137141
SKILL_URL="https://raw.githubusercontent.com/fidgetcoding/cli-maxxing/${SKILL_COMMIT}/step-8/safetycheck-skill/SKILL.md"
138142
SKILL_SHA256="9fc7668c6f842cf55582be5b0b10c0b6e9c7cf2d815e19ec388dbed70dfd5c09"
139143

0 commit comments

Comments
 (0)