| name | conductor-process-github-issue |
| description | Pull a GitHub issue, including title and body, and then treat it as a feature/task to implement. |
Conductor in processing issue from Github
Use this skill when the user asks to get or fetch the feature, task from the Github issue.
Instructions
- Identify Repository: If the user doesn't specify a repository, assume the current directory's repository (which is
https://github.com/johnklee/finance_agent).
- List Recent Issues: To get a list of the most recent issues with their titles and bodies, run:
gh issue list --limit 10 --json title,body,number
- Pull Specific Issue: If a specific issue number is mentioned, run:
gh issue view <NUMBER> --json title,body
- Formatting: When presenting the results, clearly separate the Title and the Body. If the body is long, summarize it unless the user asks for the full text.
Constraints
- Only fetch from public repositories or those the user has authenticated access to via
gh auth.
- Default to the last 10 issues unless specified otherwise.