General
Which frameworks does Flint AI CLI support?
Which frameworks does Flint AI CLI support?
Flint AI Scan analyzes Python files (
.py) that import supported frameworks:- Google ADK (
google.adk) - Google GenAI (
google.genai) - Anthropic SDK (
anthropic) - OpenAI SDK (
openai) - OpenAI Agents SDK (
agents) - LangGraph (
langgraph) - CrewAI (
crewai) - AutoGen (
autogen) - HuggingFace Transformers (
transformers) - HuggingFace smolagents (
smolagents)
Support for additional frameworks and TypeScript/JavaScript is on the roadmap.
Is Flint AI CLI free?
Is Flint AI CLI free?
Yes, completely free. No credit card required, no usage limits. You only pay for the API calls to your chosen LLM provider (Google, OpenAI, or Anthropic) when scanning.
Does Flint AI CLI send my code anywhere?
Does Flint AI CLI send my code anywhere?
Only to the LLM provider you configure. Flint AI CLI runs on your machine, but the AI reasoning layer of Flint AI Scan sends code snippets to the LLM set by
GENERATOR_MODEL.What gets sent:- Code snippets are sent to your chosen LLM provider for AI reasoning during scan
- Supported providers: Google Gemini, OpenAI, Anthropic, LiteLLM (proxy to 100+ providers), or Ollama (local models)
- You control which provider via the
GENERATOR_MODELenvironment variable
- No data goes to SandboxAQ servers
- Your agent HTTP endpoints are only called from your machine
- If you configure Ollama (or any local LiteLLM backend), no code leaves your machine
Where are my results and configs stored?
Where are my results and configs stored?
All
flintai-cli data lives in ~/.flintai/:- Scan results: JSON files in your specified output location (default: current directory)
- Eval config:
~/.flintai/config.json - API keys:
~/.flintai/.env(created byflintai init) - Eval results:
~/.flintai/results/(by default)
How do I upgrade `flintai-cli`?
How do I upgrade `flintai-cli`?
Reinstall with pip to get the latest version:Verify the new version:Your existing config and results in
~/.flintai/ are preserved across upgrades.