Goblin-mode merge-from-named

{{ ๐›€๐›€๐›€ }} Merge from branch

install
source ยท Clone the upstream repo
git clone https://github.com/JasonWarrenUK/goblin-mode
Claude Code ยท Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/JasonWarrenUK/goblin-mode "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/merge-from-named" ~/.claude/skills/jasonwarrenuk-goblin-mode-merge-from-named && rm -rf "$T"
manifest: skills/merge-from-named/SKILL.md
source content

Merge Branch into Current Branch

$ARGUMENTS (required) โ€” the branch to merge from

  1. Check current branch name and confirm with user
  2. Do NOT create a worktree - work in the current directory
  3. Run
    git fetch origin $BRANCH && git merge origin/$BRANCH
  4. If conflicts exist, list them and resolve preserving our branch's intent
  5. Run tests to verify
  6. Push with
    git push