fix(skills): Definitive fix for character literal syntax
Some checks failed
Deploy-Agent-V15-Stdin / JOB-V15-STDIN (push) Failing after 2s

This commit is contained in:
2026-04-19 15:43:26 -04:00
parent 483aa57aee
commit 655fb09e55

View File

@@ -86,7 +86,7 @@ Whitelist of permitted host binaries.
Dangerous characters that are banned to prevent command injection.
#+begin_src lisp
(defparameter *shell-metacharacters* '(#\; #\& #\| #\> #\< #\$ #` #\\ #\!)
(defparameter *shell-metacharacters* '(#\; #\& #\| #\> #\< #\$ #\` #\\ #\!)
"Characters that are banned in shell commands to prevent injection.")
#+end_src