ARES Kudo can run supports running LISP scripts on via the command line and also can load allows loading LISP files on startup.
To configure to load LISP files automatically, check the Customization Guide https://graebert.atlassian.net/wiki/spaces/KUDOPARTNER/pages/3567452245/Ares+Kudo+Editor+Customization+Guide#8.-start.lsp . Adding your LISP file path e.g. a LISP script from the command line, use a command like this:
(load "D:\\trunk\\myLISP.lsp") ; for Windows Server
(load "/home/AK Server/myLISP.lsp") ; for Linux Server
Ensure that the file path corresponds to the correct operating system, as shown in the examples above.
To automatically load LISP files when ARES Kudo starts, refer to the Customization Guide. You can configure automatic loading by adding your LISP file path (e.g., (load "D:\\trunk\\myLISP.lsp")
for Windows or (load "/home/AK Server/myLISP.lsp")
for Linux) to the start.lsp
file.