Skip to main content

cortex_runtime/
lib.rs

1// Copyright 2026 Cortex Contributors
2// SPDX-License-Identifier: Apache-2.0
3
4//! Cortex runtime library — rapid web cartographer for AI agents.
5//!
6//! This library crate exposes the core modules for integration testing.
7
8#![allow(
9    dead_code,
10    unused_imports,
11    clippy::new_without_default,
12    clippy::should_implement_trait
13)]
14
15pub mod acquisition;
16pub mod audit;
17pub mod cartography;
18pub mod cli;
19pub mod collective;
20pub mod compiler;
21pub mod events;
22pub mod extraction;
23pub mod intelligence;
24pub mod live;
25pub mod map;
26pub mod navigation;
27pub mod pool;
28pub mod progress;
29pub mod protocol;
30pub mod renderer;
31pub mod rest;
32pub mod server;
33pub mod stealth;
34pub mod temporal;
35pub mod trust;
36pub mod wql;