GitHub tracker
@conduit-harness/conduit-tracker-github reads issues from a GitHub repository and optionally writes back via comments and open/closed transitions.
Install
Section titled “Install”npm install -g @conduit-harness/conduit-tracker-githubAuthentication
Section titled “Authentication”Set a GITHUB_TOKEN environment variable and reference it as api_key: $GITHUB_TOKEN in your workflow.
Use a fine-grained personal access token scoped to the target repository with Issues: Read & Write permission. This is the minimum required scope and limits the blast radius if the token is ever leaked.
Create one at GitHub → Settings → Developer settings → Personal access tokens → Fine-grained tokens.
Classic PATs grant broad, repository-wide access and are not recommended.
Workflow snippet
Section titled “Workflow snippet”tracker: kind: github api_key: $GITHUB_TOKEN repo: owner/name active_states: [open] required_labels: [agentic] excluded_labels: [blocked] writes: enabled: falseGitHub Issues only supports two states: open and closed. transition_to values that map to a terminal state close the issue; all others reopen it. See Tracker writes.