Claude-skill-registry gh-assigning-issues
Manages assignees on a GitHub issue. Use to indicate ownership or request review.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/gh-assigning-issues" ~/.claude/skills/majiayu000-claude-skill-registry-gh-assigning-issues && rm -rf "$T"
manifest:
skills/data/gh-assigning-issues/SKILL.mdsource content
Assigning Issues
Purpose
Edits issue assignees using the
gh issue edit command.
1. Safety & Verification
- Collaborators: Users must have appropriate permissions to be assigned.
2. Common Workflows
Workflow: Assign to Self
Sets yourself as the owner.
Command:
gh issue edit <issue-number> --add-assignee "@me"
Workflow: Add Multiple Assignees
Comma-separated list of usernames.
Command:
gh issue edit <issue-number> --add-assignee "user1,user2"