Posts

Showing posts from August, 2026

Introducing PromptScript(c)

There is a need to easily coordinate information flow/s between AI agents and/or deterministic applications to ensure reliable input/output between indeterministic systems (chaotic systems, such as AI agents or LLM outputs), and, deterministic systems such as traditional turing-style applications. As such, I have implemented a flow control language I call PromptScript(c). The specification follows. ``` # PromptScript Language Manual ## 1. Purpose PromptScript is an AI workflow language. It allows the chatbot planner to convert a user request into a deterministic, executable sequence of module calls. PromptScript combines: * ordinary programming logic; * semantic LLM-assisted conditions; * typed module inputs and outputs; * loops and counters; * progress reporting; * chatbot feedback; * Task Manager integration. The intended execution flow is: ```text User prompt → chatbot planner → PromptScript → PromptScript interpreter → AI modules → typed outputs → final chatbot response or artefact...