The kernel shell for AitherOS — a powerful CLI for autonomous AI orchestration, knowledge management, and system control.
AitherShell is proprietary software. Valid license key required.
# Set license key
export AITHERIUM_LICENSE_KEY="your-license-key-here"
# via pip (requires PyPI authentication)
pip install aithershell
# via Docker
docker run -e AITHERIUM_LICENSE_KEY="..." aitherium/aithershell:latest aither --help- Free Tier: https://aitherium.com/free (limited features)
- Pro: https://aitherium.com/pro (full features)
- Enterprise: sales@aitherium.com (custom licensing)
aither --help
aither --version
aither prompt "What is AitherOS?"AitherShell is the end-user CLI. Developers extend it by building agents using the Aither framework.
Developer (uses Aither) → Builds agents → Registers with platform
↓
End User (uses AitherShell) → Runs agents via `aither prompt`
Learn more: See DEVELOPER-GUIDE.md for building custom agents with Aither.
For complete ecosystem overview: Aitherium Ecosystem
🚀 Autonomous Agent Orchestration
- Dispatch work to specialized agents (code, research, security, etc.)
- Real-time streaming responses with rich output
- Integrated telemetry & observability
📚 Knowledge Graph Integration
- Query codebase semantics (CodeGraph + Repowise)
- Persistent context across sessions
- RAG-powered retrieval with embeddings
🔐 Enterprise-Ready
- HMAC-SHA256 signed capability tokens
- Multi-workspace support
- Audit logging via AitherChronicle
🎯 10 Production Plugins
genesis— AitherOS orchestrator integrationcode— CodeGraph semantic searchweb— Web search & content fetchvoice— Text-to-speech & voice inputagent— A2A agent dispatchmemory— Working memory & contextscript— Shell automation & job runnersconfig— Service & credential managementobserve— Telemetry & metricsauth— Identity & authorization
- Installation Guide — Detailed setup for all platforms
- User Guide — Commands, plugins, configuration
- API Reference — Python SDK for automation
- Plugin Development — Build custom plugins
- Troubleshooting — Common issues & solutions
aither (CLI)
├── Core Engine
│ ├── Shell (Interactive REPL)
│ ├── CLI Parser (Click)
│ └── Output Formatter (Rich)
├── Plugins (10 built-in)
│ ├── genesis (AitherOS)
│ ├── code (CodeGraph)
│ ├── web (Search)
│ ├── agent (A2A)
│ ├── memory (Context)
│ └── ... (5 more)
└── Infrastructure
├── Telemetry (Prometheus metrics)
├── Events (Flux pub/sub)
├── Logging (AitherChronicle)
└── Auth (Capability tokens)
aither
> help
> system status
> query "What services are running?"
> code search "authentication"
> run-script deploy.sh# Get Genesis status
aither genesis status
# Search codebase
aither code search "microservice"
# Dispatch agent task
aither agent dispatch research "explain AitherOS architecture"
# Manage configuration
aither config get SERVICE_PORT
aither config set LOGLEVEL DEBUGfrom aithershell import AitherShell
shell = AitherShell()
response = shell.dispatch_agent("code", "find_symbols", {"query": "authentication"})
print(response)- Python: 3.10, 3.11, or 3.12
- OS: Linux, macOS, or Windows
- Memory: 256 MB minimum
- Network: Internet access for agent features
AitherShell stores configuration in ~/.aither/:
~/.aither/
├── config.yaml # Global configuration
├── plugins/ # Installed plugins
├── history # Command history
└── cache/ # Cached responses
AITHER_LOGLEVEL=DEBUG # Logging level (INFO, DEBUG, WARNING)
AITHER_PLUGINS_DIR=./plugins # Custom plugin directory
AITHER_TELEMETRY=enabled # Enable Prometheus metrics
AITHER_WORKSPACE=myspace # Workspace namegit clone https://github.com/aitherium/aithershell.git
cd aithershell
python -m venv venv
source venv/bin/activate # or venv\Scripts\activate on Windows
pip install -e ".[dev]"pytest tests/ -v
pytest tests/ --cov=aithershell --cov-report=htmlpython -m build
twine upload dist/*docker build -t aitherium/aithershell:latest .
docker run aitherium/aithershell:latest aither --versionWe welcome contributions! Please:
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Write tests for your changes
- Submit a pull request
See CONTRIBUTING.md for detailed guidelines.
MIT License — see LICENSE for details.
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Security: Security Policy
Part of the Aitherium platform.
For more information about AitherOS, visit AitherOS Documentation.