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
//! # mempill
//!
//! Temporally-correct memory for AI agents.
//!
//! This crate is a thin facade that re-exports the public API of
//! [`mempill-core`](https://docs.rs/mempill-core) and makes the persistence
//! adapters available behind feature flags so a downstream user only needs:
//!
//! ```toml
//! # Cargo.toml
//! [dependencies]
//! mempill = "0.2" # default features = ["sqlite"]
//! # or:
//! mempill = { version = "0.2", features = ["postgres"] }
//! ```
//!
//! ## Quick start (SQLite, default)
//!
//! Most code only needs two calls — [`remember`] and [`recall`] — with sane defaults:
//!
//! ```rust,no_run
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! use mempill::{open_default_in_memory, remember, recall, RememberOptions};
//!
//! let engine = open_default_in_memory()?;
//!
//! // Remember a fact — 3 args + sane defaults. Dates are lenient: "2020",
//! // "2020-03", "2020-03-01", or full RFC3339 all work.
//! remember(&engine, "my-agent", "user", "city", "Berlin",
//! RememberOptions::default().valid_from("2020")).await?;
//!
//! // Two conflicting facts are NEVER silently overwritten — they surface as Contested.
//! remember(&engine, "my-agent", "acme:ceo", "held_by", "Alice", RememberOptions::default()).await?;
//! remember(&engine, "my-agent", "acme:ceo", "held_by", "Bob", RememberOptions::default()).await?;
//!
//! // Recall — a flat result; Contested is explicit (can't be mistaken for "no memory").
//! let r = recall(&engine, "my-agent", "acme:ceo", "held_by").await?;
//! if r.is_contested() {
//! println!("contested: {:?}", r.candidates);
//! } else {
//! println!("ceo = {:?}", r.as_str());
//! }
//! # Ok(())
//! # }
//! ```
//!
//! Need full control — provenance channels, cardinality, criticality, explicit confidence,
//! or derivation lineage? Drop to the full claim API ([`engine::IngestClaimRequest`] /
//! [`engine::QueryMemoryRequest`]); see the type reference. The ergonomic tier is additive — the
//! rigorous core is unchanged.
//!
//! ## Feature flags
//!
//! | Feature | Default | Description |
//! |---------|---------|-------------|
//! | `sqlite` | yes | Enables [`mempill_sqlite`] — embedded SQLite adapter (topology-a) |
//! | `postgres` | no | Enables `mempill_postgres` — shared PostgreSQL adapter (topology-b) |
//!
//! Both features can be enabled simultaneously (e.g., for tests that verify both backends).
//!
//! ## Architecture
//!
//! The dependency direction is one-way:
//!
//! ```text
//! mempill (this facade)
//! ├── mempill-core (engine, port traits, use-cases)
//! ├── mempill-sqlite (feature = "sqlite")
//! └── mempill-postgres (feature = "postgres")
//! ```
//!
//! The engine core has zero dependency on either adapter crate.
// ── Tier-1 ergonomic modules ──────────────────────────────────────────────────
// ── Tier-1 surface re-exports (kept at crate root — quickstarts stay valid) ──
pub use ;
// ── Power-user modules ────────────────────────────────────────────────────────
/// Domain value types shared across the mempill engine.
///
/// Import from here when you need the deep type surface: provenance channels,
/// adjudication request/response, ledger entries, claim edges, validity assertions,
/// and so on. Most consumers only need the ergonomic tier at the crate root.
///
/// # Example
///
/// ```rust
/// use mempill::types::{Disposition, ProvenanceLabel, ExternalKind};
/// ```
/// Core engine surface for power users and adapter authors.
///
/// Contains the `EngineHandle`, configuration, port traits, NoOp stubs, and use-case
/// request/response DTOs. Most consumers only need the ergonomic tier at the crate root.
///
/// # Example
///
/// ```rust,no_run
/// use mempill::engine::{EngineConfig, NoOpOracle, NoOpVector};
/// ```
// ── Flat re-exports of commonly-needed types ──────────────────────────────────
//
// Keep the most-used power-user types at the crate root for ergonomic imports
// without requiring `use mempill::types::*`. Power-user-only types live in
// `mempill::types` and `mempill::engine` modules.
pub use ;
pub use ;
// ── Adapter re-exports (behind feature flags) ─────────────────────────────────
/// SQLite persistence adapter (`feature = "sqlite"`).
///
/// Use [`sqlite::open_default_in_memory`] or [`sqlite::open_default`] to open an engine.
/// PostgreSQL persistence adapter (`feature = "postgres"`).
///
/// Use [`postgres::open_postgres`] to open an engine connected to PostgreSQL.
/// Note: NoTls only in v0.2.
// ── Convenience top-level functions ──────────────────────────────────────────
/// Open an in-memory [`sqlite::DefaultEngine`].
///
/// Convenience shortcut for `mempill::sqlite::open_default_in_memory()`.
/// Requires the `sqlite` feature (enabled by default).
///
/// # Errors
/// Returns [`sqlite::SqliteStoreError`] if the connection cannot be opened.
///
/// # Example
///
/// ```rust
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let engine = mempill::open_default_in_memory()?;
/// # Ok(())
/// # }
/// ```
/// Open a file-backed [`sqlite::DefaultEngine`] at the given path.
///
/// Convenience shortcut for `mempill::sqlite::open_default(path)`.
/// Requires the `sqlite` feature (enabled by default).
///
/// # Errors
/// Returns [`sqlite::SqliteStoreError`] if the connection cannot be opened or migrations fail.