Currently, the tool executes AI-generated code directly on the host machine. This is a major security risk.
Feature: Implement execution inside a Docker container or a WebAssembly (WASM) runtime.
The project currently uses the system pip to install dependencies.
Feature: Automate the creation of a temporary Python venv for every script generated. This prevents the bot from "polluting" the user's global Python installation.
The project currently relies on HuggingFace's API.
Feature: Add a "Local Mode" using a tool like Ollama or a Rust crate like candle (by HuggingFace).
The project currently uses py_compile to check syntax.
Feature: Integrate ruff or flake8 to perform deeper static analysis.