agentsclimarketplace

Create issue branch github

Skill ForeverAProgrammer/claude-devflow/skills/create-issue-branch-github

Claude Code plugin with skills for daily dev workflows — commits, standups, PRs, design docs, and GitHub automation.

Install
npx -y skills add ForeverAProgrammer/claude-devflow --skill create-issue-branch-github

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Create a branch linked to a GitHub issue and check it out locally.

SKILL.md

1.6 KB, as published. Nobody here has run it

Create a branch linked to a GitHub issue and check it out locally.

$ARGUMENTS is the issue number. If $ARGUMENTS is empty, ask the user to provide an issue number and stop.

Steps:

  1. Check that gh is installed and authenticated by running gh auth status. If not, tell the user and stop.
  2. Run gh issue view $ARGUMENTS --json title,state to confirm the issue exists. If it doesn't exist or is already closed, tell the user and stop.
  3. Check if gh issue develop is available by running gh issue develop --help 2>/dev/null. Then:
    • If available: Run gh issue develop $ARGUMENTS --checkout. Pass --name <name> if a custom name was provided in $ARGUMENTS. GitHub names the branch <number>-<issue-title-slug> automatically and links it to the issue.
    • If not available (older gh): Derive the branch name from the issue number and title: lowercase the title, replace spaces and special characters with hyphens, truncate to ~5 words, and prefix with the issue number (e.g. 12-add-decision-command). Run git checkout -b <branch-name>.
  4. Tell the user the branch name and confirm they are now on it.
    • If gh issue develop was used: note that the branch is linked to the issue and will appear in the issue's Development sidebar automatically.
    • If the fallback was used: note that gh issue develop requires gh v2.11+ and suggest upgrading. Advise adding Closes #<number> to the PR description to link the issue when opening a PR.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.