zeph-session 0.22.3

Conversation-session persistence: append-only JSONL event log, replay, and fork engine
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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

//! [`SessionStore`]: the `acp_sessions` metadata index.
//!
//! Promotes the existing `acp_sessions` table (migration 013, `crates/zeph-memory`) to a
//! channel-agnostic conversation-session index (spec-068 §2 Decision D1 — no new `sessions`
//! table is introduced). `zeph-session` talks to the table directly via [`zeph_db::DbPool`]
//! rather than depending on `zeph-memory`, keeping the crate boundary intact.
//!
//! The event log ([`crate::log::SessionEventLog`]) is the source of truth for conversation
//! content; this store only tracks lightweight, queryable metadata (`last_seq`, `status`,
//! fork provenance) used to reconcile the projection on open (INV-SP-3) and to answer
//! `sessions list` without replaying every log.

use zeph_db::{ActiveDialect, DbPool, dialect::Dialect, sql};

use crate::error::SessionError;

/// Lifecycle status of a conversation-session, mirroring the `acp_sessions.status` CHECK
/// constraint added in migration 106.
#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize)]
#[serde(rename_all = "snake_case")]
pub enum SessionStatus {
    /// Actively attached to a live agent/actor.
    Active,
    /// Persisted but not currently attached.
    Idle,
    /// Explicitly archived; excluded from default `list` results.
    Archived,
}

impl SessionStatus {
    /// The `TEXT` representation stored in the `status` column.
    #[must_use]
    pub fn as_str(self) -> &'static str {
        match self {
            Self::Active => "active",
            Self::Idle => "idle",
            Self::Archived => "archived",
        }
    }
}

impl std::str::FromStr for SessionStatus {
    type Err = SessionError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "active" => Ok(Self::Active),
            "idle" => Ok(Self::Idle),
            "archived" => Ok(Self::Archived),
            other => Err(SessionError::NotFound(format!(
                "unknown session status: {other}"
            ))),
        }
    }
}

/// A conversation-session's metadata row, as tracked in `acp_sessions`.
#[derive(Debug, Clone, serde::Serialize)]
pub struct SessionMetadata {
    pub session_id: String,
    pub title: Option<String>,
    pub created_at: String,
    pub updated_at: String,
    pub conversation_id: Option<i64>,
    pub last_seq: u64,
    pub event_count: u64,
    pub forked_from: Option<String>,
    pub forked_at_seq: Option<u64>,
    pub status: SessionStatus,
    pub last_condensed_seq: u64,
}

/// Filter parameters for [`SessionStore::list`].
#[derive(Debug, Clone, Default)]
pub struct SessionFilter {
    /// Restrict to a single status; `None` returns all statuses.
    pub status: Option<SessionStatus>,
    /// Maximum rows returned; `0` means unlimited.
    pub limit: usize,
}

/// CRUD access to the `acp_sessions` metadata index.
pub struct SessionStore {
    pool: DbPool,
}

impl SessionStore {
    /// Wrap an existing [`DbPool`]. `zeph-session` does not own a dedicated database file —
    /// it shares the pool that already owns `acp_sessions` (migration 013).
    #[must_use]
    pub fn new(pool: DbPool) -> Self {
        Self { pool }
    }

    /// Insert a new session row with `status = 'active'`, ignoring the call if the row already
    /// exists (idempotent, mirrors the existing `create_acp_session` pattern).
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the write fails.
    #[tracing::instrument(name = "session.store.create", skip_all, level = "debug")]
    pub async fn create(&self, session_id: &str) -> Result<(), SessionError> {
        let stmt = zeph_db::rewrite_placeholders(&format!(
            "{} INTO acp_sessions (id, status) VALUES (?, 'active'){}",
            <ActiveDialect as Dialect>::INSERT_IGNORE,
            <ActiveDialect as Dialect>::CONFLICT_NOTHING,
        ));
        zeph_db::query(sqlx::AssertSqlSafe(stmt))
            .bind(session_id)
            .execute(&self.pool)
            .await?;
        Ok(())
    }

    /// Update `last_seq`, `event_count`, and `updated_at` after a turn's events are flushed to
    /// the log (INV-SP-1: called only after the log append is durable).
    ///
    /// Explicitly bumps `updated_at` here because the pre-cutover `AFTER INSERT ON
    /// acp_session_events` trigger (migration 017) that used to drive it never fires for
    /// post-cutover sessions (spec-068 §12.3 / D-2: `acp_session_events` is a write target only
    /// for legacy pre-cutover sessions) — without this, `list_acp_sessions`' "ordered by last
    /// activity descending" would silently degrade to "ordered by creation time" for every
    /// session created after the cutover.
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the write fails.
    #[allow(clippy::cast_possible_wrap)]
    #[tracing::instrument(name = "session.store.update_seq", skip_all, level = "debug")]
    pub async fn update_seq(
        &self,
        session_id: &str,
        last_seq: u64,
        event_count: u64,
    ) -> Result<(), SessionError> {
        let stmt = zeph_db::rewrite_placeholders(&format!(
            "UPDATE acp_sessions SET last_seq = ?, event_count = ?, updated_at = {} WHERE id = ?",
            <ActiveDialect as Dialect>::NOW,
        ));
        zeph_db::query(sqlx::AssertSqlSafe(stmt))
            .bind(last_seq as i64)
            .bind(event_count as i64)
            .bind(session_id)
            .execute(&self.pool)
            .await?;
        Ok(())
    }

    /// Update the session's lifecycle status.
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the write fails.
    #[tracing::instrument(name = "session.store.set_status", skip_all, level = "debug")]
    pub async fn set_status(
        &self,
        session_id: &str,
        status: SessionStatus,
    ) -> Result<(), SessionError> {
        zeph_db::query(sql!("UPDATE acp_sessions SET status = ? WHERE id = ?"))
            .bind(status.as_str())
            .bind(session_id)
            .execute(&self.pool)
            .await?;
        Ok(())
    }

    /// Update the high-water condensation mark (INV-SP-4 non-overlap tracking).
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the write fails.
    #[allow(clippy::cast_possible_wrap)]
    #[tracing::instrument(name = "session.store.set_condensed_seq", skip_all, level = "debug")]
    pub async fn set_condensed_seq(
        &self,
        session_id: &str,
        last_condensed_seq: u64,
    ) -> Result<(), SessionError> {
        zeph_db::query(sql!(
            "UPDATE acp_sessions SET last_condensed_seq = ? WHERE id = ?"
        ))
        .bind(last_condensed_seq as i64)
        .bind(session_id)
        .execute(&self.pool)
        .await?;
        Ok(())
    }

    /// Fetch a single session's metadata.
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the query fails.
    #[tracing::instrument(name = "session.store.get", skip_all, level = "debug")]
    pub async fn get(&self, session_id: &str) -> Result<Option<SessionMetadata>, SessionError> {
        // `created_at`/`updated_at` are `TIMESTAMPTZ` on Postgres (`TEXT` on SQLite); project
        // both through `Dialect::select_as_text` so they decode into `SessionRow`'s `String`
        // fields, mirroring `zeph-memory`'s `list_acp_sessions`/`list_agent_sessions` fix for
        // the same mismatch.
        let created_at_sel = <ActiveDialect as Dialect>::select_as_text("created_at");
        let updated_at_sel = <ActiveDialect as Dialect>::select_as_text("updated_at");
        let raw = format!(
            "SELECT id, title, {created_at_sel}, {updated_at_sel}, conversation_id, last_seq, \
             event_count, forked_from, forked_at_seq, status, last_condensed_seq \
             FROM acp_sessions WHERE id = ?"
        );
        let query_sql = zeph_db::rewrite_placeholders(&raw);
        let row = zeph_db::query_as::<_, SessionRow>(sqlx::AssertSqlSafe(query_sql))
            .bind(session_id)
            .fetch_optional(&self.pool)
            .await?;
        row.map(TryInto::try_into).transpose()
    }

    /// List sessions, most recently updated first.
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the query fails.
    #[tracing::instrument(name = "session.store.list", skip_all, level = "debug")]
    pub async fn list(&self, filter: &SessionFilter) -> Result<Vec<SessionMetadata>, SessionError> {
        let status_filter = filter.status.map(SessionStatus::as_str);
        let (limit_clause, limit_bind) = zeph_db::limit_clause(filter.limit as u64);
        // `created_at`/`updated_at` are `TIMESTAMPTZ` on Postgres — see `Self::get`.
        let created_at_sel = <ActiveDialect as Dialect>::select_as_text("created_at");
        let updated_at_sel = <ActiveDialect as Dialect>::select_as_text("updated_at");

        let raw = format!(
            "SELECT id, title, {created_at_sel}, {updated_at_sel}, conversation_id, last_seq, \
             event_count, forked_from, forked_at_seq, status, last_condensed_seq \
             FROM acp_sessions \
             WHERE (? IS NULL OR status = ?) \
             ORDER BY updated_at DESC{limit_clause}"
        );
        let query_sql = zeph_db::rewrite_placeholders(&raw);
        let mut query = zeph_db::query_as::<_, SessionRow>(sqlx::AssertSqlSafe(query_sql))
            .bind(status_filter)
            .bind(status_filter);
        if let Some(lim) = limit_bind {
            query = query.bind(lim);
        }
        let rows = query.fetch_all(&self.pool).await?;

        rows.into_iter().map(TryInto::try_into).collect()
    }

    /// Link this session to a `ConversationId` (raw `i64` — `zeph-session` does not depend on
    /// `zeph-memory`'s newtype), enforcing the `SessionId`<->`ConversationId` bijection (spec
    /// §5.2) via the unique partial index added in migration 106.
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the write fails (including a unique-constraint violation
    /// when `conversation_id` is already linked to a different session).
    #[tracing::instrument(name = "session.store.link_conversation", skip_all, level = "debug")]
    pub async fn link_conversation(
        &self,
        session_id: &str,
        conversation_id: i64,
    ) -> Result<(), SessionError> {
        zeph_db::query(sql!(
            "UPDATE acp_sessions SET conversation_id = ? WHERE id = ?"
        ))
        .bind(conversation_id)
        .bind(session_id)
        .execute(&self.pool)
        .await?;
        Ok(())
    }

    /// Look up the session already linked to a `ConversationId`, if any.
    ///
    /// Used at non-ACP channel startup (CLI/TUI/Telegram) to resume the same conversation's
    /// existing session (and its event log) across process restarts, rather than minting a new
    /// `SessionId` every launch (spec §12.2).
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the query fails.
    #[tracing::instrument(
        name = "session.store.get_by_conversation_id",
        skip_all,
        level = "debug"
    )]
    pub async fn get_by_conversation_id(
        &self,
        conversation_id: i64,
    ) -> Result<Option<SessionMetadata>, SessionError> {
        // `created_at`/`updated_at` are `TIMESTAMPTZ` on Postgres — see `Self::get`.
        let created_at_sel = <ActiveDialect as Dialect>::select_as_text("created_at");
        let updated_at_sel = <ActiveDialect as Dialect>::select_as_text("updated_at");
        let raw = format!(
            "SELECT id, title, {created_at_sel}, {updated_at_sel}, conversation_id, last_seq, \
             event_count, forked_from, forked_at_seq, status, last_condensed_seq \
             FROM acp_sessions WHERE conversation_id = ?"
        );
        let query_sql = zeph_db::rewrite_placeholders(&raw);
        let row = zeph_db::query_as::<_, SessionRow>(sqlx::AssertSqlSafe(query_sql))
            .bind(conversation_id)
            .fetch_optional(&self.pool)
            .await?;
        row.map(TryInto::try_into).transpose()
    }

    /// Record a fork: sets `forked_from`/`forked_at_seq` on the child row.
    ///
    /// Does not touch the parent's log (the `ForkPoint` provenance event is appended by
    /// [`crate::replay`]'s `ForkEngine`, which owns the parent's [`crate::log::SessionEventLog`]).
    ///
    /// `owner` stamps `owner_key` (#5868): ACP's `fork_conversation` passes its connection's
    /// owner identity so the freshly forked child is immediately listable by its creator;
    /// the CLI's `sessions fork` passes `None` (operator-scoped, unowned — consistent with
    /// every other CLI-side session row).
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if either write fails.
    #[allow(clippy::cast_possible_wrap)]
    #[tracing::instrument(name = "session.store.record_fork", skip_all, level = "debug")]
    pub async fn record_fork(
        &self,
        new_session_id: &str,
        src_session_id: &str,
        forked_at_seq: u64,
        owner: Option<&str>,
    ) -> Result<(), SessionError> {
        let stmt = zeph_db::rewrite_placeholders(&format!(
            "{} INTO acp_sessions (id, status, forked_from, forked_at_seq, owner_key) \
             VALUES (?, 'active', ?, ?, ?){}",
            <ActiveDialect as Dialect>::INSERT_IGNORE,
            <ActiveDialect as Dialect>::CONFLICT_NOTHING,
        ));
        zeph_db::query(sqlx::AssertSqlSafe(stmt))
            .bind(new_session_id)
            .bind(src_session_id)
            .bind(forked_at_seq as i64)
            .bind(owner)
            .execute(&self.pool)
            .await?;
        Ok(())
    }

    /// Delete a session's metadata row. Returns `true` if a row was deleted.
    ///
    /// Does not remove the on-disk event log directory or blobs — callers with access to
    /// `[session] data_dir` are responsible for that (mirrors the separation of concerns between
    /// [`SessionStore`] and [`crate::log::SessionEventLog`]).
    ///
    /// # Errors
    ///
    /// Returns [`SessionError::Db`] if the write fails.
    #[tracing::instrument(name = "session.store.delete", skip_all, level = "debug")]
    pub async fn delete(&self, session_id: &str) -> Result<bool, SessionError> {
        let result = zeph_db::query(sql!("DELETE FROM acp_sessions WHERE id = ?"))
            .bind(session_id)
            .execute(&self.pool)
            .await?;
        Ok(result.rows_affected() > 0)
    }
}

#[derive(sqlx::FromRow)]
struct SessionRow {
    id: String,
    title: Option<String>,
    created_at: String,
    updated_at: String,
    conversation_id: Option<i64>,
    last_seq: i64,
    event_count: i64,
    forked_from: Option<String>,
    forked_at_seq: Option<i64>,
    status: String,
    last_condensed_seq: i64,
}

impl TryFrom<SessionRow> for SessionMetadata {
    type Error = SessionError;

    fn try_from(row: SessionRow) -> Result<Self, Self::Error> {
        Ok(Self {
            session_id: row.id,
            title: row.title,
            created_at: row.created_at,
            updated_at: row.updated_at,
            conversation_id: row.conversation_id,
            last_seq: u64::try_from(row.last_seq).unwrap_or(0),
            event_count: u64::try_from(row.event_count).unwrap_or(0),
            forked_from: row.forked_from,
            forked_at_seq: row.forked_at_seq.map(|v| u64::try_from(v).unwrap_or(0)),
            status: row.status.parse()?,
            last_condensed_seq: u64::try_from(row.last_condensed_seq).unwrap_or(0),
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    async fn make_pool() -> DbPool {
        let config = zeph_db::DbConfig {
            url: ":memory:".to_owned(),
            ..Default::default()
        };
        let pool = config
            .connect()
            .await
            .expect("connect in-memory sqlite pool");
        zeph_db::run_migrations(&pool)
            .await
            .expect("run migrations");
        pool
    }

    #[tokio::test]
    async fn test_migration_106_idempotent() {
        let pool = make_pool().await;
        zeph_db::run_migrations(&pool)
            .await
            .expect("second run is a no-op");
    }

    #[tokio::test]
    async fn create_and_get_defaults() {
        let store = SessionStore::new(make_pool().await);
        store.create("s1").await.unwrap();
        let meta = store.get("s1").await.unwrap().expect("row exists");
        assert_eq!(meta.session_id, "s1");
        assert_eq!(meta.last_seq, 0);
        assert_eq!(meta.event_count, 0);
        assert_eq!(meta.status, SessionStatus::Active);
        assert!(meta.forked_from.is_none());
    }

    #[tokio::test]
    async fn update_seq_persists() {
        let store = SessionStore::new(make_pool().await);
        store.create("s1").await.unwrap();
        store.update_seq("s1", 41, 20).await.unwrap();
        let meta = store.get("s1").await.unwrap().unwrap();
        assert_eq!(meta.last_seq, 41);
        assert_eq!(meta.event_count, 20);
    }

    #[tokio::test]
    async fn set_status_persists() {
        let store = SessionStore::new(make_pool().await);
        store.create("s1").await.unwrap();
        store.set_status("s1", SessionStatus::Idle).await.unwrap();
        let meta = store.get("s1").await.unwrap().unwrap();
        assert_eq!(meta.status, SessionStatus::Idle);
    }

    #[tokio::test]
    async fn record_fork_sets_provenance() {
        let store = SessionStore::new(make_pool().await);
        store.create("parent").await.unwrap();
        store
            .record_fork("child", "parent", 12, None)
            .await
            .unwrap();
        let meta = store.get("child").await.unwrap().unwrap();
        assert_eq!(meta.forked_from.as_deref(), Some("parent"));
        assert_eq!(meta.forked_at_seq, Some(12));
    }

    /// Regression test (#5868): `record_fork`'s own `INSERT` must stamp `owner_key` on the
    /// child row, mirroring `create_acp_session`. Found mid-implementation: `record_fork`
    /// (used by `ForkEngine::fork`, ACP's `fork_conversation` under `[session] enabled = true`)
    /// has a separate INSERT statement that bypassed `create_acp_session` entirely — every fork
    /// would have landed `owner_key = NULL` regardless of the `owner` argument, making it
    /// invisible in the fork-creator's own scoped `list_sessions` immediately after forking.
    #[tokio::test]
    async fn record_fork_stamps_owner_key_on_child_row() {
        let pool = make_pool().await;
        let store = SessionStore::new(pool.clone());
        store.create("parent").await.unwrap();
        store
            .record_fork("child", "parent", 12, Some("alice"))
            .await
            .unwrap();

        let owner_key: Option<String> =
            zeph_db::query_scalar(sql!("SELECT owner_key FROM acp_sessions WHERE id = ?"))
                .bind("child")
                .fetch_one(&pool)
                .await
                .unwrap();
        assert_eq!(owner_key.as_deref(), Some("alice"));
    }

    /// `record_fork(owner: None)` (the CLI / non-ACP fork path) must leave the child row
    /// unowned, matching every other non-ACP write path (spec-068 Decision D1).
    #[tokio::test]
    async fn record_fork_with_no_owner_leaves_child_row_unowned() {
        let pool = make_pool().await;
        let store = SessionStore::new(pool.clone());
        store.create("parent").await.unwrap();
        store
            .record_fork("child", "parent", 12, None)
            .await
            .unwrap();

        let owner_key: Option<String> =
            zeph_db::query_scalar(sql!("SELECT owner_key FROM acp_sessions WHERE id = ?"))
                .bind("child")
                .fetch_one(&pool)
                .await
                .unwrap();
        assert!(owner_key.is_none());
    }

    #[tokio::test]
    async fn list_filters_by_status() {
        let store = SessionStore::new(make_pool().await);
        store.create("s1").await.unwrap();
        store.create("s2").await.unwrap();
        store
            .set_status("s2", SessionStatus::Archived)
            .await
            .unwrap();

        let active = store
            .list(&SessionFilter {
                status: Some(SessionStatus::Active),
                limit: 0,
            })
            .await
            .unwrap();
        assert_eq!(active.len(), 1);
        assert_eq!(active[0].session_id, "s1");

        let all = store.list(&SessionFilter::default()).await.unwrap();
        assert_eq!(all.len(), 2);
    }

    /// Regression test (#5980): `SessionStore::list` used to bind `LIMIT ?` with `-1` for the
    /// `limit == 0` ("unlimited") sentinel — a `SQLite`-only convenience that `PostgreSQL`
    /// rejects at execution time. This exercises the non-zero limit branch on `SQLite`; the
    /// Postgres-specific `limit == 0` regression is covered by
    /// `tests/postgres_integration.rs::list_unlimited_when_zero_postgres`.
    #[tokio::test]
    async fn list_respects_nonzero_limit() {
        let store = SessionStore::new(make_pool().await);
        for i in 0..5u8 {
            store.create(&format!("s{i}")).await.unwrap();
        }

        let limited = store
            .list(&SessionFilter {
                status: None,
                limit: 3,
            })
            .await
            .unwrap();
        assert_eq!(limited.len(), 3);
    }

    #[tokio::test]
    async fn delete_removes_row() {
        let store = SessionStore::new(make_pool().await);
        store.create("s1").await.unwrap();
        assert!(store.delete("s1").await.unwrap());
        assert!(store.get("s1").await.unwrap().is_none());
        assert!(!store.delete("s1").await.unwrap());
    }

    #[tokio::test]
    async fn get_missing_returns_none() {
        let store = SessionStore::new(make_pool().await);
        assert!(store.get("no-such").await.unwrap().is_none());
    }

    #[tokio::test]
    async fn link_conversation_and_lookup_round_trips() {
        let pool = make_pool().await;
        let store = SessionStore::new(pool.clone());
        store.create("s1").await.unwrap();

        // `conversation_id` carries an FK to `conversations(id)` (migration 001); insert a row
        // directly since creating conversations is zeph-memory's domain, out of scope here.
        let (cid,): (i64,) =
            zeph_db::query_as("INSERT INTO conversations DEFAULT VALUES RETURNING id")
                .fetch_one(&pool)
                .await
                .unwrap();

        store.link_conversation("s1", cid).await.unwrap();

        let meta = store.get("s1").await.unwrap().unwrap();
        assert_eq!(meta.conversation_id, Some(cid));

        let found = store.get_by_conversation_id(cid).await.unwrap().unwrap();
        assert_eq!(found.session_id, "s1");
    }

    #[tokio::test]
    async fn get_by_conversation_id_returns_none_when_unlinked() {
        let store = SessionStore::new(make_pool().await);
        store.create("s1").await.unwrap();
        assert!(store.get_by_conversation_id(99).await.unwrap().is_none());
    }
}