Releases

Download the latest versions of Flask Code

Flask Code 1.2 — Client-Side
July 11, 2026
Latest
First Official Release

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.

Highlights:
  • Multi-provider support (Gemini, OpenRouter, Groq)
  • Tkinter GUI interface
  • Persistent user accounts with PIN authentication
  • API key slot management
  • Markdown-style output rendering
  • Built-in command system
Platform: Windows  |  Requires: Python 3.9+, Tkinter
Flask Code 1.2 — Client (flaskcc)
July 12, 2026
Latest
Terminal Client for FlaskCode-Server

A feature-complete, zero-dependency terminal client (flaskcc) that connects to a running FlaskCode-Server instance. Pure Python 3.9+ stdlib — no installs required.

Highlights:
  • Zero dependencies — pure Python stdlib
  • Cross-platform: Linux, macOS, Windows (PS launcher included)
  • Encrypted connection support (SHA256 / SHA1 / Base64)
  • Full auth, chat, file, notes, and API key commands
  • Auto-login and PIN login support
  • Interactive code-block save prompt
Quick Start:
# Linux / macOS
./flaskcc.sh localhost@5000

# Windows (PowerShell)
.\flaskcc.ps1 localhost@5000 -Pass mySecret

# Cross-platform
python flaskcc.py localhost@5000
Platform: Cross-platform  |  Requires: Python 3.9+  |  Archive: flaskcode-client.tar.gz
Flask Code 1.2 — Linux Server
July 12, 2026
Latest
Flask REST API Server

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.

Highlights:
  • Multi-provider AI (Gemini, Groq, OpenRouter)
  • Full REST API (auth, chat, files, knowledge, API keys)
  • Persistent user accounts with PIN authentication
  • Markov-based local knowledge engine
  • Interactive admin console (or daemon mode)
  • Bash command execution via shell_actions.py
Quick Start:
pip 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
Linux only. Shell actions and file paths are Linux-specific.
Platform: Linux  |  Requires: Python 3.9+, pip  |  Archive: flaskcode-server.tar.gz