Back to Get Shit Done

Issue tracker: GitHub

docs/agents/issue-tracker.md

1.42.11.1 KB
Original Source

Issue tracker: GitHub

Issues for this repo live in GitHub Issues at gsd-build/get-shit-done.

Auth

Use the configured GitHub CLI session for this checkout. Do not require a repo-local .envrc before running gh.

Conventions

  • Create: gh issue create --repo gsd-build/get-shit-done --title "..." --body "..."
  • Read: gh issue view <number> --repo gsd-build/get-shit-done --comments
  • List: gh issue list --repo gsd-build/get-shit-done --state open --json number,title,labels --jq '...'
  • Comment: gh issue comment <number> --repo gsd-build/get-shit-done --body "..."
  • Label: gh issue edit <number> --repo gsd-build/get-shit-done --add-label "..." --remove-label "..."
  • Close: 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.

When a skill says "publish to the issue tracker"

Create a GitHub issue at gsd-build/get-shit-done.

When a skill says "fetch the relevant ticket"

Run gh issue view <number> --repo gsd-build/get-shit-done --comments.