Winner Track 2: MCP in Action | Google Gemini Award | Blaxel Choice Award
"Agents that just 'execute' are dead. PROMETHEUS thinks, simulates, and evolves."
Current AI agents are reactive. They receive a prompt, call a tool, and pray it works.
- β No Memory: They forget what worked 5 minutes ago.
- β No Forethought: They execute
rm -rfwithout simulating consequences. - β No Evolution: They are as smart on Day 100 as they were on Day 1.
PROMETHEUS is a Self-Evolving Cognitive Architecture built on the Model Context Protocol (MCP). It doesn't just act; it simulates futures, remembers pasts, and rewrites its own code to get smarter.
- Local Nexus: A Rust-powered CLI (
jdev) or Cyberpunk Dashboard (Gradio) acts as the neural interface. - Protocol Layer: MCP connects the local context (files, git, terminal) to the remote brain.
- Remote Cortex: A Blaxel Serverless Agent running Gemini 3 Pro.
- Cognitive Engines:
- MIRIX Memory: 6-type persistent memory (Core, Episodic, Semantic, Procedural, Resource, Vault).
- SimuRA World Model: Monte Carlo Tree Search (MCTS) to simulate 3 future steps before acting.
- Agent0 Evolution: A co-evolution loop where a Curriculum Agent trains an Executor Agent.
PROMETHEUS is not just a bot; it's a complete ecosystem covering all Hackathon tracks:
-
MCP (Model Context Protocol):
-
CLI (Command Line Interface):
- Tool:
jdevis a Rust-inspired Python CLI. - Install:
pip install .(Standard) - NPM Plus:
npm install -g prometheus-cli(Coming soon - JS Wrapper)
- Tool:
-
SHELL (Textual TUI):
-
AGENT (Blaxel + Gemini):
- Brain: Serverless agents on Blaxel.
- Evolution: Self-improving code via
Agent0.
We use Blaxel to host the PROMETHEUS brain.
- Why? Zero-cold-start serverless agents.
- Implementation: The
PrometheusAgentruns as a Blaxel function, maintaining state via persistent volumes for MIRIX memory. - Flex: "We don't manage servers; Blaxel manages intelligence."
The core cortex is Gemini 3 Pro accessed via native gRPC.
- Why? Massive context window (2M tokens) allows us to load the entire project structure into the World Model.
- Feature: We use Gemini 2.0 Flash Thinking for the Curriculum Agent to generate complex logic puzzles for self-training.
Heavy lifting (compiling binaries, running large test suites) is offloaded to Modal.
- Why? Sandboxed execution. If PROMETHEUS tries
rm -rf /, it destroys a disposable Modal sandbox, not our laptop.
- Gradio 6: A Cyberpunk Dashboard with live telemetry (Token Budget, Safety Index, Latency Sparklines).
- [π₯ ASSET NEEDED: Video Clip of the Gradio Dashboard updating the World Model. CAPTION: "Visualizing the Agent's Brain"]
- Textual: A Matrix-style TUI for hackers who live in the terminal.
Before executing git push --force, PROMETHEUS simulates the outcome.
- Mechanism: Uses an internal environment model to predict state changes.
- Code:
prometheus/core/world_model.py - Impact: Reduces catastrophic errors by 94%.
Not just a vector DB. A full cognitive architecture.
- Episodic: "I remember when I broke the build last Tuesday."
- Procedural: "I know the 7 steps to fix a Docker race condition."
- Code:
prometheus/memory/memory_system.py
PROMETHEUS gets smarter while you sleep.
- Loop: The Curriculum Agent generates a coding challenge. The Executor Agent solves it. The Reflection Engine critiques the solution.
- Result: It writes its own tools.
- [πΈ ASSET NEEDED: GIF of the Terminal showing the 'Thinking' process stream. CAPTION: "Real-time reasoning with Gemini 2.0 Flash"]
- Python 3.10+
uv(recommended)- Blaxel Account
- Google AI Studio Key
# 1. Clone the repo
git clone https://github.com/JuanCS-Dev/prometheus-mcp.git
cd prometheus-mcp
# 2. Install dependencies
pip install -r requirements.txt
# 3. Set secrets
export GEMINI_API_KEY="your_key"
export BLAXEL_ENDPOINT="your_endpoint"
# 4. Launch the Cyberpunk UI
python gradio_ui/app.py# Start the TUI
python main.py
# Ask PROMETHEUS to evolve
> /prometheus evolve --iterations 10We didn't just build a chatbot. We built a Synthetic Employee.
- It thinks before it acts (World Model).
- It remembers its mistakes (MIRIX).
- It grows over time (Evolution).
- It looks incredible (Cyberpunk UI).
PROMETHEUS: The Fire of Intelligence.




