github-my-work
Installation
SKILL.md
github-my-work
List open issues assigned to you in the target repo, sorted by priority (P0 → P1 → P2 → P3 → unlabeled). Rendered as a table with clickable links. Entirely read-only.
Run it
Prereqs: gh auth login (or $env:GH_TOKEN), $env:GH_OWNER + $env:GH_REPO set.
$env:GH_OWNER = "Cartagena365"
$env:GH_REPO = "GlassHull"
gh issue list `
--repo "$env:GH_OWNER/$env:GH_REPO" `
--assignee @me `
--state open `
--json number,title,labels,url `
--jq '.[] | [.number, .title, (.labels | map(.name) | join(", ")), .url] | @tsv'