Game · Software · AI Development

Building the Future of
Intelligent Software

Mythlogic Studios is an independent development studio crafting next-generation developer tools, AI systems, and immersive games — all engineered from the ground up with precision, creativity, and a relentless pursuit of innovation.

3+
Products in Development
30+
Languages Supported
100%
Local & Private AI
Solo
Built by One Developer
What We Build

Three Pillars of Innovation

From AI-powered developer tools to immersive gaming experiences, every product we ship is engineered with the same obsessive attention to architecture, performance, and user experience.

🧠

Artificial Intelligence

We build AI that runs entirely on your hardware — no cloud, no subscriptions, no data leaving your machine. Our custom MinGRU neural architecture delivers infinite context at O(1) memory cost, redefining what’s possible in local AI.

Developer Tools

Portal IDE is the most architecturally advanced AI-integrated coding environment built by a solo developer. It ships with a full training pipeline, dual-agent debate system, 48+ autonomous tools, and a self-improving AI brain — all offline-capable.

🎮

Games

Monster Maneuvers brings strategic, creature-driven gameplay to Steam. We design games with depth, replayability, and the kind of mechanical polish that keeps players coming back. Every system is built to be mastered.

101
Code Challenges
17
Languages
19
Roguelike Relics
5
AI Difficulty Tiers
48+
Built-in AI Tools
120+
Training Sources
Our Products

Releasing Soon

Three distinct products. One studio. All built with the same commitment to quality that defines everything Mythlogic Studios ships.

Developer Tool

Portal IDE

The AI-native coding environment that thinks alongside you. Powered by TinyCPUDevAI — fully local, infinitely capable.

  • Custom MinGRU AI with O(1) memory — infinite context, zero cloud
  • Dual-agent Council debate system reduces hallucination
  • 48+ autonomous developer tools built in
  • Self-improving — learns from your feedback automatically
  • 30+ language support with full LSP integration
AI Engine

TinyCPUDevAI “Tiny”

A full-stack, self-improving AI brain built entirely in Python. Runs locally on any CPU. Trains on your data. Gets smarter every day.

  • Custom recurrent neural architecture — not a wrapper
  • Polycephalic Hive Mind — parallel multi-agent reasoning
  • 120+ source autonomous training pipeline
  • Persistent RAG memory across all sessions
  • 103-achievement progression system
Steam Game

Monster Maneuvers

A strategic creature-combat roguelike with AI-driven opponents, 19 relics, and deep tactical gameplay coming to Steam.

  • Piece XP Carry-Over — monsters grow stronger across runs
  • 19 Relics — Necromancer, Timepiece, Mirror Shield & more
  • Cursed Squares — dynamic terrain that skips turns
  • Boss Tiers — every 10th level escalates with unique advantages
  • Nightmare Mode — infinite scaling after level 100
Architecture

How It Works

Every component engineered for O(1) memory complexity and offline-first operation. Hover each node to explore.

🧠
MinGRU Core
O(1) Memory
⚖️
The Council
Dual-Agent Debate
📚
Knowledge Store
Hot / Warm / Cold
🎯
Tool Registry
48+ Dev Tools
🔮
Hive Mind
Parallel Agents
🔍
RAG Memory
Semantic Search
🌐
Training Pipeline
120+ Sources
🎮 Play to Learn

Learn to Code by Playing

Try a taste of Code Quest — the mini-game built into Portal IDE that teaches real programming concepts through gameplay. Complete all 5 gates to win.

Web demo — 5 challenges. The full game inside Portal IDE has 101 challenges across 17 languages. Get Portal IDE →

🏗️ Engineering

Peek Under the Hood

The technical decisions that make Portal IDE and TinyCPUDevAI genuinely different from everything else on the market.

🧠 MinGRU Neural Architecture O(1) Memory Complexity

Unlike Transformers which scale at O(n²) attention cost, MinGRU uses a minimal gated recurrent unit with log-space computation. This means:

  • Infinite context window without quadratic memory scaling
  • Runs entirely on CPU — no GPU required
  • 2M to 50M parameter models that fit comfortably in RAM
  • Hidden state persists across calls — genuine long-term memory
# MinGRU update rule (simplified)
z_t  = sigmoid(W_z * x_t)          # update gate
h_t  = (1 - z_t) * h_{t-1} + z_t * (W_h * x_t)
# No reset gate = 33% fewer parameters vs standard GRU
⚖️ The Council — Dual-Agent Debate System Reduces Hallucination

Two independent AI agents debate before producing a final answer. The structured deliberation loop surfaces edge cases a single model would miss:

  1. TinyCPUDevAI generates an initial response from local context
  2. MentorAI reviews, challenges weaknesses, and proposes alternatives
  3. CouncilOrchestrator runs N debate rounds until consensus is reached
  4. A joint answer is synthesised with a confidence score

Both agents share a common ToolRegistry with 48+ tools — either agent can autonomously invoke any tool during deliberation.

💾 Atomic Write & Safety System Zero Data Loss

Every AI-driven file write routes through a three-layer safety pipeline before touching disk:

1. Backup 2. Syntax Validate 3. Write to .tmp 4. fsync 5. Atomic Rename

If any step fails, the original file is automatically restored from backup. The SyntaxGuard runs AST validation before committing — a corrupt AI output can never reach your codebase.

🛡️ Security Layer Production-Grade

A transparent security layer sits underneath every subsystem — callers never have to think about it:

  • Prompt injection guard with BiDi control character blocking
  • Two-pass AST alias resolution — catches import os as o; o.system(...) bypass attacks
  • SHA-256 checkpoint verification on every model load
  • Entropy-based corpus poison detection — adversarial training samples quarantined automatically
  • Token-bucket sandbox rate limiter (10 runs / 60s)
💬 Community

What Developers Say

Early feedback from beta testers and the developer community.

“I didn’t think a local AI could compete with Copilot until I tried the Council system. The debate mechanism actually produces better code than GPT-4 on complex refactors.”

Senior Dev @ Startup — via Beta Program

“The fact that this is one person’s second project is humbling. The architecture is cleaner than most VC-funded teams I’ve worked with.”

Open Source Contributor — GitHub

“Code Quest taught me Rust syntax in a weekend. Gamified learning actually works when the game is this polished and the challenges are real code.”

⚡ Build Pipeline

From Code to Executable

Every release goes through a verified pipeline — 231 files validated, 26 tests passing, single-file executable produced by PyInstaller.

🐍
Source
231 files
🧪
Test
26 passing
📦
Build
PyInstaller
Deploy
Steam / Web
$ python build.py --clean
Cleaning build artifacts...
✓ Removed build/
Running PyInstaller...
Loading module hook 'hook-PyQt6.py'...
Building EXE from EXE-00.toc...
✓ Build successful: dist/PortalIDE.exe
🏗️ System Architecture

Interactive Dependency Graph

The full Portal IDE + TinyCPUDevAI system architecture. Hover any node to see implementation details.

graph TB subgraph Frontend["Frontend (PyQt6)"] UI[UI Layer] Canvas[Game Canvas] LSP[LSP Client] end subgraph Core["Core Engine"] MinGRU[MinGRU Neural Net] Council[The Council
Dual-Agent] Blackboard[Blackboard Bus] end subgraph Storage["Knowledge Store"] Hot[(Hot Memory)] Warm[(Warm Compressed)] Cold[(Cold Archive)] end subgraph Pipeline["Training Pipeline"] Scraper[Autonomous Scraper] Parser[Document Parser] Trainer[MinGRU Finetuner] end UI --> MinGRU Canvas --> MinGRU MinGRU <--> Council Council <--> Blackboard Blackboard <--> Hot Hot <--> Warm Warm <--> Cold Scraper --> Parser Parser --> Trainer Trainer --> MinGRU LSP --> UI

Hover over any node to see implementation details

About the Studio

Built by One Developer.
Engineered Like a Team.

Mythlogic Studios is the independent development studio of Christopher Brown — a self-taught developer who went from a chess game to a full AI-powered IDE as his second project. Every line of code, every architectural decision, every product is the work of a single developer who refuses to build anything small.

The studio’s philosophy is simple: build things that are genuinely useful, architecturally sound, and technically ambitious. No shortcuts. No wrappers. No placeholder features. Every product ships when it’s ready — and when it ships, it’s built to last.

Mythlogic Studios operates at the intersection of artificial intelligence, developer tooling, and interactive entertainment — three domains that demand precision, creativity, and deep technical knowledge. We bring all three.

🧠 AI Research ⚡ Developer Tools 🎮 Game Development 🔒 Privacy-First 🖥️ Local-First 🐍 Python 🎨 PyQt6

Get in Touch

Have a question about our products, a collaboration proposal, or just want to say hello? We’d love to hear from you.

✉ Chrisjbrown1714@gmail.com

Response time: typically within 24–48 hours.