1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! # Terraphim Agent Registry
//!
//! Knowledge graph-based agent registry for intelligent agent discovery and capability matching.
//!
//! This crate provides a sophisticated agent registry that leverages Terraphim's knowledge graph
//! infrastructure to enable intelligent agent discovery, capability matching, and role-based
//! specialization. It integrates with the existing automata and role graph systems to provide
//! context-aware agent management.
//!
//! ## Core Features
//!
//! - **Knowledge Graph Integration**: Uses existing `extract_paragraphs_from_automata` and
//! `is_all_terms_connected_by_path` for intelligent agent discovery
//! - **Role-Based Specialization**: Leverages `terraphim_rolegraph` for agent role management
//! - **Capability Matching**: Semantic matching of agent capabilities to task requirements
//! - **Agent Metadata**: Rich metadata storage with knowledge graph context
//! - **Dynamic Discovery**: Real-time agent discovery based on evolving requirements
//! - **Performance Optimization**: Efficient indexing and caching for fast lookups
// Re-export core types
pub use ;
pub use ;
// Define GenAgentResult locally since we removed gen_agent dependency
pub type GenAgentResult<T> = ;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
/// Result type for agent registry operations
pub type RegistryResult<T> = ;