.claude/skills/merge-pr/SKILL.md
Merge a GitHub pull request by number using squash merge
npx skillsauth add timtoronto634/timtoronto634.github.io merge-prInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Merge a GitHub pull request.
$ARGUMENTS is provided, use it as the PR number. Otherwise, run gh pr view --json number to get the PR for the current branch.gh pr view <number> --json title,state,mergeable to verify the PR is open and mergeablegh pr merge <number> --squashgit checkout master && git pull --prune to update local master and clean up stale remote-tracking branchestesting
Create a GitHub pull request from the current branch with a summary and test plan
tools
Commit currently staged changes with a conventional commit message
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------