Eliminate hallucinated imports, broken auth, and leaked API keys. Auterix compiles deterministic architectural rules, SHA-256 integrity locks, and auto-detecting adapters across 21 leading AI coding assistants.
npx auterix@latest init
.ai/memory.md institutional context across all models
From codebase ingestion to autonomous CI pull request auditing, Auterix orchestrates an unbroken context barrier.
Auto-detects packages and distills Drizzle, Prisma, and SQL schemas to token-compact Markdown via extract-schema.
Maintains institutional memory in .ai/memory.md: decisions, architecture invariants, and anti-patterns persist across all tools via automated --ai-note git commit hooks.
Compiles unified native rulebooks for Cursor, Claude, Copilot, Windsurf, Devin & all 21 AI assistants alongside modular role personas in .ai/roles/.
Generates deterministic cryptographic lockfile. Any unreviewed drift immediately halts execution and alerts developers.
Headless GitHub Action audits PRs with rich Markdown compliance tables, while npx auterix doctor scores project AI readiness from 0–100%.
Whether dropping into a 5-year-old monolith or spinning up a multi-tenant SaaS, Auterix adapts instantly.
For established repositories & teams
Non-invasive 30-second drop-in. Zero rewrites to your current code. Auterix parses your existing stack and generates native rule files across all 21 tools.
package.json or requirements.txt in the Studio
auterix-rules.zip and extract to repo root
For new products, SaaS & prototypes
Start with bank-grade architecture. 5 complete runnable production starter codebases with pre-configured auth, PostgreSQL RLS policies, and automated AI pre-commit hooks.
For multi-dev teams & client delivery
Direct GitHub private repository collaborator invitations (auterix-pro), continuous git pull updates, CI PR compliance bots, and unlimited client delivery rights.
git pull updates as new AI coding tools launch
Configure your architectural rules once. Auterix compiles, verifies, and exports them across all 21 tools with 0ms in-browser latency.
Pick your stack, or drop your project manifest to auto-detect:
package.json, requirements.txt, or lockfileSelect your tools (configs are synchronized automatically):
.cursor/rules/workflow.mdc
// Generating unified AI instructions...
Auterix is engineered as a clean two-repository architecture so you get complete open-source transparency for daily tooling and bank-grade starter suites for commercial applications.
The open-source context protocol, zero-dependency CLI engine, universal 21-tool adapters, and in-browser Web Studio.
init, check, inspect, plan, apply, doctor).ai/memory.md), --ai-note hooks & Schema Extractornpx auterix doctor) — 8-check 0–100% diagnostic.ai/roles/) — Architect, Engineer, Reviewer, Verifieraction.yml) with rich Markdown compliance reports5 Complete runnable full-stack applications, 11 architectural blueprints, PostgreSQL RLS migrations, and automated CI bots.
pre-commit-guard.sh) to prevent secret leaks & errorsgit pull updatesCompare how an unconstrained AI writes code versus an AI constrained by Auterix rules.
// Client Component ('use client')
import { createClient } from '@supabase/supabase-js';
// ❌ VULNERABILITY 1: Secret service role key leaked on browser bundle!
const supabase = createClient(
process.env.NEXT_PUBLIC_SUPABASE_URL,
process.env.SUPABASE_SERVICE_ROLE_KEY // LEAKED TO CLIENT!
);
export default function UpdateUser() {
async function handleSave(data) {
// ❌ VULNERABILITY 2: No Zod input validation!
// ❌ VULNERABILITY 3: Bypasses multi-tenant RLS check!
await supabase.from('users').update(data).eq('id', data.id);
}
// ...
}
// Server Action ('use server')
import { createServerClient } from '@/lib/supabase/server';
import { UpdateUserSchema } from '@/lib/schemas/user';
import { requireSession } from '@/lib/auth/guards';
export async function updateUserAction(rawData: unknown) {
// ✅ 1. Enforce authenticated session & tenant boundary
const session = await requireSession();
// ✅ 2. Strict Zod schema parsing (blocks injection)
const data = UpdateUserSchema.parse(rawData);
// ✅ 3. Enforces multi-tenant RLS query with server credentials
const supabase = createServerClient();
return await supabase
.from('users')
.update(data)
.eq('id', session.user.id)
.eq('tenant_id', session.tenant_id); // RLS PROTECTED
}
Auterix rule files configure the system prompt and instructions of your AI assistant automatically.
Place the generated .cursor/rules/workflow.mdc into your project's root folder.
Cursor automatically indexes MDC rules into its agent memory. No manual configuration needed.
Open Composer (Cmd+I or Ctrl+I) and start building with senior constraints.
Auterix compiles your project guidelines, commands, and boundaries into root CLAUDE.md.
Run claude in your terminal. Claude reads CLAUDE.md into its persistent memory.
Instruct Claude to implement features or run audits without hallucinating wrong patterns.
Place .agents/rules/workflow.md and .agents/skills/ in your repository root.
Google Antigravity automatically registers workspace skills and subagents with full tool access.
Run complex refactors and verification plans backed by deterministic SHA-256 rules.
Save .github/copilot-instructions.md in your GitHub repository root.
GitHub Copilot Chat automatically incorporates these instructions for all team members.
Every suggestion and code completion strictly adheres to your architectural boundaries.
Copy and paste these battle-tested prompts directly into Cursor, Claude, or Copilot chat:
Read the project instructions in the root context file (e.g. .cursorrules or CLAUDE.md). Confirm that you understand our strict architectural boundaries, file placement conventions, and validation rules. Then summarize the 3 most critical rules before writing any code.
Implement [feature description] following our project architectural standards strictly. Ensure all inputs are validated with Zod schemas, server-only code is separated from client components, and appropriate error boundaries are included. Do not bypass existing type definitions.
Audit the current working directory for security invariants: (1) Check that no service role or secret keys are imported in client components, (2) Verify all database queries enforce multi-tenant RLS, and (3) Confirm that all Server Actions validate session authentication before mutating data.
Generate comprehensive unit and integration tests for [file path]. Cover happy paths, malformed payloads, unauthorized access attempts, and edge cases. Follow our testing conventions and ensure all mocks respect domain type invariants.
Open-source core is 100% free forever. Pay once for commercial starter suites & continuous GitHub sync.
Multi-agent context compiler & shared memory protocol for any codebase.
.ai/memory.md) & --ai-note hooksnpx auterix doctor).ai/roles/)5 Production starter codebases, 11 blueprints, RLS, and pre-commit AI hooks.
pre-commit-guard.sh)Private GitHub repository access, turnkey CI PR bot, and white-label rights.
auterix-proCompare capabilities across the Free Open-Source Protocol, Pro Developer Suite, and Agency & Team packages.
| Capability / Deliverable | Community (Free) | Pro Developer ($14) | Agency & Teams ($39) |
|---|---|---|---|
| Universal AI Tool Adapters Cursor, Claude Code, Copilot, Windsurf, Devin, Antigravity + 15 more | ✔ 21 Tools | ✔ 21 Tools | ✔ 21 Tools |
Cross-Agent Shared Memory
.ai/memory.md persistent context, decisions, and anti-patterns
|
✔ Included | ✔ Included | ✔ Included |
| Runnable Production Starters Next.js 15, FastAPI, Node Fastify, Expo Mobile, Cloudflare Workers | — | 5 Full Apps | 5 Full Apps |
| Component Blueprints & RLS 11 security blueprints, PostgreSQL RLS migrations, pre-commit AI hooks | — | ✔ 11 Blueprints | ✔ 11 Blueprints |
| Automated GitHub Actions PR Bot Turnkey CI audit bot halting non-compliant AI-generated code | — | — | Turnkey CI Bot |
| Upstream Sync & Rights Commercial usage rights and distribution model | MIT (Own Apps) | Commercial (Own Apps) | Unlimited Clients + Git Sync |
| 🧠 1. Universal AI Protocol & Context Engine | |||
Token-Optimized Schema Extractor
extract-schema parses Drizzle, Prisma, and SQL schemas
|
✔ Included | ✔ Included | ✔ Included |
| Deterministic SHA-256 Hash Lock Content-addressed verification engine preventing unreviewed rule drift | ✔ Included | ✔ Included | ✔ Included |
Headless GitHub Action Audit
action.yml checks PR compliance in <1.5s at $0.00 compute cost
|
✔ Included | ✔ Included | ✔ Included |
| Official VS Code Extension Live status bar telemetry & drift alerts | ✔ Included | ✔ Included | ✔ Included |
Interactive Terminal TUI & CLI
Zero-dependency ANSI setup wizard (npx auterix) & headless commands
|
✔ Included | ✔ Included | ✔ Included |
AI Readiness Scorecard
npx auterix doctor — 8-check diagnostic producing a 0–100% safety score
|
✔ Included | ✔ Included | ✔ Included |
Modular Role Personas
.ai/roles/ — Architect, Engineer, Reviewer & Verifier persona files
|
✔ 4 Base Roles | 4 + 6 Specialized | 4 + 6 Specialized |
Automated Git-Hook Memory Ingestion
Post-commit hook captures --ai-note decisions into .ai/memory.md automatically
|
✔ Included | ✔ Included | ✔ Included |
| Rich CI Compliance Reports Markdown tables with SHA-256 parity matrix & secret scan in GitHub Step Summary | ✔ Basic Report | ✔ Basic Report | Full PR Bot + Report |
| Web Studio Cockpit Accessible in-browser rule compiler (0ms WASM, zero server transmission) | ✔ Included | Full Pro Unlock | Full Pro Unlock |
| 🚀 2. Complete Runnable Production Scaffolds | |||
| Next.js 15 App Router + Supabase RLS Server Actions, Zod validation, async cookies & hardware-isolated SQL RLS | — | Full Runnable App | Full Runnable App |
| Python FastAPI + Async SQLAlchemy 2.0 Asyncpg engine, declarative UUID models, Pydantic v2 & JWT auth | — | Full Runnable App | Full Runnable App |
| Enterprise Node.js 22 + Fastify 5 Clean architecture, Prisma ORM & Kubernetes health/readiness probes | — | Full Runnable App | Full Runnable App |
| React Native & Expo 51+ Mobile File-system Expo Router & hardware-backed SecureStore token encryption | — | Full Runnable App | Full Runnable App |
| Cloudflare Workers & Hono Edge API Sub-10ms global edge API with Cloudflare D1 SQL and KV bindings | — | Full Runnable App | Full Runnable App |
| 🛡️ 3. Architectural Blueprints & Security Guardrails | |||
| 11 Hardened Component Blueprints RAG pipeline, session guard, Stripe webhooks, Drizzle+pgvector, Docker | — | ✔ 11 Blueprints | ✔ 11 Blueprints |
| Bank-Grade PostgreSQL RLS Migrations Multi-tenant row-level security isolating tenant data | — | ✔ Included | ✔ Included |
Local Pre-Commit AI Guardrail Hook
pre-commit-guard.sh blocks secret leaks and syntax errors
|
— | ✔ Included | ✔ Included |
Standalone Offline Desktop Studio
Offline HTML GUI & Auterix-Pro-Production-Suite.zip bundle
|
— | ✔ Included | ✔ Included |
| 🤖 4. CI Automation, Rights & Upstream Delivery | |||
| White-Label Rights Remove Auterix branding in client deliverables and handoffs | — | — | Full White-Label |
| Support Channel Issue resolution and assistance | Public Discussions | Standard Support | Priority GitHub |
AI coding assistants release new features monthly. Run git pull upstream main to receive instant updates, new adapter configs, and fresh production stacks.
Deploy our turnkey CI workflow on your team's repos. The bot automatically reviews PRs, flags hallucinated imports, and halts merges that violate architectural boundaries.
Use all 5 production starter codebases across unlimited commercial client projects with zero per-seat licensing fees.
Everything you need to know about the Auterix context engine, open-source core, and Pro access.
Cursor, Claude, and Copilot are brilliant generative engines, but they lack persistent architectural context about your specific codebase. Without Auterix, they frequently hallucinate wrong package versions, leak API keys into client components, and write junior-level spaghetti code.
Auterix acts as an autonomous context orchestrator. It compiles deterministic rules, type boundaries, and security invariants into native rule files (.cursorrules, CLAUDE.md, .agents/) so your AI assistant behaves like a senior staff engineer on every single turn.
The Free Core is 100% free forever under the MIT License. There are no trials, no credit card requirements, and no feature gates on context generation. You can drop any project into the Web Studio or use the open-source CLI to compile rule files across all 21 supported AI tools indefinitely.
When you purchase Auterix Pro on Gumroad, you download Auterix-Pro-Production-Suite.zip. Click "Load Pro ZIP" in the top navigation or Studio header, and drop your ZIP file into the browser modal.
Auterix inspects the ZIP signatures 100% locally in your browser using JSZip. Your files are never uploaded to any server. Once verified, the Studio unlocks live previews and 1-click custom bundle downloads with production codebases included.
When you purchase the $39 Agency tier, provide your GitHub username at checkout. Our automated webhook immediately sends a collaborator invitation to SapanMozammel/auterix-pro.
You can clone the repository directly (git clone git@github.com:SapanMozammel/auterix-pro.git) and pull fresh updates whenever new AI tools or stack blueprints are released.
When switching between Claude Code, Cursor, Windsurf, or Copilot, each AI tool previously started from scratch without knowing previous decisions or bugs. Cross-Agent Shared Memory (.ai/memory.md) provides a unified institutional knowledge base where all models record architectural invariants, conventions, and anti-patterns with npx auterix memory.
With automated post-commit ingestion, simply add --ai-note architecture to any git commit message, and the decision is automatically captured into .ai/memory.md — no manual steps required.
Raw database schemas and ORM client files (like massive Prisma or Drizzle definitions) consume thousands of tokens when dumped into AI context. The extract-schema command distills table definitions, foreign keys, and indexes into ultra-compact, high-density Markdown that uses >70% fewer tokens while providing complete schema clarity.
Zero code transmission. Zero telemetry. Auterix is designed for bank-grade privacy. When you drop a package.json or ZIP into the Web Studio, all parsing, stack detection, and compilation occurs strictly in your browser's local memory via Web APIs and JSZip.