在自定义目录中创建.asd文件并将其添加到asdf:*central-registry*列表中。
示例代码:
/path/to/my-packages/中创建my-package.asd文件,该文件包含如下内容:(defsystem :my-package
  :name "my-package"
  :version "0.1.0"
  :author "Your Name"
  :license "MIT"
  :depends-on (:asdf)
  :components ((:file "src/my-package")))
asdf:*central-registry*列表中:(push "/path/to/my-packages/" asdf:*central-registry*)
(asdf:load-system "my-package")来加载该包了。