Download the latest versions of Flask Code
The original Flask Code desktop app — a polished Tkinter GUI with multi-provider AI support, PIN-based authentication, and built-in command system. Runs standalone on Windows.
A feature-complete, zero-dependency terminal client (flaskcc) that connects to a running FlaskCode-Server instance. Pure Python 3.9+ stdlib — no installs required.
# Linux / macOS
./flaskcc.sh localhost@5000
# Windows (PowerShell)
.\flaskcc.ps1 localhost@5000 -Pass mySecret
# Cross-platform
python flaskcc.py localhost@5000
flaskcode-client.tar.gz
Linux-only Flask REST API backend. Runs an HTTP server alongside an interactive admin console in the same process. Designed to be accessed by flaskcc clients over the network.
shell_actions.pypip install -r requirements.txt
# Localhost only
python server.py
# Public (LAN/remote)
python server.py --public --port 5000
# Daemon mode
python server.py --no-console
flaskcode-server.tar.gz