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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
// Copyright 2024-2026 Reflective Labs
// SPDX-License-Identifier: MIT
//! # Capability Boundary Traits
//!
//! This module defines the abstraction layer for external capabilities that
//! `converge-core` depends on but does not implement. These traits define
//! the interface contract — implementations belong in capability crates like
//! `converge-runtime`.
//!
//! ## Design Philosophy
//!
//! - **converge-core defines interfaces only**: No implementation of these
//! traits exists in this crate. This keeps the core dependency-free and
//! focused on correctness axioms.
//!
//! - **Capability crates provide implementations**: `converge-runtime` or
//! similar crates implement these traits using appropriate libraries
//! (e.g., rayon for Executor, rand for Randomness, sha2/hex for Fingerprint).
//!
//! - **Thread safety required**: All traits require `Send + Sync` bounds
//! to ensure safe use in concurrent contexts.
//!
//! ## Traits
//!
//! ### Execution & Infrastructure
//! - [`Executor`]: Abstracts parallel/sequential execution strategy
//! - [`Randomness`]: Abstracts random number generation
//! - [`Fingerprint`]: Abstracts cryptographic hashing and hex encoding
//!
//! ### Error Infrastructure
//! - [`CapabilityError`]: Shared error classification interface
//! - [`ErrorCategory`]: Error category enumeration
//!
//! ### LLM Capabilities
//! - [`ChatBackend`]: Chat completion (GAT async pattern)
//! - [`EmbedBackend`]: Embedding generation (GAT async pattern)
//! - [`LlmBackend`]: Umbrella trait combining chat + embed
//! - [`DynChatBackend`]: Dyn-safe chat wrapper for runtime polymorphism
//! - [`DynEmbedBackend`]: Dyn-safe embed wrapper for runtime polymorphism
//! - [`LlmError`]: LLM operation errors implementing [`CapabilityError`]
//!
//! ### Recall (Semantic Memory) Capabilities
//! - [`RecallReader`]: Query-only read access (validation, audit, replay)
//! - [`RecallWriter`]: Store/delete mutation access (ingestion pipelines)
//! - [`Recall`]: Umbrella trait combining RecallReader + RecallWriter
//! - [`DynRecallReader`]: Dyn-safe recall reader for runtime polymorphism
//! - [`RecallError`]: Recall errors implementing [`CapabilityError`]
//!
//! ### ExperienceStore (Event Sourcing) Capabilities
//! - [`ExperienceAppender`]: Append-only event storage (governance boundary)
//! - [`ExperienceReplayer`]: Streaming replay access (audit, debugging)
//! - [`ContextStore`]: Durable context snapshots across runs
//! - [`DynExperienceAppender`]: Dyn-safe appender for runtime polymorphism
//! - [`DynExperienceReplayer`]: Dyn-safe replayer for runtime polymorphism
//! - [`DynContextStore`]: Dyn-safe context store for runtime polymorphism
//! - [`StoreError`]: Store errors implementing [`CapabilityError`]
//!
//! ### Validation Capabilities (Type-State Aware)
//! - [`Validator`]: Validates `Proposal<Draft>` producing `ValidationReport`
//! - [`DynValidator`]: Dyn-safe validator for runtime polymorphism
//! - [`ValidatorError`]: Validation errors implementing [`CapabilityError`]
//!
//! ### Promotion Capabilities (Type-State Aware)
//! - [`Promoter`]: Promotes `Proposal<Validated>` to `Fact`
//! - [`DynPromoter`]: Dyn-safe promoter for runtime polymorphism
//! - [`PromoterError`]: Promotion errors implementing [`CapabilityError`]
//! - [`PromotionContext`]: Context for promotion operations
//!
//! # Design Tenets Alignment
//!
//! This module directly supports these tenets from [`crate`]:
//!
//! | Tenet | How This Module Supports It |
//! |-------|----------------------------|
//! | **Agents Suggest, Engine Decides** | [`Validator`] and [`Promoter`] are the decision boundary |
//! | **No Hidden Work** | All trait operations are explicit, no background effects |
//! | **Purity Declaration** | Traits only; implementations belong in capability crates |
//! | **Transparent Determinism** | [`Randomness`] abstracted for deterministic testing |
//!
//! # Cross-Module References
//!
//! - **Types**: [`Validator`] validates [`crate::types::Proposal`], [`Promoter`] creates [`crate::types::Fact`]
//! - **Gates**: [`crate::gates::PromotionGate`] uses these traits for validation/promotion lifecycle
// ============================================================================
// Submodules
// ============================================================================
// ============================================================================
// Re-exports
// ============================================================================
// Error infrastructure
pub use ;
// LLM capability traits
pub use ;
// Recall (semantic memory) capability traits
pub use ;
// ExperienceStore (event sourcing) capability traits
pub use ;
// Validation capability traits
pub use ;
// Promotion capability traits
pub use ;
// ============================================================================
// Inline Traits (Infrastructure)
// ============================================================================
use fmt;
/// Error type for fingerprint operations.
/// Abstracts parallel or sequential execution strategy.
///
/// This trait replaces direct usage of rayon's parallel iterators. By abstracting
/// the execution strategy, `converge-core` can remain dependency-free while
/// allowing runtime crates to provide optimized parallel implementations.
///
/// # Thread Safety
///
/// Implementations must be `Send + Sync` to allow sharing across threads.
///
/// # Example Implementation
///
/// ```ignore
/// // In converge-runtime:
/// use rayon::prelude::*;
///
/// pub struct RayonExecutor;
///
/// impl Executor for RayonExecutor {
/// fn execute_parallel<T, F, R>(&self, items: &[T], f: F) -> Vec<R>
/// where
/// T: Sync,
/// F: Fn(&T) -> R + Send + Sync,
/// R: Send,
/// {
/// items.par_iter().map(f).collect()
/// }
/// }
/// ```