AILinux

Die erste Linux-Distribution mit nativ integrierter KI-Orchestrierung
Über 115 LLMs. Echte Quantencomputer. Ein System.

v4.2.0-rc2 Codename: Brumo Production Ready


📊 Auf einen Blick

MetrikWert
MCP Tools134
LLM Modelle (Lokal)115+
Cloud-Modelle (Pro)630+
Backend VersionTriForce v2.80
Client Versionv4.2.0-rc2 “Brumo”

🧠 Was ist AILinux?

AILinux ist eine Ubuntu 24.04-basierte Distribution, die KI nicht als Add-on behandelt, sondern als integralen Bestandteil des Betriebssystems.

Kernfeatures

  • Native KI-Integration — Kein Browser, keine Cloud-Abhängigkeit. KI direkt im Terminal, Desktop und jeder Anwendung.
  • Multi-LLM Orchestrierung — Ollama, Claude, GPT, Gemini, Mistral über eine einheitliche API.
  • Tier-basierter Zugang — Guest (20 Modelle kostenlos) → Pro (630+ Cloud-Modelle) → Enterprise (Full Access).
  • Sicherheit by Design — JWT-Auth, verschlüsselte Credentials, RBAC-System.

🏗️ Die TriForce Architektur

Drei Säulen. Ein System. Unendliche Skalierbarkeit.

┌─────────────────────────────────────────────────────────────────┐
│                        AILinux Client                           │
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐             │
│  │  Terminal   │  │  Chat UI    │  │  Settings   │             │
│  │  + KI-Aug   │  │  + Models   │  │  + Auth     │             │
│  └──────┬──────┘  └──────┬──────┘  └──────┬──────┘             │
└─────────┼────────────────┼────────────────┼─────────────────────┘
          │                │                │
          ▼                ▼                ▼
┌─────────────────────────────────────────────────────────────────┐
│                     TriForce Backend                            │
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐             │
│  │  FastAPI    │  │  MCP Tools  │  │  CLI Agents │             │
│  │  Port 9000  │  │  134 Tools  │  │  Claude/etc │             │
│  └──────┬──────┘  └──────┬──────┘  └──────┬──────┘             │
│         │                │                │                     │
│  ┌──────┴────────────────┴────────────────┴──────┐             │
│  │              4-Layer Memory System            │             │
│  │   Facts │ Decisions │ Code │ Context         │             │
│  └───────────────────────────────────────────────┘             │
└─────────────────────────────────────────────────────────────────┘
          │                │                │
          ▼                ▼                ▼
┌─────────────────────────────────────────────────────────────────┐
│                     Cloud Providers                             │
│  Ollama │ Claude │ GPT │ Gemini │ Mistral │ IBM Quantum        │
└─────────────────────────────────────────────────────────────────┘

💻 AILinux Client

Der Desktop-Client für AILinux mit vollem TriForce-Zugang.

Installation

# Via pip (empfohlen)
pip install ailinux-client

# Via Repository
git clone https://github.com/ailinux/client.git
cd client && pip install -e .

Quick Start

# Verbinden
from ailinux_client import TriForceClient

client = TriForceClient()
client.login("[email protected]", "password")

# Modelle laden (Tier-basiert)
models = client.get_models()
print(f"Verfügbar: {len(models)} Modelle")

# Chat mit beliebigem Modell
response = client.chat(
    model="anthropic/claude-sonnet-4",
    message="Erkläre Quantenverschränkung"
)

# MCP Tools nutzen
result = client.mcp_call("web_search", query="AILinux news")

⚙️ TriForce Backend

Das Herzstück von AILinux — Multi-LLM Orchestrierung mit 134 MCP Tools.

Features

FeatureBeschreibung
134 MCP ToolsWeb Search, Code Exec, Memory, Ollama, Gemini Function Calling
4-Layer MemoryFacts, Decisions, Code, Context — persistent und durchsuchbar
CLI Agentsclaude-mcp, codex-mcp, gemini-mcp, opencode-mcp als Subprozesse
Mesh AIVerteilte Agent-Kommunikation über Command Queue
RBACRole-Based Access Control für Enterprise-Einsatz

API Endpoints

POST /v1/client/login        → JWT Token
GET  /v1/client/models       → Verfügbare Modelle (Tier-basiert)
POST /v1/client/chat         → Chat Completion
POST /v1/mcp/{tool}          → MCP Tool Aufruf
WS   /v1/client/ws           → Live Updates

Server-Infrastruktur

  • Hardware: Hetzner EX63, Intel Core Ultra 7 265, 64GB DDR5
  • OS: Ubuntu 24.04 LTS
  • Stack: FastAPI, PostgreSQL, Redis, Docker, Apache2
  • SSL: Let’s Encrypt (Auto-Renewal)

🔮 Quantum Computing Integration

🔄 COMING SOON — Q2 2025

AILinux wird die erste Linux-Distribution mit nativer Quantencomputer-Anbindung. Echte QPUs von IBM, D-Wave und IQM — direkt im Terminal.

Geplante Quantum-Tools

ToolFunktionProvider
quantum_random()Echte QRNG für KryptographieIBM Quantum
quantum_sign()Quantum-Paket-SignaturenIBM Quantum
quantum_verify()Signatur-VerifikationIBM Quantum
quantum_search()Grover-Suche O(√N)IBM Quantum
quantum_optimize()QAOA-OptimierungD-Wave Leap
quantum_simulate()VQE für MoleküleIQM Resonance

Quantum-Code Beispiele

# Bell-State (Verschränkung)
qc = QuantumCircuit(2)
qc.h(0)           # Hadamard → Superposition
qc.cx(0, 1)       # CNOT → Entanglement
qc.measure_all()  # Kollaps → |00⟩ oder |11⟩

# QRNG (Quantum Random Number Generator)
qc = QuantumCircuit(32)
for i in range(32):
    qc.h(i)       # 32 Qubits in Superposition
qc.measure_all()  # → 32 echte Zufallsbits

# Grover-Suche (O(√N) statt O(N))
from qiskit_algorithms import Grover, AmplificationProblem
problem = AmplificationProblem(oracle, is_good_state=["target"])
result = Grover(sampler).amplify(problem)

🛡️ Tier-System

TierModelleFeaturesPreis
Guest20 OllamaLokale Modelle, Basic MCPKostenlos
Free20 Ollama+ Memory, + erweiterte MCPKostenlos
Pro630++ Claude, GPT, Gemini, Mistral€9.99/Monat
Enterprise630++ Admin, + Custom Models, + PriorityAuf Anfrage

🗺️ Roadmap

  • Q4 2024 — TriForce Backend v2.0 (MCP, Multi-LLM, Ollama)
  • Q1 2025 — AILinux Client v4.0 (PyQt6, JWT, Tier-System)
  • Q1 2025 — TriForce v2.80 “Brumo” (134 Tools, CLI-Agents, Mesh AI)
  • 🔄 Q2 2025 — Quantum Integration (IBM, D-Wave, IQM)
  • 🎯 Q3 2025 — AILinux 1.0 Release (ISO, Installer, Repository)
  • 🚀 Q4 2025 — AILinux Enterprise Edition

🔗 Links

APIhttps://api.ailinux.me
Suchehttps://search.ailinux.me
Paketehttps://repo.ailinux.me
Web-UIhttps://nova.ailinux.me

👤 Entwickler

Markus Leitermann
Energieelektroniker & Linux-Entwickler
Warzenried, Oberpfalz, Deutschland


Lizenz: MIT License — Open Source für alle.

🐻 “Passt in den Kopf. Und ins Terminal.” — Brumo