Production-Ready Framework

AI-First TypeScript Framework
for Enterprise Applications

Build modular, scalable systems with DDD, CQRS, and hexagonal architecture. Type-safe development with AI agents as first-class citizens.

Type-Safe
Enterprise Patterns
Production Ready
⚠️ Pre-release: API may change until version 1.0.0

Get Started in Minutes

Install Stratix CLI and scaffold your enterprise application

Terminal
# Install CLI
npm install -g @stratix/cli

# Create project with single context structure
stratix new product-api --structure single-context

# Install dependencies
cd product-api
npm i
# Start developing
npm run dev

Accelerate Development with AI

Stratix Copilot: AI-powered coding assistant for faster, smarter development

Context-Aware AI

Understands your project structure and Stratix patterns

Smart Code Generation

Generate entities, commands, queries, and value objects instantly

RAG-Enhanced

Retrieves relevant documentation for accurate responses

VS Code Copilot Chat
# Generate a complete entity
@stratix /entity Product with name, price, and category

# Generate CQRS command with handler
@stratix /command CreateProduct with productId, name, price

# Generate query with handler
@stratix /query GetProductById with productId

# Ask about Stratix patterns
@stratix how do I implement a repository with PostgreSQL?