Gh issue edit
Agent skills for GitHub CLI
npx -y skills add dceoy/github-cli-agent-skills --skill gh-issue-editAssembled 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
Edit GitHub issues (title, body, labels, assignees, milestones, projects) using gh CLI.
SKILL.md
1.3 KB, 290 tokens by cl100k_base, as published. Nobody here has run it
GitHub Issue Edit
When to use
- The user asks to update issue metadata or content.
- You need to add/remove labels, assignees, milestones, or projects.
Inputs to confirm
- Issue number(s) or URL(s).
- Changes to apply (title/body/labels/etc.).
- Target repo if not current (
--repo OWNER/REPO).
Workflow
- Verify auth:
gh --version gh auth status - Apply edits:
gh issue edit 123 --title "New title" --body "Updated body" gh issue edit 123 --add-label "bug" --remove-label "triage" gh issue edit 123 --add-assignee "@me" - Verify:
gh issue view 123
Examples
# Add labels and assign yourself
~ gh issue edit 123 --add-label "help wanted" --add-assignee "@me"
Notes
--add-assignee/--remove-assigneesupport@meand@copilot(GitHub.com only).- Project edits may require
gh auth refresh -s project.
References
- GitHub CLI manual: https://cli.github.com/manual/
gh issue edit --help
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.