 | [Website](https://cyberifrit.xyz)](https://external-preview.redd.it/cwSI0ywIOvdnpk0jmNQLl7MX8RUTyMvnaZxbZ5IoCU8.png?width=140&height=70&auto=webp&s=c05e6b4a864699e9a8169ced2b4c4ca6b922f343)
**TL;DR:** Built an open-source IDE with native Ollama integration that runs at 7.9 MB RAM. No session limits, no cloud dependency required, and includes iPhone emulator for Windows/Linux users. [GitHub](https://github.com/H4D3ZS/vscodium-rust) | [Website](https://cyberifrit.xyz)
**TL;DR:** Built an open-source IDE with native Ollama integration that runs at 7.9 MB RAM. No session limits, no cloud dependency required, and includes iPhone emulator for Windows/Linux users. [GitHub](https://github.com/H4D3ZS/vscodium-rust) | [Website](https://cyberifrit.xyz)
---
## The Problem I Was Solving
I was frustrated with:
- AI IDEs that throttle you after X requests per day
- $200+/month API bills for serious development
- Needing a Mac just to test iOS apps
- IDEs eating 2GB+ RAM before writing a single line of code
So I built **Cyber-Ifrit**, a VSCodium-Rust based IDE with:
## Key Features
### 1. **Native Ollama Integration**
- Run Qwen, Gemma, Llama, Mistral locally
- **Zero session limits** - use it as much as you want
- **No internet required** - works offline
- Multi-model routing (switch between models instantly)
- 91.4% cheaper than cloud APIs via Neural VFS compression
### 2. **Agentic AI Workflows**
The AI doesn't just chat—it **does** things:
- `Audit Codebase` - scans for issues
- `Fix All Errors` - auto-debugging
- `Write Tests` - generates test suites
- `Git Commit` - intelligent commit messages
- `Refactor` - code improvements
All running locally via Ollama.
### 3. **iPhone Emulator on Windows/Linux**
- iPhone 12 emulator integrated directly into IDE
- No Mac hardware required
- UI is live, boot optimization in progress
- Test iOS apps without buying Apple hardware
### 4. **Insanely Lightweight**
[**See Task Manager screenshot**]
- **7.9 MB RAM usage** (yes, megabytes)
- **0% CPU when idle**
- Runs on any Windows/Linux machine
## How It Works
```bash
# Clone and build
git clone https://github.com/H4D3ZS/vscodium-rust
cd vscodium-rust
cargo build --release
# Run it
./target/release/cyber-ifrit
# In the IDE:
# 1. Go to Settings → AI Models → Ollama
# 2. Select your local models (Qwen, Gemma, etc.)
# 3. Start coding with agentic AI