cortex_runtime/compiler/mod.rs
1//! Web Compiler — transforms SiteMaps into typed APIs with auto-generated clients.
2//!
3//! The compiler analyzes a mapped website's structured data, infers typed data models,
4//! discovers relationships between models, compiles HTTP actions into typed methods,
5//! and generates client code in Python, TypeScript, OpenAPI, GraphQL, and MCP formats.
6
7pub mod actions;
8pub mod codegen;
9pub mod codegen_graphql;
10pub mod codegen_mcp;
11pub mod codegen_openapi;
12pub mod codegen_python;
13pub mod codegen_typescript;
14pub mod models;
15pub mod relationships;
16pub mod schema;
17pub mod unifier;