fix: add generate-tool-belt-prompt alias for cognitive-tool-prompt
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 3s

Another naming drift: think() calls generate-tool-belt-prompt but the
actual function was cognitive-tool-prompt in core-defpackage.
This commit is contained in:
2026-05-03 20:21:25 -04:00
parent 3c3557f519
commit 7393e69397
2 changed files with 8 additions and 0 deletions

View File

@@ -270,6 +270,10 @@ Tools that the LLM can invoke are registered here. Each tool has a name, descrip
(if descriptions
(format nil "Available tools:~%~a" (apply #'concatenate 'string (sort descriptions #'string<)))
"No tools registered.")))
;; Alias: generate-tool-belt-prompt → cognitive-tool-prompt
(defun generate-tool-belt-prompt ()
(cognitive-tool-prompt))
#+end_src
*** Centralized logging (log-message)