L’interface de VDS Renaissance est disponible en plusieurs langues. La documentation officielle est maintenue en anglais afin de garantir une référence unique, cohérente et toujours à jour.

AI Wizard

[VDS7] The AI Wizard (tools/Wizard/aiwizard.dsc) generates a complete DialogScript application from a description in plain language. You describe the application you want; the AI writes the .dsc code; the Wizard saves it and opens it in the IDE.

How it works

  • You type what the application should do, in natural language.
  • The Wizard sends your request to the AI together with a sealed super prompt — the confidential VDS context (grammar, idioms, pitfalls) that lets the model write correct, idiomatic code. The super prompt ships encrypted (tools/Wizard/superprompt.sld, AES-256) and is loaded with ai systemsealed, which decrypts it natively; it is never exposed in clear text.
  • The API key and model come from the IDE's Options → AI configuration: the Wizard runs in-process (Run / F9) and the IDE supplies ANTHROPIC_API_KEY and ANTHROPIC_MODEL. There is nothing to code.
  • The reply is stripped of any markdown fences and written as a .dsc file, then opened in the editor.

The generated code is idiomatic VDS that compiles — tested on small programs such as a name-and-button greeting and a calculator with @numeric / @eval validation.

The V1 protection of the language asset is pragmatic (embedded AES key; the prompt is never written to disk in clear). Stronger hardening (anti-reverse-engineering, licensing) is a separate planned effort.

See also