EdgeAI-OS
AI-Native Operating System
A bootable Linux distribution where AI is a system primitive.
No cloud. No API keys. Just /dev/ai.
❌ The Problem
- Cloud AI requires sending data externally
- API keys and accounts needed
- Python dependencies and pip hell
- Doesn't work in air-gapped networks
- Per-token costs add up fast
✅ The Solution
- 100% local - data never leaves
- No accounts, no API keys
- Zero dependencies - just boot
- Works completely offline
- One-time download, unlimited use
Key Features
AI as a Device
Access AI through /dev/ai - works with any programming language. Bash, Python, Rust, Go - anything that can read/write files.
Local LLMs
Ships with TinyLlama 1.1B and SmolLM 135M. Runs on CPU, no GPU required. Completely offline.
80%+ Instant
ai-sh resolves most queries via templates without touching the LLM. File searches, system info, git commands - instant.
Air-Gap Ready
Designed for networks with no internet. No telemetry, no phone-home, no external calls. Ever.
Command Safety
Every command is risk-assessed. Dangerous operations like rm -rf / are blocked. Moderate-risk commands require confirmation.
Open Source
MIT licensed. Fully auditable. Inspect every line of code. Perfect for security-conscious enterprises.
See It In Action
$ ai-sh
# Instant templates (no AI wait)
> what time is it?
[template] date
Sun Feb 9 10:15:49 UTC 2025
> files larger than 1gb
[template] find . -type f -size +1G
./backups/database.sql.gz
./logs/archive.tar
> find all python files modified last week
[template] find . -name '*.py' -mtime -7
# AI-generated (1-2 seconds)
> configure nginx as reverse proxy for port 3000
[ai-generated]
server {
listen 80;
location / {
proxy_pass http://localhost:3000;
...
}
}Architecture
Unix philosophy: AI as a system primitive.
ai-sh Template Examples
80%+ of queries resolve instantly - no LLM needed.
| Query | Command | Speed |
|---|---|---|
what time is it | date | ⚡ Instant |
files larger than 1gb | find . -size +1G | ⚡ Instant |
files modified last week | find . -mtime -7 | ⚡ Instant |
find all python files | find . -iname '*.py' | ⚡ Instant |
disk space | df -h | ⚡ Instant |
memory usage | free -h | ⚡ Instant |
what's on port 8080 | ss -tlnp | grep :8080 | ⚡ Instant |
git status | git status -sb | ⚡ Instant |
Use Cases
Built for environments where cloud isn't an option.
Banking & Finance
AI-powered log analysis, fraud detection, and compliance auditing without sending data to external services. PCI-DSS, SOX, GLBA friendly.
Healthcare
Analyze patient data, assist with documentation, and support clinical workflows while keeping PHI on-premise. HIPAA compliant.
Defense & Government
AI capabilities for classified networks and air-gapped environments. No internet connectivity required.
Security Operations
Threat analysis, IOC extraction, log correlation, and incident response - all without exposing sensitive security data.
Manufacturing / OT
Edge AI for operational technology networks isolated from IT. Predictive maintenance without cloud dependencies.
Developers
AI-assisted shell without Python dependencies, API keys, or cloud accounts. Just boot and use.
System Requirements
| Minimum | Recommended | |
|---|---|---|
| RAM | 2 GB | 4 GB+ |
| Storage | 2 GB | 4 GB+ |
| CPU | x86_64 | x86_64 + AVX2 |
| GPU | Not required | Not required |
Quick Start
From download to AI in under 60 seconds.
1. Download
Get the ISO from GitHub Releases (1.2 GB)
2. Boot
Boot in a VM (VirtualBox, VMware, etc.) or on bare metal. Auto-login as edgeai / edgeai.
3. Use AI
ai-sh
> what time is it?
> files larger than 100mb
> find all python filesReady to Try Air-Gapped AI?
Download the ISO, boot it up, and experience AI as a system primitive.