Claude-skill-registry gh-managing-sub-issues
Manages GitHub sub-issues (parent-child relationships) using the GitHub REST API. Use when you need to list, add, remove, or reprioritize sub-issues for a parent issue.
git clone https://github.com/majiayu000/claude-skill-registry
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-managing-sub-issues" ~/.claude/skills/majiayu000-claude-skill-registry-gh-managing-sub-issues && rm -rf "$T"
skills/data/gh-managing-sub-issues/SKILL.mdManaging GitHub Sub-issues
Purpose
Provides a standardized way to manage hierarchical relationships between issues using the GitHub Sub-issues REST API. Since sub-issues are not yet first-class flags in the
gh issue commands, this skill uses gh api for direct interaction.
1. Safety & Verification
Before executing any commands, the agent must:
- Context Verification: Ensure
has been run and confirmed.gh-verifying-context - Human-in-the-Loop: Preview all state-changing commands (
,POST
,DELETE
) to the user for approval.PATCH - Repository Confirmation: Ensure you are targeting the correct repository and issue numbers.
2. Common Workflows
Workflow: List Sub-issues
Lists all sub-issues associated with a specific parent issue.
Command:
gh api /repos/{owner}/{repo}/issues/{issue_number}/sub_issues
Workflow: Add Sub-issue
Links an existing issue as a sub-issue to a parent issue.
Command:
gh api --method POST /repos/{owner}/{repo}/issues/{parent_number}/sub_issues \ -F sub_issue_id={sub_issue_id}
Note:
is the database ID of the issue, not the issue number. You can find this in the output of sub_issue_id
or by querying the API.gh issue view
Workflow: Remove Sub-issue
Unlinks a sub-issue from its parent issue.
Command:
gh api --method DELETE /repos/{owner}/{repo}/issues/{parent_number}/sub_issue \ -F sub_issue_id={sub_issue_id}
Workflow: Reprioritize Sub-issue
Changes the order of a sub-issue within its parent's list.
Command:
# Move sub-issue after another sub-issue gh api --method PATCH /repos/{owner}/{repo}/issues/{parent_number}/sub_issues/priority \ -F sub_issue_id={sub_issue_id} \ -F after_id={after_id} # Move sub-issue before another sub-issue gh api --method PATCH /repos/{owner}/{repo}/issues/{parent_number}/sub_issues/priority \ -F sub_issue_id={sub_issue_id} \ -F before_id={before_id}
3. Error Handling
- Invalid ID: If the API returns a 404 or validation error, double-check that you are using the
(integer) and not theid
.number - Permissions: Ensure the token has
access to the repository for state-changing operations.write - Limit Exceeded: GitHub currently allows up to 100 sub-issues per parent and up to 8 levels of nesting.