Chapter 12 · Setup Matt Pocock Skills
Subchapter 12.3
issue-tracker-github.mdMarkdown4 KBView on GitHub
Issues and specs for this repo live as GitHub issues. Use the gh CLI for all operations.
gh issue create --title "..." --body "...". Use a heredoc for multi-line bodies.gh issue view <number> --commentsjqgh issue list --state open --json number,title,body,labels,comments --jq '[.[] | {number, title, body, labels: [.labels[].name], comments: [.comments[].body]}]' with appropriate --label and --state filters.gh issue comment <number> --body "..."gh issue edit <number> --add-label "..." / --remove-label "..."gh issue close <number> --comment "..."Infer the repo from git remote -v — gh does this automatically when run inside a clone.
PRs as a request surface: no. (Set to yes if this repo treats external PRs as feature requests; /triage reads this flag.)
When set to yes, PRs run through the same labels and states as issues, using the gh pr equivalents:
gh pr view <number> --comments and gh pr diff <number> for the diff.gh pr list --state open --json number,title,body,labels,author,authorAssociation,comments then keep only authorAssociation of CONTRIBUTOR, FIRST_TIME_CONTRIBUTOR, or NONE (drop OWNER/MEMBER/COLLABORATOR).gh pr comment, gh pr edit --add-label/--remove-label, gh pr close.GitHub shares one number space across issues and PRs, so a bare #42 may be either — resolve with gh pr view 42 and fall back to gh issue view 42.
Create a GitHub issue.
Run gh issue view <number> --comments.
Used by /wayfinder. The map is a single issue with child issues as tickets.
wayfinder:map, holding the Notes / Decisions-so-far / Fog body. gh issue create --label wayfinder:map.gh api on the sub-issues endpoint). Where sub-issues aren’t enabled, add the child to a task list in the map body and put Part of #<map> at the top of the child body. Labels: wayfinder:<type> (research/prototype/grilling/task). Once claimed, the ticket is assigned to the driving dev.gh api --method POST repos/<owner>/<repo>/issues/<child>/dependencies/blocked_by -F issue_id=<blocker-db-id>, where <blocker-db-id> is the blocker’s numeric database id (gh api repos/<owner>/<repo>/issues/<n> --jq .id, not the #number or node_id). GitHub reports issue_dependencies_summary.blocked_by (open blockers only — the live gate). Where dependencies aren’t available, fall back to a Blocked by: #<n>, #<n> line at the top of the child body. A ticket is unblocked when every blocker is closed.gh issue list --state open, scoped to the map’s sub-issues / task list), drop any with an open blocker (issue_dependencies_summary.blocked_by > 0, or an open issue in the Blocked by line) or an assignee; first in map order wins.gh issue edit <n> --add-assignee @me — the session’s first write.gh issue comment <n> --body "<answer>", then gh issue close <n>, then append a context pointer (gist + link) to the map’s Decisions-so-far.