feat: add main features
Agents for developpement added + frontend add + backend added. Git viewer created + agent and template creator + layout and project creator
This commit is contained in:
17
crates/application/src/template/mod.rs
Normal file
17
crates/application/src/template/mod.rs
Normal file
@ -0,0 +1,17 @@
|
||||
//! Template & synchronisation use cases (ARCHITECTURE §6, §8; L7).
|
||||
//!
|
||||
//! Templates are reusable agent contexts stored in the global IDE store, with a
|
||||
//! monotonic version. This module owns their CRUD, the template→agent
|
||||
//! instantiation, and the drift-detection / synchronisation flow that keeps
|
||||
//! `synchronized` agents in step with their template.
|
||||
|
||||
mod usecases;
|
||||
|
||||
pub use usecases::{
|
||||
AgentDrift, CreateAgentFromTemplate, CreateAgentFromTemplateInput,
|
||||
CreateAgentFromTemplateOutput, CreateTemplate, CreateTemplateInput, CreateTemplateOutput,
|
||||
DeleteTemplate, DeleteTemplateInput, DetectAgentDrift, DetectAgentDriftInput,
|
||||
DetectAgentDriftOutput, ListTemplates, ListTemplatesOutput, SyncAgentWithTemplate,
|
||||
SyncAgentWithTemplateInput, SyncAgentWithTemplateOutput, UpdateTemplate, UpdateTemplateInput,
|
||||
UpdateTemplateOutput,
|
||||
};
|
||||
Reference in New Issue
Block a user