From lucas-dev-tools
Copies a GitHub PR link as markdown to the clipboard. Use when the user says 'copy pr link', 'pr markdown', 'copy pr url', 'link to pr', 'pr link', or any variation of wanting a GitHub PR link formatted as markdown. Accepts an optional PR number argument; defaults to the current branch's PR.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucas-dev-tools:copy-pr-linkhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates a markdown link for a GitHub PR and copies it to the clipboard.
Generates a markdown link for a GitHub PR and copies it to the clipboard.
/copy-pr-link 7806)owner/repo format (e.g., /copy-pr-link 7806 DataDog/dd-trace-dotnet)gh infers it from the current git repogh command fails because repo or PR cannot be determined, ask the userGet the PR number, title, and URL using gh pr view ... --json number,title,url
--repo <owner/repo> if a repo argument was provided<number> if a PR number was providedFormat the markdown link as: [#<number> <title>](<url>)
[tracing] becomes tracing:Copy to clipboard: echo -n '<markdown>' | clip
Show the formatted markdown to the user
npx claudepluginhub lucaspimentel/claude-plugins --plugin lucas-dev-toolsCreates GitHub Pull Requests using GitHub CLI: detects existing PRs for branches, pushes changes, generates titles/bodies from commits. Handles monorepos/submodules. Use for /create-pr or PR/review requests.
Creates or updates GitHub PRs using gh CLI. Auto-extracts ticket IDs from branch names, generates titles and summaries from commits, and detects existing PRs for update mode.
Automates PR creation with upstream tracking and validates branch setup. Prevents common git errors using GitHub CLI best practices.