agentic_forge_core/lib.rs
1//! AgenticForge — Blueprint engine for complete project architecture.
2//!
3//! Creates complete project blueprints (all files, types, signatures, deps, tests)
4//! BEFORE any LLM code generation. Sister #11 "The Forge" in the Agentra Labs ecosystem.
5
6pub mod bridges;
7pub mod cache;
8pub mod engine;
9#[cfg(feature = "format")]
10pub mod format;
11pub mod index;
12pub mod inventions;
13pub mod metrics;
14pub mod query;
15pub mod security;
16pub mod storage;
17pub mod types;
18pub mod validation;
19
20pub use engine::{ForgeEngine, QueryEngine, WriteEngine};
21pub use types::{
22 BlueprintId, DependencyId, EntityId, FileId, ForgeError, ForgeId, ForgeResult, OperationId,
23 TestCaseId,
24};