docs/agents/issue-tracker.md
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> --comments, filtering comments by jq and also fetching labels.gh 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.gh pr comment, gh pr edit --add-label/--remove-label, gh pr close.GitHub shares one number space across issues and PRs. Resolve bare #42 with gh pr view 42, then fall back to gh issue view 42.
Create a GitHub issue.
Run gh issue view <number> --comments.
Used by /wayfinder. Map is one issue with child issues as tickets.
wayfinder:map, holding Notes / Decisions-so-far / Fog. Create with gh issue create --label wayfinder:map.Part of #<map> atop child body. Labels: wayfinder:<type> (research, prototype, grilling, or task). Assign ticket to driving developer once claimed.gh api --method POST repos/<owner>/<repo>/issues/<child>/dependencies/blocked_by -F issue_id=<blocker-db-id>, where database ID comes from gh api repos/<owner>/<repo>/issues/<n> --jq .id. Where unavailable, use Blocked by: #<n>, #<n> atop child body.gh issue edit <n> --add-assignee @me.