From fc3b46a2d863b24fe952536a8c2e4f55b5ecbf88 Mon Sep 17 00:00:00 2001 From: krut_ni Date: Tue, 3 Mar 2026 20:54:36 +0100 Subject: [PATCH] documented included lua libs --- app/MindWork AI Studio/Plugins/assistants/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/MindWork AI Studio/Plugins/assistants/README.md b/app/MindWork AI Studio/Plugins/assistants/README.md index d605d889..76e457e9 100644 --- a/app/MindWork AI Studio/Plugins/assistants/README.md +++ b/app/MindWork AI Studio/Plugins/assistants/README.md @@ -128,6 +128,14 @@ ASSISTANT.BuildPrompt = function(input) end ``` +### Included lua libraries +- [Basic Functions Library](https://www.lua.org/manual/5.2/manual.html#6.1) +- [Coroutine Manipulation Library](https://www.lua.org/manual/5.2/manual.html#6.2) +- [String Manipulation Library](https://www.lua.org/manual/5.2/manual.html#6.4) +- [Table Manipulation Library](https://www.lua.org/manual/5.2/manual.html#6.5) +- [Mathematical Functions Library](https://www.lua.org/manual/5.2/manual.html#6.6) +- [Bitwise Operations Library](https://www.lua.org/manual/5.2/manual.html#6.7) + ### Logging helpers (assistant plugins only) The assistant runtime exposes basic logging helpers to Lua. Use them to debug custom prompt building.