Use Serapeum package-local nicknames
masterSerapeum is designed to be conservative and avoid package conflicts. You can use it alongside cl and alexandria by using package-local nicknames. Alternatively, you can use the serapeum/bundle package which re-exports symbols from both serapeum and alexandria (plus other utilities) into a single nickname.
;; Standard usage to avoid conflicts
(defpackage ... (:use #:cl #:alexandria #:serapeum))
;; Using package-local nicknames for a bundle of utilities
(defpackage ... (:local-nicknames (:util :serapeum/bundle))))