From e02fd94a8a4446ddca19695b3b231e1164ca3dc7 Mon Sep 17 00:00:00 2001 From: Andrew Ambrosino Date: Tue, 16 Dec 2025 13:33:06 -0800 Subject: [PATCH] Move yeet to personal skills --- skills/yeet/SKILL.md | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 skills/yeet/SKILL.md diff --git a/skills/yeet/SKILL.md b/skills/yeet/SKILL.md deleted file mode 100644 index 8353bcff83..0000000000 --- a/skills/yeet/SKILL.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: yeet -description: Automate branch+PR flow: if not already, create ambrosino/{description} branch, then stage+commit all, push, and open a gh PR with a concise summary. ---- - -# Yeet -- If on main/master/default, `git checkout -b "ambrosino/{description}"`; otherwise stay on the current branch. -- Confirm status `git status -sb`, then stage everything `git add -A`. -- Commit tersely with the description, e.g. `git commit -m "{description}"`. -- Push with tracking: `git push -u origin $(git branch --show-current)`. -- Open a PR: `gh pr create --fill --head $(git branch --show-current)` and edit title/body to reflect the description and the deltas.