KonsolScript's project cookbook - real-world app ideas you can build with the built-in modules and plugins. Each entry lists the key pieces from the lego set that make it possible.
→ Full guide with inline scripts
File, Path, OS, Date) → sampleOS, Path, Konsol) → sampleFile, Regex, String, Date) → sample→ Full guide with inline scripts
CSV, List, Dictionary, File) → sampleJSON, Dictionary, File) → sampleCSV, JSON, String, File) → sample→ Full guide with inline scripts
Konsol, List, Dictionary, Class) → sampleMath, Konsol, List) → sampleArray, List, Dictionary, Math, Class) → sample→ Full guide with inline scripts
kse_curl plugin, JSON, String) → samplekse_curl plugin, Regex, File) → samplekse_net plugin, Konsol) → sample→ Full guide with inline scripts
kse_sqlite plugin, List, Dictionary) → samplekse_mysql plugin, JSON, CSV) → sample→ Full guide with inline scripts
Hash, File, Konsol) → sampleHash, String) → sample→ Full guide with inline scripts
kse_zip plugin, Path, File) → sampleJSON, CSV, Dictionary) → sampleKonsolScript is a capable AI orchestration scripting language. The kse_curl plugin paired with the JSON module connects to any LLM REST API - OpenAI, Anthropic Claude, Google Gemini, Ollama, or any self-hosted model. From there you can build full AI orchestration pipelines: route prompts across models, cache responses, annotate datasets, index knowledge bases, and automate LLM-driven workflows - all in a clean, readable .ks script with no boilerplate.
→ Full guide with inline scripts
kse_curl plugin, JSON, File, CSV, List) → sampleHash, kse_sqlite plugin, kse_curl plugin, JSON) → samplekse_curl plugin, JSON, Dictionary, Time) → sample→ Full guide with inline scripts
CSV, kse_curl plugin, JSON, File) → sampleCSV, kse_curl plugin, JSON, File) → sampleFile, Path, kse_curl plugin, JSON, kse_sqlite plugin, Math) → sample→ Full guide with inline scripts
File, Regex, kse_curl plugin, JSON, Time) → samplekse_curl plugin, JSON, Time, CSV) → sample.ks files and send each to an LLM for review (OS, File, kse_curl plugin, JSON, String) → sample→ Full guide with inline scripts
kse_net plugin, kse_curl plugin, JSON) → samplekse_net plugin, JSON, kse_curl plugin, Dictionary) → sampleThe demo_ai_bridge ships with minks as a complete, runnable example of the most powerful thing KonsolScript enables: an AI that writes and executes code inside a running application - without touching the binary.
libkonsolscript and exposes a custom DemoGame: module (wave info, weather, spawning). A .ks script takes a natural-language prompt, calls the Claude API, receives a generated KonsolScript event script in response, and ships it over LAN to the host. The host runs it live via engine.eval(). The AI reacted to game state and authored real behavior - the game binary never changed (kse_curl plugin, kse_net plugin, JSON, embedded libkonsolscript)The pattern generalizes to any domain: replace DemoGame: with your own module, replace the game host with your application, replace game_master.ks with any trigger - a cron job, a webhook, another AI. Multiple hosts on different machines can each run their own engine and be orchestrated from a single .ks script.