From cam-fleet-ops
When a fleet-wide change breaks many repos at once, roll back across all affected repos in one sweep. The pattern: identify the breaking change, find every commit that introduced it, force-revert, push. Use after a bad fleet-wide migration (e.g., Prisma 7 broke something unexpected) or a config that was applied fleet-wide.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cam-fleet-ops:fleet-rollbackThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When a change applied to many repos at once breaks things, you need to roll back **all of them in parallel**. The risk is that fixes for one repo depend on the bad commit, so reverts need to be carefully sequenced.
When a change applied to many repos at once breaks things, you need to roll back all of them in parallel. The risk is that fixes for one repo depend on the bad commit, so reverts need to be carefully sequenced.
git log --all --grep="<message>" or GitHub searchgit revert <sha> — preserves history, safe for shared branchesgit reset --hard <previous-sha> && git push --force-with-lease — clean history, risky for shared branchesdelegate_task to multiple agents, or batch via Python.env* .gitignore pattern that accidentally gitignores package.jsondry_run: true flags in your scripts# Find the breaking commit SHA
gh search commits --owner camster91 "<message>" --json sha,repository --limit 50
# For each affected repo, revert
for repo in <list>; do
cd /tmp/$repo
git clone https://github.com/camster91/$repo.git . --depth=10
git log --oneline -5 # find the bad commit
git revert <bad_sha> --no-edit
git push origin main --force-with-lease
done
git push --force-with-lease (checks if remote changed)git revert -m 1 <merge_sha> to specify which parentgh workflow runfleet-ci-audit — Identifies which repos are affectedbranch-protection — Understanding force-push on protected branchesProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub camster91/cam-fleet-bundle --plugin cam-fleet-ops