Anton – The most advanced AI data-coworker
Article URL: https://github.com/mindsdb/anton Comments URL: https://news.ycombinator.com/item?id=47619834 Points: 1 # Comments: 1
▐ ▄█▀██▀█▄ ♡♡♡♡ ██ (°ᴗ°) ██ ▀█▄██▄█▀ ▄▀█ █▄ █ ▀█▀ █▀█ █▄ █ ▐ ▐ █▀█ █ ▀█ █ █▄█ █ ▀█ ▐ ▐▐ ▄█▀██▀█▄ ♡♡♡♡ ██ (°ᴗ°) ██ ▀█▄██▄█▀ ▄▀█ █▄ █ ▀█▀ █▀█ █▄ █ ▐ ▐ █▀█ █ ▀█ █ █▄█ █ ▀█ ▐ ▐MindsDB Anton — What Business Intelligence is supposed to be
Business intelligence was supposed to give you the right data, at the right time, to get real work done.
That is Anton. You ask questions in plain language, and Anton takes ownership of the entire analytical process: it pulls and unifies data from multiple sources, runs the analysis, surfaces insights, builds rich dashboards, suggests next steps, and can even take action - A business intelligence agent that works like an expert analyst — 24/7, at machine speed.
Quick start
macOS / Linux:
curl -sSf https://raw.githubusercontent.com/mindsdb/anton/main/install.sh | sh && export PATH="$HOME/.local/bin:$PATH"
Windows (PowerShell):
irm https://raw.githubusercontent.com/mindsdb/anton/main/install.ps1 | iex
That's it, you can now run it by simply typing the command:
anton
Using Anton
Talk to Anton like a person, for example, ask Anton this:
I hold 50 AAPL, 200 NVDA, and 10 AMZN. Get today's prices, calculate my total portfolio value, show me the 30-day performance of each stock, and any other information that might be useful. Give me a complete dashboard.I hold 50 AAPL, 200 NVDA, and 10 AMZN. Get today's prices, calculate my total portfolio value, show me the 30-day performance of each stock, and any other information that might be useful. Give me a complete dashboard.What happens next is the interesting part. At first, Anton doesn't have any particular skill related to this question. However, it figures it out live: scrapes live prices, writes code on the fly, crunches the numbers, and builds you a full dashboard — all in one conversation, with no setup.
anton> Dashboard is open in your browser. Summary: Concentration risk is your #1 issue. If you're comfortable being a high-conviction NVDA...anton> Dashboard is open in your browser. Summary: Concentration risk is your #1 issue. If you're comfortable being a high-conviction NVDA...Key features
-
Credential vault - prevents secrets from being exposed to LLMs.
-
Isolated code execution - protected, reproducible “show your work” environment.
-
Multi-layer memory & continuous learning - session, semantic and long-term business knowledge.
Connect your data
Although you can use Anton with just public data, the real power happens when you combine that with your own data. This can be anything: files, databases, application APIs,... etc. Open the Local Vault with /connect command, then follow the prompts to add your secrets. Anton only has access to secret names - secret values remain hidden.
/connect
(anton) Choose a data source:
Primary 0. Custom datasource (connect anything via API, SQL, or MCP)
Most popular
- Amazon Redshift
- Databricks
- Google BigQuery
- HubSpot
- MariaDB
- Microsoft SQL Server
- MySQL
- Oracle Database
- PostgreSQL
- Salesforce
- Shopify
- Snowflake
(anton) Enter a number or type a name:`
Tell Anton to connect and ask questions about your data. It will look for credentials in the vault (by their name), fetch the schema, and retrieve the necessary data.
YOU> Connect to STAPLECACHE company data. Check if there is a correlation between the discount given and the review rating in the last 6 months?YOU> Connect to STAPLECACHE company data. Check if there is a correlation between the discount given and the review rating in the last 6 months?ANTON> ⎿ Scratchpad (connecting and fetching schema…) ~3s`
Explainable by default
You can always ask Anton to explain what it did. Ask it to dump its scratchpad and you get a full notebook-style breakdown: every cell of code it ran, the outputs, and errors — so you can follow its reasoning step by step.
What's inside
For the full architecture of Anton, file formats, and developer guide, see anton/README.md.
Workspace layout
When you run anton in a directory:
-
.anton/ — workspace folder containing scratchpad state, episodic memory, and local secrets.
-
.anton/anton.md — optional project context (Anton reads this at conversation start).
-
.anton/.env — workspace configuration variables file (local file).
-
.anton/episodes/* — episodic memories, one file per session.
-
.anton/memory/rules.md - behavioral rules: Always/never/when rules (e.g., never hardcode credentials, how to build HTML)
-
.anton/memory/lessons.md - factual knowledge: Things I've learned (stock API quirks, dashboard patterns, data fetching notes)
-
.anton/memory/topics/* - topic-specific lessons: Deeper notes organized by subject (dashboard-visualization, stock-data-api, etc.)
Override the working folder:
anton --folder /path/to/workspace
Memory systems
Anton provides two human-readable memory systems:
-
Semantic memory — rules, lessons, identity and domain expertise stored as markdown at global and project scope.
-
Episodic memory — a timestamped archive of every conversation (JSONL in .anton/episodes/). Anton can recall prior sessions with the recall tool.
Configure memory via /setup > Memory or via environment variables.
Prerequisites
-
git — required
-
Python 3.11+ (Anton will bootstrap an environment if missing)
-
curl — macOS / Linux installs
-
Internet connection (scratchpad may access web sources)
Windows scratchpad firewall
The Windows installer can add a firewall rule so the scratchpad can reach the internet. If you skipped it, run in an elevated PowerShell:
netsh advfirewall firewall add rule name="Anton Scratchpad" dir=out action=allow program="$env:USERPROFILE\.anton\scratchpad-venv\Scripts\python.exe"
How Anton differs from coding agents
Anton is a doing agent: code is a tool to get results. Where coding agents focus on producing code for a codebase, Anton focuses on delivering the outcome — a dataset, report, dashboard, or automated workflow — and will write whatever code is necessary to achieve that goal.
Is "Anton" a Mind?
Yes, at MindsDB we build AI systems that collaborate with people to accomplish tasks, inspired by the culture series books, so yes, Anton is a Mind :)
Why the name "Anton"?
We really enjoyed the show Silicon Valley. Gilfoyle's AI — Son of Anton — was an autonomous system that wrote code, made its own decisions, and occasionally went rogue. We thought it was was great name for an AI that can learn on its own, so we kept Anton, dropped the "Son of".
Analytics
Anton collects anonymous usage events (e.g. session started, first query) to help us understand how the product is used. No personal data or query content is sent.
To disable analytics, set the environment variable:
export ANTON_ANALYTICS_ENABLED=false
Or add it to your workspace config (.anton/.env):
ANTON_ANALYTICS_ENABLED=false
License
AGPL-3.0 license
Sign in to highlight and annotate this article

Conversation starters
Daily AI Digest
Get the top 5 AI stories delivered to your inbox every morning.
More about
github
I Built Consistent Hashing From Scratch in Go — Here's What I Learned
If you've ever added a server to a cache cluster and watched your database melt, you already know the problem consistent hashing solves. You just might not know it by name. I built a full implementation from scratch in Go to understand it deeply. This post walks through what I learned — the problem, the fix, and the gotchas nobody tells you about. The five-minute version You have 5 cache servers. You route keys with hash(key) % 5 . Life is good. Then traffic spikes and you add a 6th server. Now it's hash(key) % 6 . Sounds harmless, right? Here's what actually happens: Before: hash("user:1001") % 5 = 3 → Server C After: hash("user:1001") % 6 = 1 → Server A ← moved! That key was sitting happily on Server C. Now every client thinks it's on Server A, where it doesn't exist. Cache miss. The req
Knowledge Map
Connected Articles — Knowledge Graph
This article is connected to other articles through shared AI topics and tags.
More in Open Source AI
Google - Gemma 4 now in Unsloth!
Google releases Gemma 4 with four new models: E2B, E4B, 26B-A4B, 31B. You can now run and train the Gemma 4 models in Unsloth. Guide / Blog: https://unsloth.ai/docs/models/gemma-4 The multimodal reasoning models are licensed under Apache 2.0. Run E2B and E4B on 6GB RAM, and on phones. Run 26B-A4B and 31B on ~18GB. GGUFs: https://huggingface.co/collections/unsloth/gemma-4 Updates Tool calls for smaller models are now more stable and don't cut off anymore Context length is now properly applied. Tool calls for all models are now +30% to +80% more accurate. Web search now actually gets web content and not just summaries Number of tool calls allowed are increased to 25 from 10 Tool calls now terminate much better, so looping / repetitions will be reduced More tool call healing and de-duplicatio


Discussion
Sign in to join the discussion
No comments yet — be the first to share your thoughts!