๐Ÿง  Dr. Q Agent ๐Ÿ›ก๏ธ 84 Compliance Rules โš›๏ธ Quantum Search ๐Ÿ”Œ 1,500+ MCP ๐Ÿ’ฐ Zero Cost

What We've Built

An AI-native IDE with compliance scanning, quantum code search, multi-agent team, and 38 integrated engineering skills. Everything runs on your machine. Free forever.

๐Ÿง Dr. Q Agent
๐Ÿ›ก๏ธ84 Compliance Rules
โš›๏ธQuantum Search
๐Ÿ”Œ1,500+ MCP
๐Ÿ’ฐZero Cost
๐Ÿ”’Sandbox
๐Ÿ“‹Audit Trail
๐Ÿ‘ฅ4-Agent Team
๐Ÿง Dr. Q Agent
๐Ÿ›ก๏ธ84 Compliance Rules
โš›๏ธQuantum Search
๐Ÿ”Œ1,500+ MCP
๐Ÿ’ฐZero Cost
๐Ÿ”’Sandbox
๐Ÿ“‹Audit Trail
๐Ÿ‘ฅ4-Agent Team
โ”Œโ”€ User โ†’ Dr. Q Agent โ†’ LLM โ”€โ”
โ”‚ โ†“ โ”‚
โ”‚ 17 Tools โ†’ Result โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ โ†“ โ”‚
โ””โ”€ Compliance Quantum Sandbox โ”€โ”˜
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
84 rules ยท 7 patterns ยท Docker

Architecture Overview

  • Monorepo with 4 packages: core, server, web, cli
  • Dr. Q agent uses iterative thinking-tool loop (max 30 iterations)
  • 5 AI providers: Ollama, OpenAI, Anthropic, MLX, GGUF
  • Fallback chain cascades through providers on failure
  • Server-Sent Events for real-time streaming execution
  • Docker sandbox with --network none, --read-only, 256MB limit
  • SHA-256 hash chain for tamper-proof audit trail
  • MIT licensed โ€” fork, modify, own it
84+
Compliance Rules
PCI, GDPR, SOC2, HIPAA, OWASP
17+
Agent Tools
Read, write, edit, bash, search
7
Quantum Patterns
SQL injection, secrets, loops
38
Engineering Skills
Superpowers + Addy Osmani

Key Features

Every feature is free, open-source, and runs on your machine.

๐Ÿง 

Dr. Q Agent

Tool-using AI agent with 17+ tools. Reads, writes, edits, debugs, and explains your code. Streaming execution in real-time.

Iterative loop
๐Ÿ›ก๏ธ

Compliance Scanner

84 rules across PCI-DSS, GDPR, SOC2, HIPAA, SOX, MiFID II. Scanned on every keystroke with inline editor decorations.

Real-time
โš›๏ธ

Quantum Code Search

Grover-inspired amplitude amplification. 16D feature vectors for each line. 7 security and bug patterns.

Grover algorithm
๐Ÿ‘ฅ

4-Agent Team

Architect โ†’ Developer โ†’ Reviewer โ†’ Deployer pipeline. Each role has restricted tools. Context passed forward.

Sequential pipeline
๐Ÿ”Œ

MCP Integrations

1,500+ MCP servers. Connect GitHub, Linear, Notion, Stripe, BigQuery instantly. Tool prefix system.

Model Context Protocol
๐Ÿ”’

Sandbox Isolation

Docker-based with --network none, --read-only, --cap-drop ALL. 256MB memory limit. 30s timeout.

gVisor ready
๐Ÿ“‹

Audit Trail

Tamper-proof SHA-256 hash chain. Every entry includes timestamp, actor, rule, previous hash. Chain verification.

Immutable
๐Ÿ’ฐ

Zero Cost

Free forever. MIT licensed. Connect free Groq (70B) or run offline with Ollama. No subscription, no catch.

Open core
๐Ÿ“ฆ

Plugin System

19 capability types, 15 lifecycle hooks, GitHub-hosted registry. Built-in: compliance, agent, MCP bridge plugins.

Extensible

From Idea to Deployment

Each agent is isolated with specialized tools. Zero cross-contamination.

๐Ÿง  Architect
โ†’
โšก Developer
โ†’
๐Ÿ›ก๏ธ Reviewer
โ†’
๐Ÿš€ Deployer

Code Samples

Real code showing how CodexSigma works.

Dr. Q AgentPython
from codexsigma import MrQ

# Spawn Dr. Q with sigma-v1
agent = MrQ.spawn(model="sigma-v1")

# Run a task with compliance
result = await agent.run(
    "build payment API",
    physics=True,
    tests=True
)
print(result.report)
# โœ“ 84 rules passed
Compliance ScanJavaScript
import { scanCode } from '@ide/core'

// Scan code for violations
const result = scanCode(
  code, fileName, language
)

console.log(result.summary)
// { critical: 0, high: 1, ... }

// Show inline decorations
result.issues.forEach(issue => {
  editor.deltaDecorations(issue)
})
Quantum SearchTypeScript
import { groverSearch } from '@ide/core'

// Find SQL injection patterns
const results = groverSearch(
  code, 'sql_injection'
)

// Amplitude amplification
for (const r of results) {
  console.log(r.score, r.line)
}
// Scores: 0.0 - 1.0
4-Agent TeamTypeScript
import { TeamOrchestrator } from '@ide/core'

// Create team with 4 agents
const team = new TeamOrchestrator()

// Each role gets restricted tools
const result = await team.execute({
  task: "build CRUD API",
  // Architect: explore only
  // Developer: write & test
  // Reviewer: scan & verify
  // Deployer: build & ship
})

5 AI Providers with Fallback

Configure once. CodexSigma automatically cascades through providers on failure.

๐Ÿฆ™

Ollama

Local, 100% offline

๐Ÿค–

OpenAI/Groq

Cloud, free 70B tier

๐Ÿ”ฎ

Anthropic

Claude Sonnet/Opus

๐ŸŽ

MLX

Apple Silicon native

โšก

GGUF

llama.cpp binaries

Every tool Dr. Q has

Each tool is registered, permission-aware, and categorized.

๐Ÿ“„readRead file contents
โœ๏ธwriteWrite file
๐Ÿ“editEdit file
๐Ÿ”globFind files
๐Ÿ”ŽgrepSearch content
๐Ÿ“‚lsList directory
โšกbashExecute command
๐Ÿ›ก๏ธcomplianceScan rules
โš›๏ธquantumSearch patterns
๐Ÿ“‹auditQuery trail
๐Ÿง skillsLoad skill
๐Ÿ”ŒmcpCall MCP tool
๐ŸŒcontextGet context
โœ…finishComplete task
๐Ÿ“–explainExplain code
๐Ÿ“šdocsGenerate docs

Start Building with CodexSigma

One command. No signup. No cost. 84 compliance rules. 17 tools. 5 AI providers. All free.

Get Started View on GitHub