Blob Blame History Raw
---
title: "Special Interest Groups"
title_lead: |
  CentOS Special Interest Groups (SIGs) develop and package software for
  CentOS ecosystem, or do other work to support the CentOS project.
  Some SIGs produce software to run on top of CentOS Stream, while others
  create separate editions of CentOS.
---

For information on SIG responsibilities, SIG governance, and how to start a
SIG, see [SIG Governance](/about/governance/sigs).

{% assign sigs = site.data.centos.sigs %}

{% for sig in sigs %}
{% if sig.inactive != true %}
<h2>{{ sig.title }}</h2>
<p class="lead">{{ sig.description }}</p>
{% if sig.blurb %}
<p>{{ sig.blurb }}</p>
{% endif %}
<div class="mb-3">
{% if sig.page %}
  <a class="btn btn-sm btn-primary text-nowrap" href="{{ sig.page }}"><i class="fa-solid fa-circle-info"></i> Information</a>
{% endif %}
{% if sig.chat %}
  <a class="btn btn-sm btn-outline-primary text-nowrap" href="{{ sig.chat }}"><i class="fa-solid fa-message"></i> Chat</a>
{% endif %}
{% if sig.docs %}
  <a class="btn btn-sm btn-outline-primary text-nowrap" href="{{ sig.docs }}"><i class="fa-solid fa-book"></i> Documentation</a>
{% endif %}
{% if sig.repo %}
  <a class="btn btn-sm btn-outline-primary text-nowrap" href="{{ sig.repo }}"><i class="fa-brands fa-git-alt"></i> Repository</a>
{% endif %}
</div>
{% endif %}
{% endfor %}