sqlite-graphrag 1.2.1

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 27 AI agents — one self-contained ~19 MiB Rust binary, zero daemon. Never re-explain your codebase again. Hybrid retrieval (FTS5 BM25 + cosine similarity + multi-hop graph traversal) surfaces the right memory in milliseconds. Embedding and entity enrichment run as parallel REST calls against your cloud LLM — no fragile headless subprocesses, no ONNX runtime, no model downloads. Soft-delete with full version history, transactional atomic writes, BLAKE3-tracked mutations. OAuth-only: raw API keys ABORT the spawn.
Documentation
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
//! Queue claim/failure helpers (Wave C1).

use crate::errors::AppError;

/// Classifies an enrich item failure into a retry/dead-letter outcome.
///
/// This is the FALLBACK classifier: it is only consulted when the failure
/// did not already carry a typed [`crate::retry::AttemptOutcome`] computed at
/// its origin (see [`record_item_failure_typed`], fed by
/// [`crate::commands::enrich::extraction::take_last_openrouter_failure`] for
/// OpenRouter chat/embedding calls). Classification is TYPED by `AppError`
/// variant only — NEVER by matching the formatted message — per
/// `rules_rust_retry_com_backoff.md` ("NUNCA usar string matching em
/// mensagens de erro").
pub(super) fn classify_enrich_outcome(e: &AppError) -> crate::retry::AttemptOutcome {
    use crate::retry::AttemptOutcome;
    match e {
        AppError::RateLimited { .. } | AppError::Timeout { .. } | AppError::DbBusy(_) => {
            AttemptOutcome::Transient
        }
        // GAP-SG-78: a referenced entity that is not yet materialized is a
        // TRANSITORY absence — a later enrich pass creates the entity — so the
        // item is rescheduled, not dead-lettered on the first miss. Matched on
        // the typed variant, never a message substring (rules_rust_retry: NUNCA
        // string matching). The `--max-attempts` floor (default 8) still ends
        // the item if the entity never materializes, mirroring the `Embedding`
        // floor below.
        AppError::EntityNotYetMaterialized { .. } => AttemptOutcome::Transient,
        // GAP-SG-09: errors that are genuinely PERMANENT for this item and must
        // dead-letter immediately (retrying cannot help): a structured provider
        // rejection (context-length overflow / refusal carried as ProviderError),
        // or a MEMORY that no longer exists (deleted or renamed between scan and
        // processing). Entity absence is handled above as transitory, NOT here.
        AppError::ProviderError { .. }
        | AppError::NotFound(_)
        | AppError::MemoryNotFound { .. }
        | AppError::MemoryNotFoundById { .. } => AttemptOutcome::HardFailure,
        // GAP-SG-76: SQLITE_BUSY/LOCKED is a lock-contention hiccup between the
        // queue writer and a concurrent claim — retry it; any other database
        // error (constraint violation, corruption, I/O) is permanent.
        AppError::Database(_) => {
            if crate::storage::utils::is_sqlite_busy(e) {
                AttemptOutcome::Transient
            } else {
                AttemptOutcome::HardFailure
            }
        }
        // GAP-SG-73: safe floor for the `re-embed` operation. `AppError::Embedding`
        // reaches here only via `embed_with_fallback`'s backend-chain resolution
        // (`crate::embedder`), which discards the origin-typed
        // `EmbedError::retry_class` through `From<EmbedError> for AppError` before
        // the error surfaces to the queue. Extracting the precise verdict would
        // require bypassing the fallback chain to call the OpenRouter embedding
        // client directly — out of scope here (touches `embedder.rs`, which is
        // off-limits, and removes the multi-backend fallback safety net).
        // Transient is the conservative choice: a persistently permanent failure
        // still terminates via `--max-attempts` instead of retrying forever.
        AppError::Embedding(_) => AttemptOutcome::Transient,
        // Every other variant — including `Validation` without an
        // origin-typed retry verdict attached — is treated as permanent.
        // Previously this branch inspected the formatted message for
        // substrings like "json" / "missing '" to guess at transience; that
        // guesswork is now unnecessary because the OpenRouter chat path
        // (the project's only supported enrich mode) attaches its retry
        // verdict directly via `ChatError::retry_class`, computed at the
        // exact HTTP status / provider code in `chat_api.rs`, and
        // `record_item_failure_typed` consumes it BEFORE ever falling back
        // to this classifier.
        _ => AttemptOutcome::HardFailure,
    }
}

/// Applies a failure outcome to a single queue row. Shared by the parallel
/// worker and the serial loop (DRY). A `HardFailure`, or a transient failure
/// whose attempt count reached `max_attempts`, lands in the dead-letter status
/// (`status='dead'`) so it is never re-selected. A transient failure below the
/// cap is rescheduled to `pending` with an exponential-backoff `next_retry_at`.
/// Returns the [`crate::retry::AttemptOutcome`] so the caller can feed the
/// existing circuit breaker.
///
/// GAP-SG-73: delegates to [`record_item_failure_typed`] with the outcome
/// computed by the untyped fallback classifier and no diagnostics — the
/// entry point for callers that only have a bare `&AppError` (subprocess
/// providers, persistence failures).
pub(super) fn record_item_failure(
    queue_conn: &rusqlite::Connection,
    queue_id: i64,
    attempt: i64,
    max_attempts: u32,
    err: &AppError,
) -> crate::retry::AttemptOutcome {
    let outcome = classify_enrich_outcome(err);
    let err_str = format!("{err}");
    record_item_failure_typed(
        queue_conn,
        queue_id,
        attempt,
        max_attempts,
        outcome,
        &err_str,
        None,
        None,
        None,
    )
}

/// GAP-SG-72/73: applies a failure outcome to a single queue row using an
/// [`crate::retry::AttemptOutcome`] the caller ALREADY computed at the
/// failure's origin (e.g. `ChatError::retry_class` from an OpenRouter chat
/// call), plus whatever truncation diagnostics (`finish_reason` and token
/// counts) were available. This is the precise counterpart to
/// [`record_item_failure`], which falls back to the untyped
/// [`classify_enrich_outcome`] classifier when no origin-typed verdict
/// exists. Both share this single write path (DRY).
#[allow(clippy::too_many_arguments)]
pub(super) fn record_item_failure_typed(
    queue_conn: &rusqlite::Connection,
    queue_id: i64,
    attempt: i64,
    max_attempts: u32,
    outcome: crate::retry::AttemptOutcome,
    err_str: &str,
    finish_reason: Option<&str>,
    input_tokens: Option<i64>,
    output_tokens: Option<i64>,
) -> crate::retry::AttemptOutcome {
    use crate::retry::AttemptOutcome;
    let error_class = match outcome {
        AttemptOutcome::Transient => "transient",
        AttemptOutcome::HardFailure => "permanent",
        AttemptOutcome::Success => "success",
    };

    let terminal = matches!(outcome, AttemptOutcome::HardFailure) || attempt >= max_attempts as i64;
    if terminal {
        let _ = queue_conn.execute(
            "UPDATE queue SET status='dead', error=?1, error_class=?2, done_at=datetime('now'), \
             finish_reason=?3, input_tokens=?4, output_tokens=?5 WHERE id=?6",
            rusqlite::params![
                err_str,
                error_class,
                finish_reason,
                input_tokens,
                output_tokens,
                queue_id
            ],
        );
    } else {
        let delay = crate::retry::compute_delay(
            &crate::retry::RetryConfig::llm_rate_limit(),
            attempt.max(0) as u32,
        );
        let secs = delay.as_secs().max(1);
        let modifier = format!("+{secs} seconds");
        let _ = queue_conn.execute(
            "UPDATE queue SET status='pending', error=?1, error_class=?2, next_retry_at=datetime('now', ?3), \
             finish_reason=?4, input_tokens=?5, output_tokens=?6 WHERE id=?7",
            rusqlite::params![
                err_str,
                error_class,
                modifier,
                finish_reason,
                input_tokens,
                output_tokens,
                queue_id
            ],
        );
    }
    outcome
}

/// GAP-SG-76: outcome of claiming the next pending queue row. Distinguishes
/// a genuinely empty backlog (`QueryReturnedNoRows`) from lock contention
/// (`SQLITE_BUSY`/`SQLITE_LOCKED`) so the caller retries briefly on the
/// latter instead of breaking out of the drain loop early. Both the serial
/// loop and the parallel worker loop share this (DRY) — previously each
/// collapsed every `query_row` error into `.ok()`, silently treating a busy
/// database the same as an empty queue.
///
/// GAP-CLI-QISO-01/02: claim is scoped to a single enrich `operation` so a
/// memory-bindings drain can never claim an entity-descriptions or
/// entity-connect row (cross-op poison → false "memory not found" dead).
pub(super) enum DequeueOutcome {
    Claimed(ClaimedRow),
    Empty,
}

/// One queue row claimed for processing (GAP-CLI-QISO-02).
#[derive(Debug, Clone)]
pub(super) struct ClaimedRow {
    pub id: i64,
    pub item_key: String,
    pub item_type: String,
    pub operation: String,
    pub attempt: i64,
}

/// Defense-in-depth after claim (GAP-CLI-QISO-03). Strict SQL already filters
/// by operation; this rejects wrong item_type / key shape before the handler.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(super) enum ClaimCheck {
    Ok,
    RequeueWrongOp,
    SkipWrongType { reason: String },
}

/// Return true when `item_key` is not a plain memory name (pair/entity/chunk).
pub(super) fn is_non_memory_key_shape(item_key: &str) -> bool {
    item_key.starts_with("pair:")
        || item_key.starts_with("entity:")
        || item_key.starts_with("chunk:")
}

/// Validate claimed row against the current CLI operation and expected type.
pub(super) fn validate_claim(
    row: &ClaimedRow,
    current_op: &str,
    expected_item_type: &str,
) -> ClaimCheck {
    if row.operation != current_op {
        return ClaimCheck::RequeueWrongOp;
    }
    // Re-embed may use entity:/chunk: prefixes; allow those types for ReEmbed.
    if current_op == "ReEmbed" {
        return ClaimCheck::Ok;
    }
    if expected_item_type == "memory" && is_non_memory_key_shape(&row.item_key) {
        return ClaimCheck::SkipWrongType {
            reason: format!(
                "wrong_key_shape_for_operation:{current_op}: key looks like {}",
                row.item_key.split(':').next().unwrap_or("prefixed")
            ),
        };
    }
    if expected_item_type == "memory" && row.item_type != "memory" {
        return ClaimCheck::SkipWrongType {
            reason: format!(
                "wrong_item_type_for_operation:{current_op}: got item_type={}",
                row.item_type
            ),
        };
    }
    if expected_item_type == "entity"
        && row.item_type != "entity"
        && !row.item_key.starts_with("entity:")
    {
        // entity-descriptions: accept item_type=entity; bare entity names ok
        if row.item_type == "entity_pair" || is_non_memory_key_shape(&row.item_key) {
            return ClaimCheck::SkipWrongType {
                reason: format!(
                    "wrong_item_type_for_operation:{current_op}: got item_type={}",
                    row.item_type
                ),
            };
        }
    }
    if expected_item_type == "entity_pair"
        && row.item_type != "entity_pair"
        && !row.item_key.starts_with("pair:")
    {
        return ClaimCheck::SkipWrongType {
            reason: format!(
                "wrong_item_type_for_operation:{current_op}: got item_type={}",
                row.item_type
            ),
        };
    }
    ClaimCheck::Ok
}

/// Put a wrongly claimed row back to pending without consuming the attempt
/// budget (defense in depth if claim filter ever races).
pub(super) fn requeue_wrong_op(
    queue_conn: &rusqlite::Connection,
    queue_id: i64,
) -> Result<(), AppError> {
    queue_conn.execute(
        "UPDATE queue SET status='pending', \
         attempt=CASE WHEN attempt > 0 THEN attempt - 1 ELSE 0 END, \
         claimed_at=NULL, error=NULL, error_class=NULL \
         WHERE id=?1",
        rusqlite::params![queue_id],
    )?;
    Ok(())
}

/// Skip a claimed row that has an incompatible item_type/key shape.
pub(super) fn skip_wrong_type(
    queue_conn: &rusqlite::Connection,
    queue_id: i64,
    reason: &str,
) -> Result<(), AppError> {
    queue_conn.execute(
        "UPDATE queue SET status='skipped', error=?1, done_at=datetime('now'), claimed_at=NULL \
         WHERE id=?2",
        rusqlite::params![reason, queue_id],
    )?;
    Ok(())
}

/// GAP-CLI-QISO-01: claim the next pending row **for a single operation + namespace**.
///
/// `operation` must match the Debug label used at enqueue (`"EntityDescriptions"`,
/// `"MemoryBindings"`, …). Rows with `LegacyUnscoped` / other ops are never claimed.
///
/// CAPA (dim-migrate 2026-07-30): claim MUST filter `namespace = ?2`. Without it,
/// a drain for `ai-sdd` claimed `global`/empty-ns keys and failed with
/// `chunk N not found in namespace 'ai-sdd'`, tripped the circuit breaker, and
/// produced zero successful re-embeds on multi-namespace DBs.
pub(super) fn dequeue_next_pending(
    queue_conn: &rusqlite::Connection,
    operation: &str,
    namespace: &str,
    backoff_clause: &str,
) -> Result<DequeueOutcome, AppError> {
    // GAP-CLI-PRIO-03/04: claim highest priority first (hot > normal), then id.
    // GAP-CLI-QISO-01: strict operation filter — no OR operation IS NULL.
    // CAPA: strict namespace filter — no OR namespace = '' (legacy residual
    // empty-ns rows must be re-enqueued under the correct namespace, not claimed
    // under whatever process happens to be draining).
    let dequeue_sql = format!(
        "UPDATE queue SET status='processing', attempt=attempt+1, \
         claimed_at=CAST(strftime('%s','now') AS INTEGER) \
         WHERE id = (SELECT id FROM queue WHERE status='pending' \
                     AND operation = ?1 \
                     AND namespace = ?2 \
                     {backoff_clause} \
                     ORDER BY COALESCE(priority, 0) DESC, id ASC LIMIT 1) \
         RETURNING id, item_key, item_type, COALESCE(operation,''), attempt"
    );
    match queue_conn.query_row(
        &dequeue_sql,
        rusqlite::params![operation, namespace],
        |row| {
            Ok(ClaimedRow {
                id: row.get(0)?,
                item_key: row.get(1)?,
                item_type: row.get(2)?,
                operation: row.get(3)?,
                attempt: row.get(4)?,
            })
        },
    ) {
        Ok(claimed) => Ok(DequeueOutcome::Claimed(claimed)),
        Err(rusqlite::Error::QueryReturnedNoRows) => Ok(DequeueOutcome::Empty),
        Err(e) => Err(AppError::Database(e)),
    }
}

/// CAPA-A (2026-07-30): count pending rows eligible for **this** operation +
/// namespace only — same isolation as [`dequeue_next_pending`].
///
/// `--until-empty` previously counted *all* pending rows across operations,
/// so alien ReEmbed zombies kept EntityDescriptions spinning until max-runtime
/// with `completed=0`. Strict op+ns (no `OR operation IS NULL`) matches claim.
///
/// `backoff_clause` is the same fragment drain uses (may be empty or
/// `AND (next_retry_at IS NULL OR …)`); it is interpolated, not bound.
pub(super) fn count_eligible_pending(
    queue_conn: &rusqlite::Connection,
    operation: &str,
    namespace: &str,
    backoff_clause: &str,
) -> i64 {
    let sql = format!(
        "SELECT COUNT(*) FROM queue WHERE status='pending' \
         AND operation = ?1 AND namespace = ?2 {backoff_clause}"
    );
    queue_conn
        .query_row(&sql, rusqlite::params![operation, namespace], |r| r.get(0))
        .unwrap_or(0)
}

/// CAPA-B/F: reopen `skipped`/`done` EntityDescriptions rows for force-redescribe
/// scan candidates so `INSERT OR IGNORE` is not a silent no-op.
///
/// Call **once per process** before the first enqueue — not on every
/// `--until-empty` re-scan — or preservation_failed items loop forever.
/// Never reopens `dead` (use `--requeue-dead`).
///
/// Returns the number of rows updated to `pending`.
pub(super) fn reopen_force_redescribe_candidates(
    queue_conn: &rusqlite::Connection,
    namespace: &str,
    keys: &[String],
) -> usize {
    if keys.is_empty() {
        return 0;
    }
    let mut total = 0usize;
    for key in keys {
        match queue_conn.execute(
            "UPDATE queue SET status='pending', attempt=0, next_retry_at=NULL, \
             error=NULL, error_class=NULL, claimed_at=NULL, done_at=NULL \
             WHERE operation = 'EntityDescriptions' \
               AND namespace = ?1 \
               AND item_key = ?2 \
               AND status IN ('skipped', 'done')",
            rusqlite::params![namespace, key],
        ) {
            Ok(n) => total = total.saturating_add(n),
            Err(e) => {
                tracing::warn!(
                    target: "enrich",
                    error = %e,
                    key,
                    "force-redescribe reopen failed for key"
                );
            }
        }
    }
    total
}

/// CAPA-E: reset `processing` → `pending` scoped to one operation + namespace
/// (`--resume` and graceful SIGTERM). Avoids stealing in-flight claims of
/// other ops sharing the same sidecar.
pub(super) fn reset_processing_for_op(
    queue_conn: &rusqlite::Connection,
    operation: &str,
    namespace: &str,
) -> Result<usize, AppError> {
    let n = queue_conn.execute(
        "UPDATE queue SET status='pending', claimed_at=NULL \
         WHERE status='processing' AND operation = ?1 AND namespace = ?2",
        rusqlite::params![operation, namespace],
    )?;
    Ok(n)
}

/// CAPA-E: reset `failed` → `pending` for one operation + namespace (`--retry-failed`).
pub(super) fn reset_failed_for_op(
    queue_conn: &rusqlite::Connection,
    operation: &str,
    namespace: &str,
) -> Result<usize, AppError> {
    let n = queue_conn.execute(
        "UPDATE queue SET status='pending', attempt=0, next_retry_at=NULL, \
         error=NULL, error_class=NULL, claimed_at=NULL \
         WHERE status='failed' AND operation = ?1 AND namespace = ?2",
        rusqlite::params![operation, namespace],
    )?;
    Ok(n)
}

/// CAPA-C: true when a live embedding BLOB of the target dim exists
/// (`LENGTH(embedding) = dim*4`), not merely a matching `dim` column.
pub(super) fn entity_has_live_embedding(
    main_conn: &rusqlite::Connection,
    entity_id: i64,
    dim: usize,
) -> bool {
    let bytes = (dim * 4) as i64;
    main_conn
        .query_row(
            "SELECT 1 FROM entity_embeddings \
             WHERE entity_id = ?1 AND LENGTH(embedding) = ?2 LIMIT 1",
            rusqlite::params![entity_id, bytes],
            |_| Ok(()),
        )
        .is_ok()
}

/// CAPA-C: live memory embedding at target dim (BLOB length).
pub(super) fn memory_has_live_embedding(
    main_conn: &rusqlite::Connection,
    memory_id: i64,
    dim: usize,
) -> bool {
    let bytes = (dim * 4) as i64;
    main_conn
        .query_row(
            "SELECT 1 FROM memory_embeddings \
             WHERE memory_id = ?1 AND LENGTH(embedding) = ?2 LIMIT 1",
            rusqlite::params![memory_id, bytes],
            |_| Ok(()),
        )
        .is_ok()
}

/// CAPA-C: live chunk embedding at target dim (BLOB length).
pub(super) fn chunk_has_live_embedding(
    main_conn: &rusqlite::Connection,
    chunk_id: i64,
    dim: usize,
) -> bool {
    let bytes = (dim * 4) as i64;
    main_conn
        .query_row(
            "SELECT 1 FROM chunk_embeddings \
             WHERE chunk_id = ?1 AND LENGTH(embedding) = ?2 LIMIT 1",
            rusqlite::params![chunk_id, bytes],
            |_| Ok(()),
        )
        .is_ok()
}

/// CAPA-C2: mark pending ReEmbed rows `done` when the main DB already has a
/// live vector at the active dim — clears zombie pending without API calls.
///
/// Workload: serial SQLite I/O (orchestrator only; run before parallel drain).
pub(super) fn reconcile_satisfied_reembed_pending(
    main_conn: &rusqlite::Connection,
    queue_conn: &rusqlite::Connection,
    namespace: &str,
) -> Result<usize, AppError> {
    let dim = crate::constants::embedding_dim();
    let mut stmt = queue_conn.prepare(
        "SELECT id, item_key FROM queue \
         WHERE status='pending' AND operation='ReEmbed' AND namespace=?1",
    )?;
    let rows: Vec<(i64, String)> = stmt
        .query_map(rusqlite::params![namespace], |r| {
            Ok((r.get::<_, i64>(0)?, r.get::<_, String>(1)?))
        })?
        .collect::<Result<Vec<_>, _>>()?;

    let mut reconciled = 0usize;
    for (id, key) in rows {
        let satisfied = if let Some(name) = key.strip_prefix("entity:") {
            match main_conn.query_row(
                "SELECT id FROM entities WHERE namespace=?1 AND name=?2",
                rusqlite::params![namespace, name],
                |r| r.get::<_, i64>(0),
            ) {
                Ok(eid) => entity_has_live_embedding(main_conn, eid, dim),
                Err(_) => false,
            }
        } else if let Some(chunk_key) = key.strip_prefix("chunk:") {
            match chunk_key.parse::<i64>() {
                Ok(cid) => chunk_has_live_embedding(main_conn, cid, dim),
                Err(_) => false,
            }
        } else {
            match main_conn.query_row(
                "SELECT id FROM memories WHERE namespace=?1 AND name=?2 AND deleted_at IS NULL",
                rusqlite::params![namespace, key],
                |r| r.get::<_, i64>(0),
            ) {
                Ok(mid) => memory_has_live_embedding(main_conn, mid, dim),
                Err(_) => false,
            }
        };
        if !satisfied {
            continue;
        }
        let n = queue_conn.execute(
            "UPDATE queue SET status='done', done_at=datetime('now'), claimed_at=NULL, \
             error='reconciled: live embedding already present' \
             WHERE id=?1 AND status='pending'",
            rusqlite::params![id],
        )?;
        reconciled = reconciled.saturating_add(n);
    }
    Ok(reconciled)
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------