diff --git a/doc/development/utilities.md b/doc/development/utilities.md
index 4f8034d2ec301c6741e7ef98f153f9b8d7a2a956..5fdee3cce81a676649b25bffff74fae6aee4b27f 100644
--- a/doc/development/utilities.md
+++ b/doc/development/utilities.md
@@ -285,6 +285,10 @@ end
 
 Read the documentation on [`ReactiveCaching`](reactive_caching.md).
 
+## `TokenAuthenticatable`
+
+Read the documentation on [`TokenAuthenticatable`](token_authenticatable.md).
+
 ## `CircuitBreaker`
 
 The `Gitlab::CircuitBreaker` can be wrapped around any class that needs to run code with circuit breaker protection. It provides a `run_with_circuit` method that wraps a code block with circuit breaker functionality, which helps prevent cascading failures and improves system resilience. For more information about the circuit breaker pattern, see: