diff --git a/docs/index.rst b/docs/index.rst
index e49bfd7f4400d7f550c0cf0a6c6337bbc163d59c..bc7b35503601bc639d6a1d8d6345e71aaa249efd 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -52,10 +52,17 @@ Here is brief overview of the most relevant software components in the Software
 Heritage stack. Each component name is linked to the development documentation
 of the corresponding Python module.
 
+:ref:`swh.auth <swh-auth>`
+    low-level library used by modules needing keycloak authentication
+
 :ref:`swh.core <swh-core>`
     low-level utilities and helpers used by almost all other modules in the
     stack
 
+:ref:`swh.counters <swh-counters>`
+    service providing efficient estimates of the number of objects in the SWH archive,
+    using Redis's Hyperloglog
+
 :ref:`swh.dataset <swh-dataset>`
     public datasets and periodic data dumps of the archive released by Software
     Heritage
@@ -178,7 +185,9 @@ Indices and tables
    contributing/index
    tutorials/index
    API documentation <apidoc/modules>
+   swh.auth <swh-auth/index>
    swh.core <swh-core/index>
+   swh.counters <swh-counters/index>
    swh.dataset <swh-dataset/index>
    swh.deposit <swh-deposit/index>
    swh.fuse <swh-fuse/index>
diff --git a/requirements-swh-dev.txt b/requirements-swh-dev.txt
index 9fe26ea446791083c6806c223bea62d8a7ed339d..91c3fc337ab707b239842642e12af08c46309fc5 100644
--- a/requirements-swh-dev.txt
+++ b/requirements-swh-dev.txt
@@ -1,7 +1,9 @@
 # Add here internal Software Heritage dependencies, one per line.
 # Dependencies need to be ordered in a way that ensure only
 # development versions will be used (not the release ones hosted on PyPI).
+../swh-auth[django]
 ../swh-core[http,db,logging]
+../swh-counters
 ../swh-model
 ../swh-journal
 ../swh-objstorage[testing]
diff --git a/requirements-swh.txt b/requirements-swh.txt
index 6d31e26aadb65e16fe9650a41e327f5273557000..0422e5653c559ec3d8dc70e1506aa341bdae7ef7 100644
--- a/requirements-swh.txt
+++ b/requirements-swh.txt
@@ -1,6 +1,8 @@
 # Add here internal Software Heritage dependencies, one per line.
+swh.auth[django]
 swh.core[db,http]
-swh.deposit
+swh.counters
+swh.deposit[server]
 swh.fuse
 swh.graph
 swh.indexer