docs/agents/issue-tracker.md
Issues for this repo live in GitHub Issues at gsd-build/get-shit-done.
Always read the token from .envrc — never use the ambient gh auth session (it resolves to enterprise credentials that cannot access this repo):
export GITHUB_TOKEN=$(grep GITHUB_TOKEN .envrc | cut -d\' -f2)
# or inline:
GITHUB_TOKEN=$(grep GITHUB_TOKEN .envrc | cut -d\' -f2) gh issue create ...
gh issue create --repo gsd-build/get-shit-done --title "..." --body "..."gh issue view <number> --repo gsd-build/get-shit-done --commentsgh issue list --repo gsd-build/get-shit-done --state open --json number,title,labels --jq '...'gh issue comment <number> --repo gsd-build/get-shit-done --body "..."gh issue edit <number> --repo gsd-build/get-shit-done --add-label "..." --remove-label "..."gh issue close <number> --repo gsd-build/get-shit-done --comment "..."Always pass --repo gsd-build/get-shit-done explicitly — the local clone has multiple remotes and gh may resolve to the wrong one.
Create a GitHub issue at gsd-build/get-shit-done.
Run gh issue view <number> --repo gsd-build/get-shit-done --comments.