Motivation
A healthy good first issue / help wanted backlog is one of the clearest signals to a
prospective contributor that a project is approachable, and it gives maintainers a ready set of
small, well-scoped tasks to hand out instead of improvising one on request. Right now the backlog
of labeled starter issues is thin.
Acceptance criteria
Code pointers
gh issue list --repo conciv-dev/conciv --state open (current backlog to triage)
🤖 Generated with Claude Code
Motivation
A healthy
good first issue/help wantedbacklog is one of the clearest signals to aprospective contributor that a project is approachable, and it gives maintainers a ready set of
small, well-scoped tasks to hand out instead of improvising one on request. Right now the backlog
of labeled starter issues is thin.
Acceptance criteria
good first issueorhelp wanted.Verify (labels combine as AND in a single
--labelflag, so query separately and union):{ gh issue list --repo conciv-dev/conciv --label "good first issue" --state open --json number; gh issue list --repo conciv-dev/conciv --label "help wanted" --state open --json number; } \ | jq -s 'add | unique_by(.number) | length'returns ≥ 10.
candidates exist in the current tracker, write new, real starter issues to fill the gap
rather than mislabeling larger issues.
Code pointers
gh issue list --repo conciv-dev/conciv --state open(current backlog to triage)🤖 Generated with Claude Code