Mistral CLI, Vibe CLI, Gemini CLI, Codex CLI & More for Termux/Android/Linux/Windows
Eine einheitliche Oberfläche für alle AI-CLI-Tools mit Skills, Workflows, Agents und MCP-Servern.
- 🤖 Multiple CLI Providers - Mistral, Vibe, Gemini, Codex, Claude, DeepSeek, Qwen
- 🛠️ Skills System - Wiederverwendbare AI-Fähigkeiten
- 🔄 Workflows - Automatisierte Workflows
- 🤝 Agents - Vorkonfigurierte AI-Agenten
- 🔌 MCP Servers - Model Context Protocol Integration
- 🖥️ Local Models - Ollama Unterstützung für lokale LLMs
- 📱 Cross-Platform - Linux, Windows, Termux (Android)
| Provider | Install Command | Run Command | Models |
|---|---|---|---|
| Mistral CLI | pip install mistral-cli |
mistral chat |
Mistral Large, Codestral, NeMo |
| Vibe CLI | npm install -g vibe-cli |
vibe |
Auto, Architect, Coder, Reviewer |
| Gemini CLI | npm install -g @anthropic-ai/gemini-cli |
gemini |
Gemini 2.0 Flash, 1.5 Pro |
| Codex CLI | pip install openai |
codex |
GPT-4o, o1-preview, o1-mini |
| Claude CLI | npm install -g @anthropic-ai/claude-cli |
claude |
Claude Sonnet 4, Opus 4 |
| DeepSeek CLI | pip install openai |
deepseek |
DeepSeek Coder, Reasoner |
# Repository klonen
git clone https://github.com/batko15/ai-cli-hub.git
cd ai-cli-hub
# Setup-Script ausführen
chmod +x setup/install-linux.sh
./setup/install-linux.sh# Repository klonen
git clone https://github.com/batko15/ai-cli-hub.git
cd ai-cli-hub
# Setup-Script ausführen
setup\install-windows.bat# Repository klonen
git clone https://github.com/batko15/ai-cli-hub.git
cd ai-cli-hub
# Setup-Script ausführen
chmod +x setup/install-termux.sh
./setup/install-termux.sh# Abhängigkeiten installieren
bun install
# Datenbank einrichten
bun run db:push
# Entwicklungsserver starten
bun run devDann öffne http://localhost:3000 im Browser.
Erstelle eine .env Datei im Projektverzeichnis:
# Mistral AI
MISTRAL_API_KEY=your_mistral_api_key
# OpenAI / Codex
OPENAI_API_KEY=your_openai_api_key
# Anthropic Claude
ANTHROPIC_API_KEY=your_anthropic_api_key
# Google Gemini
GOOGLE_API_KEY=your_google_api_key
# DeepSeek
DEEPSEEK_API_KEY=your_deepseek_api_key
# GitHub (für MCP)
GITHUB_PAT_TOKEN=your_github_token
# Brave Search
BRAVE_API_KEY=your_brave_api_keyFür Android mit Termux:
-
Termux installieren von F-Droid (empfohlen) oder Play Store
-
Erforderliche Pakete:
pkg update && pkg upgrade
pkg install curl wget git nodejs python build-essential- Bun installieren:
curl -fsSL https://bun.sh/install | bash
source ~/.bashrc- AI CLI Tools:
pip install mistral-cli openai google-generativeai anthropic- Ollama für Android (optional, erfordert proot):
pkg install proot-distro
proot-distro install ubuntu
proot-distro login ubuntu
curl -fsSL https://ollama.com/install.sh | sh
ollama pull llama3Das Projekt enthält MCP-Server-Integrationen:
| Server | Beschreibung |
|---|---|
| Filesystem | Dateisystem-Zugriff |
| Memory | Persistenter Speicher |
| Brave Search | Websuche |
| GitHub | Repository-Integration |
| Puppeteer | Browser-Automatisierung |
| Sequential Thinking | Schrittweises Denken |
brownfield-query- Codebase-Analysebrownfield-fix- Bug-Fixingpr-review- Pull Request Reviewsdeploy-checklist- Deployment-Checklistegit-os- Git-Operationengreenfield- Neue Projekte starten
code-review- Vollständiger Code Reviewfeature-development- Feature-Entwicklungbug-fix- Bug-Fixing Workflow
pr-review-agent- PR Review Agentmodule-audit- Modul-Auditonboard-dev- Developer Onboarding
# Ollama installieren (Linux/macOS)
curl -fsSL https://ollama.com/install.sh | sh
# Modelle herunterladen
ollama pull llama3
ollama pull mistral
ollama pull codellama
ollama pull deepseek-coder
# Server starten
ollama serveai-cli-hub/
├── src/
│ ├── app/ # Next.js App Router
│ ├── components/ # React Komponenten
│ │ ├── ui/ # shadcn/ui Komponenten
│ │ └── cli/ # CLI-spezifische Komponenten
│ └── lib/
│ └── cli/ # CLI Konfigurationen
├── setup/ # Installations-Scripts
├── repos/ # Geklonte Repositories
├── prisma/ # Datenbank-Schema
└── mini-services/ # WebSocket Services
# Linting
bun run lint
# Datenbank-Migration
bun run db:migrate
# Build
bun run buildMIT License - siehe LICENSE für Details.
Made with ❤️ by batko15