21 integrated tools. Plan → Generate → Audit → Execute → Verify. A complete agent loop that rivals Claude Code — powered by free local LLMs.
Click a task chip to see the full pipeline in motion
Everything Claude Code does — on local models, with a GUI, for everyone.
4 separate LLMs for planning, code generation, security auditing, and verification — each with fallback chains. Not a chatbot. A real agent loop.
Plan → Generate → Audit → Execute → VerifyEvery generated script is reviewed by qwen2.5-coder:7b (fallback: falcon:7b) before any execution. 5 risk categories checked. Kill button always available.
Security FirstExecution fails? The agent captures the error, sends it back to CodeLlama, and rewrites or patches the code. Partial progress is preserved between retries.
Self-HealingOn startup, the agent scans Desktop, Downloads, Documents, Pictures, Videos, Music. Knows your files before you type. No paths needed.
Workspace ScannerStart a TCP MCP server from the sidebar. 50+ tool endpoints exposed. Connect from Claude Desktop or any MCP client. Power your other projects.
MCP ProtocolSpeak your task. Code runs as a real child process — not exec(). Streams stdout live. Kill any script instantly. Real isolation, real safety.
Voice + IsolationAll tools available to the agent automatically. No configuration needed. Just describe your task.
Every task goes through 6 stages. Each stage runs a different LLM for the right job.
Start the embedded MCP server from the app sidebar. All 21 tools become available to Claude Desktop, your own LLMs, or any MCP client.
# Connect from Claude Desktop # Add to mcp_config.json: { "npm_agent": { "type": "tcp", "host": "localhost", "port": 7799 } } # Or call directly: import socket, json def call_tool(tool, params): s = socket.socket() s.connect(("localhost", 7799)) s.sendall(json.dumps({ "tool": tool, "params": params }).encode() + b"\n") return json.loads(s.recv(65536)) # Example: send an email result = call_tool("email_send", { "to": "teacher@school.edu", "subject": "Attendance Report", "body": "Today's report attached." })
No API keys. No local GPU. No Ollama setup. Unzip and run.
Download ZIP
Unzip folder
Run .exe
Start automating