Skip to content
@AtomicBot-ai

Atomic Local Ai

Private • Local • Open-Source

Atomic

Website · Docs · Discord · X

Open-source local AI — agents, chat, and inference. Private by default.


Atomic Chat

WebsiteStarsForksContributorsLast CommitDocs

Atomic Chat

An open-source desktop AI app. Run local LLMs from Hugging Face or connect cloud models (OpenAI, Anthropic, Mistral, Groq, MiniMax, others). Available on macOS, Windows, Linux, iOS, and Android.

Download

Desktop

Download for macOSDownload for WindowsDownload for Linux

Mobile

Download for iOSDownload for Android

Local OpenAI-compatible server

curl http://localhost:1337/v1/chat/completions -d '{ "model": "llama-3.2-3b-instruct", "messages": [{ "role": "user", "content": "Why is the sky blue?" }]}'

Highlights

  • Run open-weight LLMs (Llama, Gemma, Qwen, Mistral, Phi) from Hugging Face — fully offline
  • Connect cloud providers: OpenAI, Anthropic, Mistral, Groq, MiniMax
  • One-click agent launch — OpenCode & GitHub Copilot CLI from the Integrations tab
  • Artifacts — live preview panel for HTML/CSS/JS
  • Faster on Apple Silicon — MLX EAGLE-3, MTP, and TurboQuant KV cache
  • MCP integration for agentic capabilities; custom assistants for specialized tasks
  • Native iOS & Android apps, not wrappers

Follow us

Atomic Chat on XAtomic Chat on DiscordAtomic Chat on Hugging Face

Contributors

urmauurhohieuaiVect0rMVanaliteMinh141120hiento09hahuyhoang411hiro-vqnixsynapsenamchuaidan-menlofreelerobotramonpzgux-hanaindrajayadinhlongviolin1louis-janLazyYuukieckartalVan-QAdavid-menloaigau-nernstgithub-roushanmarkmeheretikikunsamhvw8danielcwqbob-ros2dev-miro26dtorey-dshmutalovdataCenter430drakehereethanovalugniccaavb-is-melinhtran174thewulf7vansangpfievMaxKoshJobcmppoonSsstarsfredatgithubsharunkumarpx100claytonlin1110atoz96yanalialiukcorevibe555bxdoanSuperCowProductsbytrangledanyurkinsince-2017-hubDistractionRectanglegary149trilh-devgabrielle-ongmarknguyen1302cuhongmykh-hailoDESU-CLUB0xgokuznew5558linuxid10t0rzechKuzmich55Crystorammngnstatxcvikram761MrAlaminHLokimortycopyholdSTRRLDexterity104Gri-ffinQuentinMachedaeltociearjamesdamlocnguyen1986razzeeemetaspartanirfanpenacs-catzwpapertheproductiveprogrammerDiane0111GenkaOkworthantHelloyunhojanpiokamalLouis454545tuananhlaiMauroDruwelmishrababhishekRealmbirdreneleonhardtRONNCCSamPattmesaugat0saurabh0sesajadsdhrtlucido-simonHaleshotvabatistavolodya-lombrozoynshungcashcon57ddrihooray804ldebsoolokioo7phovaltheishangoswamiutenadevzhhangingsr-albertgdmkadeiningAngelopgitanebotAlexFromAtomicB0shchindris-mihai-alexandruEndlessLuckymooncoolJasper-256trunghaiyniesinkmaxx-ukoomyakuramatthewbcoolMichalZemMarco-9456eren-karakus0thunhuanhFieldnote-EchoEruis2579akaMrNagar


Atomic Agent

StarsForksLast CommitDocs

Atomic Agent

A local-first AI agent that runs on your machine, with local or cloud models. It drives your browser, reads and edits files, runs approved shell commands, and remembers context across sessions. Runs on our TurboQuant llama.cpp, so small quantized models stay useful for long, multi-step work on ordinary hardware.

Install

macOS / Linux:

curl -fsSL https://api.atomicbot.ai/agent-install | sh

Windows (PowerShell):

irm https://raw.githubusercontent.com/AtomicBot-ai/atomic-agent/main/scripts/install.ps1 | iex

Run

atomic-agent

Capabilities

  • System browser via ARIA snapshots, shell, filesystem, documents (PDF/DOCX/XLSX), git, clipboard, HTTP, notifications
  • GBNF grammar-constrained tool calls, parallel tool batches, cache-hot prompt prefix, externalized state in SQLite
  • Local Markdown skills loaded on demand, FTS5 note recall, durable cron and webhook-triggered tasks
  • TUI, CLI, OpenAI-compatible HTTP server, and a Tauri sidecar speaking newline-delimited JSON
  • Policy-gated dangerous actions, append-only NDJSON traces with prompt-drift replay

Atomic LLaMA

StarsForksLast CommitDocs

Atomic LLaMA

A llama.cpp fork with TurboQuant KV cache compression and Gemma 4 MTP speculative decoding. ~30-50% throughput gains on the same hardware, drop-in compatible with upstream tools and GGUF.

TurboQuant KV cache

WHT-rotated 2/3/4-bit KV cache with backend-native kernels (Metal TurboFlash, CUDA, Vulkan, HIP). turbo3 is the default — 3-bit, ~4.3× compression vs F16.

llama-server -m model.gguf -c 32768 -ngl 99 -fa on \
-ctk turbo3 -ctv turbo3

Gemma 4 MTP speculative decoding

Pair any gemma4 target with the official gemma4_assistant head — loaded into the target context, no second tokenizer or KV cache. +30-50% short-prompt throughput on Gemma 4 26B-A4B / 31B at 85-88% accept rate. Pre-built assistant heads on Hugging Face.

llama-server -m gemma-4-target.gguf -c 16384 -ngl 99 -ngld 99 -fa on \
--mtp-head gemma-4-assistant-Q4_K_M.gguf \
--spec-type mtp --draft-block-size 3

Also included

  • TQ3_1S / TQ4_1S weight quantization via llama-quantize — 25-35% smaller than Q8_0, single-digit % PPL delta
  • Regularly synced with ggml-org/llama.cpp
  • Powers local inference in Atomic Chat and Atomic Agent

Community

DiscordXLinkedIn

© 2026 Atomic · atomicbot.ai

Popular repositories Loading

  1. Atomic-Chat Atomic-ChatPublic

    Local AI app and inference engine for agents. Run open-weight LLMs locally — private, 100% offline on your computer.

    TypeScript 1.2k 130

  2. atomic-agent atomic-agentPublic

    Local First Ai Agent. Optimized for Local Ai models. Long context window. Proper tools callings. Runs privately on your device.

    TypeScript 1.2k 166

  3. atomicbot atomicbotPublic

    Forked from openclaw/openclaw

    The Fastest Way to Run OpenClaw 🦞

    TypeScript 325 45

  4. atomic-llama-cpp-turboquant atomic-llama-cpp-turboquantPublic

    Forked from TheTom/llama-cpp-turboquant

    llama.cpp fork with TurboQuant WHT-rotated KV cache & weight compression + Gemma 4 MTP and Qwen 3.6 NextN speculative decoding (+30-50% throughput).

    C++ 325 43

  5. atomic-hermes atomic-hermesPublic

    Forked from NousResearch/hermes-agent

    The agent that grows with you

    Python 171 13

  6. clawhub-layer-api clawhub-layer-apiPublic

    🐾 Complete REST API for ClawHub skills marketplace data

    TypeScript 14 3

Repositories

Showing 10 of 15 repositories

Top languages

Loading…

Most used topics

Loading…