| name | later |
| description | Log items to come back to later — bugs found mid-task, feature ideas, project feedback — as GitHub Issues. Use when the user asks to log, list, view, or work through items saved for later. |
| user-invocable | true |
Use gh to manage backlog items as GitHub Issues in the current repo.
Before anything else
Verify there is a GitHub remote: gh repo view --json nameWithOwner. If it fails, stop and tell the user there is no GitHub remote — they need to be in a GitHub-backed repo to use this skill.
Logging an item
gh issue create --title "<title>" --body "<detail>"
Add labels if helpful (e.g. --label bug), but don't create labels that don't exist yet — only use labels already present in the repo.
Before creating, run gh issue list --search "<title>" to check for duplicates. If a near-match exists, show it to the user and ask whether to update that issue or create a new one.
Listing open items
gh issue list --state open
Viewing an item
gh issue view <number>
Never jump straight into implementation after reading an issue. After gh issue view, always: summarise the issue in your own words, investigate the relevant code enough to explain why it happens (root cause, not just symptoms), then present your thoughts — options, tradeoffs, a recommendation if you have one — and ask the user how they'd like to proceed. Only start editing code once the user has confirmed a direction. This applies even if the fix looks small or obvious.
Closing an item
gh issue close <number>
Working through items
- Run
gh issue list --state open to get open items.
- Present the titles and ask which to tackle.
- Run
gh issue view <number> for items being actively discussed, then follow the discuss-before-implementation rule above.
- After an item is resolved, run
gh issue close <number>.
Priorities
If the user specifies priority, map it to labels if they exist in the repo (priority: high, priority: medium, priority: low). Otherwise note priority in the issue body.