Ross ROSS = Recommend OSS · open-source software intelligence for agents

sourcegraph/conc

Better structured concurrency for go observed · 2026-08-28

github.com/sourcegraph/conc · homepage · Go · MIT (permissive) observed · 2026-08-28

Health v2 · maintenance only

62/100

  • Activity 90
  • Release rhythm 8
  • Longevity 95
How is this computed?

round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.

  • gap_med: n/a
  • age_days: 1339
  • days_rel: n/a
  • days_push: 61
  • n_releases_24m: 0

Full methodology

Adoption not part of the score

10427 stars · 357 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded

conc is a Go library providing better structured concurrency primitives, including a panic-safe WaitGroup and concurrency-limited task pools. It reduces boilerplate and makes concurrent Go code safer by propagating panics and preventing goroutine leaks.

Use cases

  • run goroutines with panic propagation instead of crashing the process
  • limit concurrency of parallel tasks with a worker pool
  • collect results from concurrent tasks in Go
  • replace sync.WaitGroup with a safer version
  • handle errors from concurrent goroutines cleanly
  • avoid goroutine leaks and deadlocks from panics

When to choose

  • you write concurrent Go code and want panic-safe goroutine management
  • you need bounded-concurrency task execution or result collection
  • you want less boilerplate than the standard library for common concurrency patterns

When to avoid

  • your project is not written in Go
  • you need async/await-style structured concurrency in another language
  • your concurrency needs are trivial and sync.WaitGroup suffices

Facets

library · maturity stable

concurrency developer-tools go goroutines structured-concurrency waitgroup worker-pool panic-handling algorithms

5 sources

Member repositories

RepositoryRoleHealth v2
sourcegraph/concmain62

For agents

markdown · JSON · MCP: product_card(name="sourcegraph/conc")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem