By Digital Hallucinations — Jeremy Shows
ATLAS combines a GTK desktop shell, configurable personas, and an orchestration back end to coordinate multi-agent work across conversations, scheduled jobs, and automation services.
It merges systemic orchestration with personal agency, forming a unified runtime where configuration, provider management, persona logic, and automation coexist under one roof.
Where other frameworks chase closed ecosystems, ATLAS emphasizes control, autonomy, and adaptability.
It allows you to define not just what an agent does, but how it thinks, who it represents, and which provider powers it — all from a locally controlled, extensible environment.
ATLAS exists to give creators control over the frameworks that define their agents.
Every design choice supports freedom from lock-in and clarity of orchestration.
“I wanted features that mainstream companies only offered fractured examples of —
and the freedom to make it do what I want, not what a corporation or government says I can.”
Built under the Digital Hallucinations ecosystem, ATLAS merges precision engineering with persona-driven cognition and modular autonomy.
-
GTK Desktop Shell –
main.pyboots a GTK 4 application that initializes ATLAS instances on demand, launches the first-run coordinator, and keeps setup, shell, and window controllers alive for the duration of the session. -
Persona Runtime –
Persona definitions, toolboxes, and validation rules live undermodules/Personas/and are documented in the persona guide.
They control which tools, skills, and collaboration patterns each persona can access, and include task manifests for persona-specific workflows. -
Orchestration Back End –
The orchestration layer manages message-bus communication, task dispatch, job planning, and capability registry services that feed both automation APIs and UI analytics.
At startup, ATLAS configures message-bus backends, speech services, persona and provider managers, and the PostgreSQL-backed conversation repository via the central ConfigManager.
The orchestration stack layers task and job managers on top of that state, while the embedded AtlasServer exposes REST routes for conversations, tasks, jobs, tools, skills, and collaboration surfaces.
This shared infrastructure lets the GTK shell, automation jobs, and external callers operate against the same message bus, storage, and capability registries.
flowchart TD
subgraph Core["ATLAS Core Runtime"]
A1[ConfigManager] --> A2[Message Bus / Redis Streams]
A1 --> A3[PostgreSQL Repository]
A1 --> A4[Provider Manager]
A1 --> A5[Persona Manager]
end
subgraph Orchestration["Task + Job Orchestration"]
B1[Task Dispatcher] --> B2[Job Scheduler]
B2 --> B3[Capability Registry]
end
subgraph Interfaces["Interfaces"]
C1[GTK Desktop Shell]
C2[AtlasServer REST / Streaming APIs]
C3[Automation Services]
end
Core --> Orchestration --> Interfaces
- Python 3.10+ – uses modern union type syntax (e.g.,
ATLAS | None). - PostgreSQL 14+ – backs conversation history, key-value state, and scheduling primitives.
- Redis (optional) – durable message-bus backend; in-memory queues available for local dev.
Follow the developer environment setup runbook to create the virtual environment, install dependencies, and choose between CLI or GTK setup flows. Review the configuration reference to map environment variables and YAML blocks before first launch.
# Clone ATLAS
git clone https://github.com/DigitalHallucinations/ATLAS.git
cd ATLAS
# Install GTK build prerequisites (choose the command for your OS)
# Linux (Debian/Ubuntu)
sudo apt install libgtk-4-dev libadwaita-1-dev gobject-introspection gir1.2-gtk-4.0
# Linux (Fedora)
sudo dnf install gtk4-devel libadwaita-devel gobject-introspection-devel
# macOS (Homebrew)
brew install gtk4 libadwaita gobject-introspection
# Create a virtual environment
python3 -m venv .venv
source .venv/bin/activate
# Install dependencies (base runtime)
pip install -r requirements.txt
# Optional: install Hugging Face fine-tuning, local Whisper STT, and accelerator extras
# (Skip this step on CPU-only hosts.)
pip install -r requirements-accelerators.txt
# Confirm GTK bindings are available
python -c "import gi"💡 Use
python3 scripts/install_environment.py --with-acceleratorsto automate both the virtualenv creation and optional accelerator extras installation. The extras layer pulls in Torch, Hugging Face fine-tuning stacks, and local Whisper tooling—run without the flag on CPU-only hosts to skip those GPU-focused packages.
Start the GTK shell from the repository root:
python3 main.pyThe application initializes the ATLAS runtime and presents the primary window or, when configuration is missing, guides you through the setup wizard.
Server and automation surfaces live in modules/Server/, where AtlasServer wires REST and streaming routes for conversations, tasks, jobs, tools, skills, and shared blackboard collaboration.
Tool discovery endpoints (e.g., /tools) and capability registries feed downstream automations and dashboards.
- 🧠 Multi-Persona Management — define and switch between intelligent, specialized personas.
- 🌐 Multi-Provider Layer — dynamically select between OpenAI, Anthropic, xAI, or local LLMs.
- 🧩 Extensible Tools — universal tool API for integrating retrieval, scheduling, or external modules.
- 🪶 GTK Interface — sleek, native desktop environment for agent orchestration.
- 🔐 Privacy & Local Autonomy — all control stays local; no enforced cloud dependency.
- 🔄 Persistent Context — PostgreSQL-backed state and modular message-bus design.
- 🧭 Unified Orchestration — conversations, jobs, and automations share a single runtime.
- Setup Wizard – guided configuration and bootstrap flow
- Persona Definitions – schema, validation, and persona-specific tooling
- Task Lifecycle Overview – routing, analytics, and UI integration
- Job Services / Job Dashboards – APIs and analytics
- Tool Manifest Metadata / Generated Tool Catalog
- Task Queue / Key-Value Store
- Conversation Retention – policy and workers
- Conversation Store Data Model – PostgreSQL schema and helpers
- User Account Management – credentials, lockouts, and operator flows
- Shared Blackboard – collaborative API surfaces
- AtlasServer API Reference – REST endpoints and semantics
- Operations Runbooks – dev environment and bus deployment guides
- GTK UI Overview – workspace controllers and extensions
| Phase | Focus |
|---|---|
| ✅ Core Framework | Multi-persona, multi-provider orchestration |
| 🧩 Tool Ecosystem | Expand universal built-ins and automation primitives |
| 🪶 UI Enhancements | Themes, visualization, live context tracing |
| ⚡ CI/CD + Testing | GitHub Actions, linting, and coverage |
| 🔄 Plugin Registry | Public index for ATLAS modules and personas |
| 💬 Documentation Portal | Interactive docs and tutorials |
Contributions are welcome.
If you’d like to build a persona, tool, or provider adapter, fork the repo and open a pull request.
Follow PEP 8 and ensure tests pass with pytest before submitting.
Created and maintained by Jeremy Shows Part of the Digital Hallucinations ecosystem.
“ATLAS isn’t just an assistant — it’s a framework for agency.”
#AI #AgenticFramework #OpenSource #GTK #MultiProvider #DigitalHallucinations #Python