dbmd-core 0.3.10

Reference library for db.md, the open standard for databases in plain files. Parsing, store walk, wiki-link graph, validation, query, and write-through indexes. Zero AI dependencies.
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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
//! `summary` — the deterministic default-`summary` composer.
//!
//! Used by `dbmd fm init` and `dbmd write` when the agent doesn't supply a
//! `summary`. [`compose_default`] renders the type's `summary_template` (from
//! the store's `DB.md ## Schemas`) when one is declared, and otherwise falls
//! back to the body's first non-heading paragraph. No type carries a built-in
//! template — the template, like the schema, is the store's to declare.
//!
//! Contract: **deterministic** (same `(type, frontmatter, body)` → same
//! string), **single-line** (newlines collapsed to spaces), and **capped at 200
//! chars** (the SPEC readability bound). The tool generates a deterministic
//! floor; the agent provides the ceiling via `dbmd fm set <file> summary='…'`.

use serde_norway::Value;

use crate::parser::Frontmatter;
use crate::store::Store;

/// The SPEC's `summary` length bound, in characters.
pub const MAX_SUMMARY_LEN: usize = 200;

/// Compose a deterministic default `summary` for a file from its `type`,
/// frontmatter, and body. If the store's `## Schemas` declares a
/// `summary_template` for the type, it is rendered with `{field}` interpolation;
/// otherwise the default is the body's first non-heading paragraph. The result
/// is always single-line and ≤ [`MAX_SUMMARY_LEN`] chars.
///
/// The tool generates a deterministic floor; the agent provides the ceiling via
/// `dbmd fm set <file> summary='…'`.
pub fn compose_default(
    store: &Store,
    type_: &str,
    frontmatter: &Frontmatter,
    body: &str,
) -> crate::Result<String> {
    let composed = match store
        .config
        .schemas
        .get(type_)
        .and_then(|s| s.summary_template.as_deref())
    {
        Some(template) => render_template(template, frontmatter),
        None => compose_from_body(body),
    };
    Ok(normalize(&composed))
}

/// Render a `summary_template` — substitute each `{field}` with the file's
/// frontmatter value for `field`. A scalar (incl. a wiki-link, reduced to its
/// display-or-leaf form) renders inline; a list renders comma-joined; an
/// absent/empty field renders empty. An unmatched `{` is emitted verbatim
/// (templates are simple field-interpolation floors, not a templating language).
fn render_template(template: &str, fm: &Frontmatter) -> String {
    let mut out = String::with_capacity(template.len());
    let mut rest = template;
    while let Some(open) = rest.find('{') {
        out.push_str(&rest[..open]);
        let after = &rest[open + 1..];
        let close = after.find('}');
        let next_open = after.find('{');
        match close {
            // A clean `{field}` — no nested `{` before the closing `}`.
            Some(c) if next_open.is_none_or(|n| n > c) => {
                let key = after[..c].trim();
                if let Some(scalar) = field_text(fm, key) {
                    out.push_str(&scalar);
                } else {
                    let list = list_field_texts(fm, key);
                    if !list.is_empty() {
                        out.push_str(&list.join(", "));
                    }
                }
                rest = &after[c + 1..];
            }
            // A stray `{` (no `}`, or another `{` first) — emit it verbatim.
            _ => {
                out.push('{');
                rest = after;
            }
        }
    }
    out.push_str(rest);
    out
}

/// The body fallback: the file's first non-heading paragraph, truncated to
/// [`MAX_SUMMARY_LEN`] chars (the truncation is applied by [`normalize`]).
pub fn compose_from_body(body: &str) -> String {
    first_paragraph(body).unwrap_or_default()
}

/// Collapse a candidate summary to the **single-line** half of the contract:
/// runs of whitespace (including newlines) become single spaces and the result
/// is trimmed — but the length is **not** truncated. This is what an explicit
/// agent-supplied `--summary` is normalized through (`dbmd write`/`dbmd fm
/// init`): it must satisfy `SUMMARY_MULTILINE` without losing the agent's
/// content, matching the `dbmd fm set` path (which preserves the value
/// verbatim) and the SPEC stance that the agent provides the ceiling. The
/// validator surfaces an over-long value as a `SUMMARY_TOO_LONG` *warning*, not
/// silent truncation.
pub fn collapse_whitespace(candidate: &str) -> String {
    // `split_whitespace` collapses any run of ASCII/Unicode whitespace
    // (spaces, tabs, newlines) and trims leading/trailing — giving the
    // single-line, trimmed form in one pass.
    candidate.split_whitespace().collect::<Vec<_>>().join(" ")
}

/// Normalize a candidate summary to the full deterministic-**floor** contract:
/// collapse whitespace (via [`collapse_whitespace`]) then truncate to
/// [`MAX_SUMMARY_LEN`] **chars** (never splitting a UTF-8 codepoint). Used by
/// [`compose_default`] for the tool-generated floor. Explicit agent summaries
/// go through [`collapse_whitespace`] instead, so they are never silently cut.
pub fn normalize(candidate: &str) -> String {
    truncate_chars(&collapse_whitespace(candidate), MAX_SUMMARY_LEN)
}

// ── Internal helpers ────────────────────────────────────────────────────────

/// Truncate to at most `max` Unicode scalar values, on a char boundary.
fn truncate_chars(s: &str, max: usize) -> String {
    match s.char_indices().nth(max) {
        Some((byte_idx, _)) => s[..byte_idx].to_string(),
        None => s.to_string(),
    }
}

/// Read a frontmatter field's raw YAML value, checking the universal typed
/// fields first and then [`Frontmatter::extra`] — mirroring the documented
/// contract of `Frontmatter::get` but reading the struct directly so this
/// module never depends on another module's body.
fn field_value(fm: &Frontmatter, key: &str) -> Option<Value> {
    match key {
        "type" => fm.type_.clone().map(Value::String),
        "id" => fm.id.clone().map(Value::String),
        "summary" => fm.summary.clone().map(Value::String),
        "status" => fm.status.clone().map(Value::String),
        // Typed universal fields a `summary_template` may legitimately
        // interpolate. `created`/`updated` render as their canonical RFC3339
        // string; `tags` as a sequence (which `list_field_texts` comma-joins).
        // Without these arms, `{created}` / `{updated}` / `{tags}` would
        // silently render empty even when the value is present.
        "created" => fm.created.map(|t| Value::String(t.to_rfc3339())),
        "updated" => fm.updated.map(|t| Value::String(t.to_rfc3339())),
        "tags" => {
            if fm.tags.is_empty() {
                None
            } else {
                Some(Value::Sequence(
                    fm.tags.iter().cloned().map(Value::String).collect(),
                ))
            }
        }
        _ => fm.extra.get(key).cloned(),
    }
}

/// Read a single frontmatter field as a rendered plain-text scalar, or `None`
/// when the field is absent, null, or renders empty. Wiki-link-valued fields
/// are reduced to their display-or-leaf human form (never the raw `[[...]]`).
fn field_text(fm: &Frontmatter, key: &str) -> Option<String> {
    let v = field_value(fm, key)?;
    let rendered = render_scalar(&v)?;
    let trimmed = rendered.trim();
    if trimmed.is_empty() {
        None
    } else {
        Some(trimmed.to_string())
    }
}

/// Read a list-valued frontmatter field as rendered plain-text items. A scalar
/// (non-sequence) value is treated as a single-item list. Wiki-link items are
/// reduced to their display-or-leaf form. Empty / null items are dropped.
fn list_field_texts(fm: &Frontmatter, key: &str) -> Vec<String> {
    let Some(v) = field_value(fm, key) else {
        return Vec::new();
    };
    match v {
        Value::Sequence(items) => items
            .iter()
            .filter_map(|item| {
                let r = render_scalar(item)?;
                let t = r.trim();
                if t.is_empty() {
                    None
                } else {
                    Some(t.to_string())
                }
            })
            .collect(),
        other => render_scalar(&other)
            .map(|r| r.trim().to_string())
            .filter(|t| !t.is_empty())
            .into_iter()
            .collect(),
    }
}

/// Render a single YAML scalar to plain display text. Strings (including YAML
/// date scalars, which deserialize as strings) are returned as-is but with any
/// wiki-link reduced to display-or-leaf; numbers and bools stringify
/// canonically; null / mapping / nested-sequence yield `None`.
fn render_scalar(v: &Value) -> Option<String> {
    match v {
        Value::String(s) => Some(reduce_wiki_link(s)),
        Value::Sequence(_) => render_unquoted_wiki_link(v),
        Value::Bool(b) => Some(b.to_string()),
        Value::Number(n) => {
            // Render integers without a trailing `.0`; keep the natural form
            // otherwise. `Number`'s Display already does this.
            Some(n.to_string())
        }
        Value::Null | Value::Mapping(_) | Value::Tagged(_) => None,
    }
}

/// YAML parses an unquoted wiki-link scalar (`company: [[records/x]]`) as a
/// nested sequence, not a string. Recognize that shape so summary templates
/// render it exactly like the quoted scalar form.
fn render_unquoted_wiki_link(v: &Value) -> Option<String> {
    let Value::Sequence(outer) = v else {
        return None;
    };
    if outer.len() != 1 {
        return None;
    }
    let Value::Sequence(inner) = &outer[0] else {
        return None;
    };
    let [Value::String(target)] = inner.as_slice() else {
        return None;
    };
    Some(reduce_wiki_link(&format!("[[{target}]]")))
}

/// If `s` is a wiki-link (`[[target]]` or `[[target|display]]`), reduce it to
/// the human form: the `display` override when present, else the last path
/// segment of the target (with any `.md` suffix dropped). Non-link strings are
/// returned unchanged.
fn reduce_wiki_link(s: &str) -> String {
    let trimmed = s.trim();
    let inner = trimmed
        .strip_prefix("[[")
        .and_then(|rest| rest.strip_suffix("]]"));
    let Some(inner) = inner else {
        return s.to_string();
    };
    // Only reduce when the ENTIRE trimmed value is a single `[[…]]` link. A
    // value like `[[a]] and [[b]]` also starts `[[` and ends `]]`, but its
    // `inner` (`a]] and [[b`) is not one link — reducing it would emit a garbled
    // fragment of the last path (`b`), dropping the first link and the connecting
    // text. Such a multi-link / mixed scalar is passed through unchanged.
    if inner.contains("[[") || inner.contains("]]") {
        return s.to_string();
    }
    // `target|display` → prefer display.
    let (target, display) = match inner.split_once('|') {
        Some((t, d)) => (t, Some(d)),
        None => (inner, None),
    };
    if let Some(d) = display {
        let d = d.trim();
        if !d.is_empty() {
            return d.to_string();
        }
    }
    let leaf = target.trim().rsplit('/').next().unwrap_or(target).trim();
    leaf.strip_suffix(".md").unwrap_or(leaf).to_string()
}

/// The first non-heading, non-blank paragraph of the body: consecutive
/// non-heading text lines joined by a space, starting at the first such line.
///
/// Heading lines are skipped before the paragraph and terminate it once started.
/// "Heading" follows CommonMark, not "starts with `#`":
///
/// - **ATX** (`# Title`) requires a space (or end of line) after the `#` run
///   ([`is_atx_heading`]); `#1 priority…` / `#hashtag` are prose, not headings.
/// - **Setext** (a text line followed by an all-`=` or all-`-` underline) is a
///   heading too; both the title line and its underline are skipped.
/// - A leading **fenced code block** (```` ``` ````…```` ``` ````) is skipped in
///   full, so the fence info-string (`` ```bash ``) and any `#`-comment inside
///   the fence are never mistaken for prose or an ATX heading.
///
/// `None` when the body has no prose paragraph.
fn first_paragraph(body: &str) -> Option<String> {
    let lines: Vec<&str> = body.lines().collect();
    let mut collected: Vec<&str> = Vec::new();
    let mut i = 0;
    while i < lines.len() {
        let raw = lines[i];
        let t = raw.trim();

        // A fenced code block opening (```` ``` ```` or `~~~`, optional info
        // string) before any prose is skipped wholesale up to its closing fence.
        if collected.is_empty() {
            if let Some(fence) = code_fence_marker(t) {
                i += 1;
                while i < lines.len() {
                    let inner = lines[i].trim();
                    i += 1;
                    if closes_code_fence(inner, fence) {
                        break;
                    }
                }
                continue;
            }
        }

        if t.is_empty() {
            if collected.is_empty() {
                // Still searching for the start of the first paragraph.
                i += 1;
                continue;
            }
            // Blank line ends the first paragraph.
            break;
        }

        // ATX heading (CommonMark: `#`-run then space or EOL).
        if is_atx_heading(t) {
            if collected.is_empty() {
                i += 1;
                continue;
            }
            break;
        }

        // Setext heading: this line is the title and the NEXT non-empty line is
        // an all-`=` or all-`-` underline. Only valid as the FIRST line of a
        // paragraph (an underline mid-paragraph is not a setext heading). When
        // recognized, skip both the title and the underline.
        if collected.is_empty() {
            if let Some(next) = lines.get(i + 1).map(|l| l.trim()) {
                if is_setext_underline(next) {
                    i += 2;
                    continue;
                }
            }
        }

        collected.push(t);
        i += 1;
    }
    if collected.is_empty() {
        None
    } else {
        Some(collected.join(" "))
    }
}

/// True if `line` (already trimmed) is an ATX heading per CommonMark: 1–6 `#`
/// characters followed by a space/tab OR the end of the line. `#1 priority` and
/// `#hashtag` are NOT headings (no space after the hash run); `#######` (7+) is
/// not a heading either.
fn is_atx_heading(line: &str) -> bool {
    let hashes = line.chars().take_while(|&c| c == '#').count();
    if hashes == 0 || hashes > 6 {
        return false;
    }
    match line[hashes..].chars().next() {
        None => true,                     // bare `###` (hashes then EOL)
        Some(c) => c == ' ' || c == '\t', // `### Title`
    }
}

/// The fence marker char (`` ` `` or `~`) if `line` (already trimmed) opens a
/// fenced code block: at least three of the same fence char, optionally followed
/// by an info string. Returns `None` otherwise.
fn code_fence_marker(line: &str) -> Option<char> {
    let first = line.chars().next()?;
    if first != '`' && first != '~' {
        return None;
    }
    let run = line.chars().take_while(|&c| c == first).count();
    if run >= 3 {
        Some(first)
    } else {
        None
    }
}

/// True if `line` (already trimmed) is a closing fence for an open block opened
/// with `fence`: at least three of the same fence char and nothing else (a
/// closing fence carries no info string per CommonMark).
fn closes_code_fence(line: &str, fence: char) -> bool {
    let run = line.chars().take_while(|&c| c == fence).count();
    run >= 3 && line.chars().all(|c| c == fence)
}

/// True if `line` (already trimmed) is a setext heading underline: a non-empty
/// run of all `=` or all `-` characters (CommonMark allows trailing whitespace,
/// already removed by the caller's `trim`).
fn is_setext_underline(line: &str) -> bool {
    (!line.is_empty() && line.chars().all(|c| c == '='))
        || (!line.is_empty() && line.chars().all(|c| c == '-'))
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::parser::{Config, Schema};
    use std::fs;
    use tempfile::TempDir;

    // ── Fixtures ─────────────────────────────────────────────────────────────

    /// A temp store with a `DB.md` marker and the given parsed config, built
    /// directly (not via `Store::open`) so these tests exercise the `summary`
    /// code under test, not store-open plumbing.
    fn store_with(config: Config) -> (TempDir, Store) {
        let tmp = TempDir::new().expect("tempdir");
        let root = tmp.path().to_path_buf();
        fs::write(root.join("DB.md"), "---\ntype: db-md\n---\n").expect("write DB.md");
        let store = Store { root, config };
        (tmp, store)
    }

    /// A store whose `## Schemas` declares a `summary_template` for `type_`.
    fn store_with_template(type_: &str, template: &str) -> (TempDir, Store) {
        let mut config = Config::default();
        config.schemas.insert(
            type_.to_string(),
            Schema {
                summary_template: Some(template.to_string()),
                ..Schema::default()
            },
        );
        store_with(config)
    }

    /// Build a [`Frontmatter`] from a YAML map literal so tests state intent in
    /// YAML, not by hand-poking `extra`. This goes through `serde_norway` exactly
    /// like a real file's frontmatter would.
    fn fm(yaml: &str) -> Frontmatter {
        let value: Value = serde_norway::from_str(yaml).expect("test yaml parses");
        let mapping = value.as_mapping().expect("test yaml is a mapping").clone();
        let mut f = Frontmatter::default();
        for (k, v) in mapping {
            let key = k.as_str().expect("string key").to_string();
            match key.as_str() {
                "type" => f.type_ = v.as_str().map(str::to_string),
                "summary" => f.summary = v.as_str().map(str::to_string),
                "id" => f.id = v.as_str().map(str::to_string),
                "status" => f.status = v.as_str().map(str::to_string),
                // Route the typed universal fields to their struct slots (NOT
                // `extra`) so tests exercise the real `field_value` arms for
                // `{tags}` / `{created}` / `{updated}` instead of masking them.
                "tags" => {
                    if let Value::Sequence(items) = &v {
                        f.tags = items
                            .iter()
                            .filter_map(|i| i.as_str().map(str::to_string))
                            .collect();
                    }
                }
                "created" => {
                    f.created = v
                        .as_str()
                        .and_then(|s| chrono::DateTime::parse_from_rfc3339(s).ok())
                }
                "updated" => {
                    f.updated = v
                        .as_str()
                        .and_then(|s| chrono::DateTime::parse_from_rfc3339(s).ok())
                }
                _ => {
                    f.extra.insert(key, v);
                }
            }
        }
        f
    }

    // ── normalize ────────────────────────────────────────────────────────────

    #[test]
    fn normalize_collapses_newlines_and_runs_to_single_spaces() {
        let got = normalize("first line\nsecond\t\tline   third");
        assert_eq!(got, "first line second line third");
    }

    #[test]
    fn normalize_trims_surrounding_whitespace() {
        assert_eq!(normalize("   padded value \n"), "padded value");
    }

    #[test]
    fn normalize_caps_at_200_chars_on_char_boundary() {
        // 250 multi-byte chars; the cap is by char, not byte.
        let input = "é".repeat(250);
        let got = normalize(&input);
        assert_eq!(got.chars().count(), MAX_SUMMARY_LEN);
        // Truncation must not corrupt UTF-8 (would panic on slice otherwise).
        assert_eq!(got, "é".repeat(MAX_SUMMARY_LEN));
    }

    #[test]
    fn normalize_leaves_short_strings_untouched() {
        assert_eq!(normalize("short"), "short");
    }

    // ── collapse_whitespace (explicit `--summary` path) ──────────────────────

    #[test]
    fn regression_collapse_whitespace_preserves_long_explicit_summary() {
        // Finding #17: an explicit agent `--summary` longer than the 200-char
        // floor must be collapsed to a single line but NOT truncated — the
        // `normalize` floor would have silently dropped the tail. The trailing
        // qualifier (the part a >200-char summary would lose) must survive.
        let long = format!(
            "Director of Operations at Northstar; renewal champion who drove the 175-seat expansion and {}",
            "x".repeat(150)
        );
        assert!(long.chars().count() > MAX_SUMMARY_LEN);
        let collapsed = collapse_whitespace(&long);
        // No truncation: every char is preserved.
        assert_eq!(collapsed.chars().count(), long.chars().count());
        assert_eq!(collapsed, long);
        // Pre-fix `normalize` would have cut this to exactly MAX_SUMMARY_LEN.
        assert!(normalize(&long).chars().count() == MAX_SUMMARY_LEN);
        assert_ne!(collapse_whitespace(&long), normalize(&long));
    }

    #[test]
    fn collapse_whitespace_still_collapses_to_single_line() {
        // The single-line `SUMMARY_MULTILINE` half of the contract still holds —
        // newlines/tabs collapse and the value is trimmed, just never cut.
        assert_eq!(
            collapse_whitespace("  multi\nline\tsummary  "),
            "multi line summary"
        );
    }

    // ── summary_template rendering ───────────────────────────────────────────

    #[test]
    fn template_interpolates_scalar_fields() {
        let (_t, store) =
            store_with_template("contact", "{role} at {company} (last_touch: {last_touch})");
        let f = fm("type: contact\n\
             role: Director of Operations\n\
             company: \"[[records/companies/northstar]]\"\n\
             last_touch: 2026-05-22\n");
        // A wiki-link value reduces to its leaf; the template is the store's, not
        // a built-in — that is the whole point.
        assert_eq!(
            compose_default(&store, "contact", &f, "ignored body").unwrap(),
            "Director of Operations at northstar (last_touch: 2026-05-22)"
        );
    }

    #[test]
    fn template_interpolates_unquoted_scalar_wiki_link_fields() {
        let (_t, store) = store_with_template("contact", "{role} at {company}");
        let f = fm("type: contact\n\
             role: Director\n\
             company: [[records/companies/northstar]]\n");
        assert_eq!(
            compose_default(&store, "contact", &f, "").unwrap(),
            "Director at northstar"
        );
    }

    #[test]
    fn template_drops_absent_fields_to_empty() {
        let (_t, store) = store_with_template("contact", "{role} at {company}");
        let f = fm("type: contact\nrole: Advisor\n");
        // `{company}` absent → empty; `normalize` trims the trailing run.
        assert_eq!(
            compose_default(&store, "contact", &f, "").unwrap(),
            "Advisor at"
        );
    }

    #[test]
    fn template_joins_list_fields_comma_separated() {
        let (_t, store) = store_with_template("meeting", "{date}: {attendees}");
        let f = fm("type: meeting\n\
             date: 2026-05-10\n\
             attendees:\n\
             \x20 - \"[[records/contacts/alice]]\"\n\
             \x20 - \"[[records/contacts/bob]]\"\n");
        assert_eq!(
            compose_default(&store, "meeting", &f, "").unwrap(),
            "2026-05-10: alice, bob"
        );
    }

    #[test]
    fn template_interpolates_typed_tags_created_updated() {
        // Regression: `field_value` skipped the typed `tags` / `created` /
        // `updated` fields, so these `{…}` placeholders silently rendered empty
        // even when the values were present.
        let (_t, store) = store_with_template("note", "{tags} | {created}");
        let f = fm("type: note\ntags: [urgent, q3]\ncreated: \"2026-05-01T00:00:00Z\"\n");
        assert_eq!(
            compose_default(&store, "note", &f, "").unwrap(),
            // {tags} comma-joins; {created} renders canonical RFC3339 (offset form).
            "urgent, q3 | 2026-05-01T00:00:00+00:00"
        );
    }

    #[test]
    fn template_joins_unquoted_block_wiki_link_list_fields() {
        let (_t, store) = store_with_template("meeting", "{attendees}");
        let f = fm("type: meeting\n\
             attendees:\n\
             \x20 - [[records/contacts/alice]]\n\
             \x20 - [[records/contacts/bob]]\n");
        assert_eq!(
            compose_default(&store, "meeting", &f, "").unwrap(),
            "alice, bob"
        );
    }

    #[test]
    fn template_emits_stray_brace_verbatim() {
        let (_t, store) = store_with_template("note", "literal { brace {title}");
        let f = fm("type: note\ntitle: Hello\n");
        assert_eq!(
            compose_default(&store, "note", &f, "").unwrap(),
            "literal { brace Hello"
        );
    }

    #[test]
    fn template_is_deterministic_across_calls() {
        let (_t, store) = store_with_template("contact", "{role} ({last_touch})");
        let f = fm("type: contact\nrole: Ops Lead\nlast_touch: 2026-05-22\n");
        let a = compose_default(&store, "contact", &f, "body").unwrap();
        let b = compose_default(&store, "contact", &f, "body").unwrap();
        assert_eq!(a, b);
        assert_eq!(a, "Ops Lead (2026-05-22)");
    }

    #[test]
    fn no_schema_for_type_falls_back_to_body() {
        // Only `contact` has a template; `note` falls back to the body paragraph,
        // proving no type carries a built-in template.
        let (_t, store) = store_with_template("contact", "{role}");
        let f = fm("type: note\n");
        assert_eq!(
            compose_default(&store, "note", &f, "Body sentence here.").unwrap(),
            "Body sentence here."
        );
    }

    // ── unknown / custom + body extraction ─────────────────────────────────────

    #[test]
    fn unknown_type_uses_first_non_heading_paragraph() {
        let (_t, store) = store_with(Config::default());
        let f = fm("type: proposal\n");
        let body = "# Title\n\nThis proposal covers the Q3 roadmap.\n\nSecond paragraph.\n";
        let got = compose_default(&store, "proposal", &f, body).unwrap();
        assert_eq!(got, "This proposal covers the Q3 roadmap.");
    }

    #[test]
    fn first_paragraph_joins_wrapped_lines_until_blank() {
        let body = "Line one\nline two\n\nlater paragraph";
        assert_eq!(first_paragraph(body).as_deref(), Some("Line one line two"));
    }

    #[test]
    fn first_paragraph_none_for_heading_only_body() {
        assert_eq!(first_paragraph("# Just a heading\n## And another\n"), None);
    }

    #[test]
    fn unknown_type_long_paragraph_is_capped_at_200() {
        let (_t, store) = store_with(Config::default());
        let f = fm("type: note\n");
        let long = "word ".repeat(100); // 500 chars
        let got = compose_default(&store, "note", &f, &long).unwrap();
        assert!(got.chars().count() <= MAX_SUMMARY_LEN);
        assert!(got.chars().count() >= MAX_SUMMARY_LEN - 5); // close to the cap
    }

    // ── wiki-link reduction ────────────────────────────────────────────────────

    #[test]
    fn reduce_wiki_link_takes_leaf_segment() {
        assert_eq!(
            reduce_wiki_link("[[records/companies/northstar]]"),
            "northstar"
        );
    }

    #[test]
    fn reduce_wiki_link_prefers_display() {
        assert_eq!(
            reduce_wiki_link("[[records/companies/x|Northstar Inc]]"),
            "Northstar Inc"
        );
    }

    #[test]
    fn reduce_wiki_link_strips_md_extension() {
        assert_eq!(reduce_wiki_link("[[records/companies/x.md]]"), "x");
    }

    #[test]
    fn reduce_wiki_link_passes_through_plain_text() {
        assert_eq!(reduce_wiki_link("just a vendor name"), "just a vendor name");
    }

    #[test]
    fn regression_reduce_wiki_link_multiple_links_passthrough() {
        // Finding #41: a scalar with more than one wiki-link starts `[[` and ends
        // `]]` but is NOT a single link; reducing it dropped the first link and
        // the connecting text, emitting a fragment of the last path (`globex`).
        // It must now pass through unchanged.
        let s = "[[records/companies/acme]] and [[records/companies/globex]]";
        assert_eq!(reduce_wiki_link(s), s);
        // The single-link and plain-text cases still reduce / pass as before.
        assert_eq!(reduce_wiki_link("[[records/companies/acme]]"), "acme");
        assert_eq!(reduce_wiki_link("Acme and Globex"), "Acme and Globex");
    }

    // ── first_paragraph heading-classification (findings #38, #39, #40) ────────

    #[test]
    fn regression_first_paragraph_skips_setext_heading() {
        // Finding #38: a setext heading (title + `===` underline) is a heading,
        // not prose — both lines must be skipped, yielding the real paragraph.
        let body = "Launch Plan\n===========\n\nThis is the real first paragraph of prose.\n";
        assert_eq!(
            first_paragraph(body).as_deref(),
            Some("This is the real first paragraph of prose.")
        );
        // Dash-underline setext (h2) is skipped the same way.
        let body = "Section\n-------\n\nBody prose follows.\n";
        assert_eq!(
            first_paragraph(body).as_deref(),
            Some("Body prose follows.")
        );
    }

    #[test]
    fn regression_first_paragraph_hash_without_space_is_prose() {
        // Finding #39: `#1 priority…` / `#hashtag…` start with `#` but have no
        // space after the hash run, so per CommonMark they are prose, not ATX
        // headings — they must be summarized, not skipped/refused.
        assert_eq!(
            first_paragraph("#1 priority this week: fix onboarding drop-off.\n").as_deref(),
            Some("#1 priority this week: fix onboarding drop-off.")
        );
        assert_eq!(
            first_paragraph("#hashtag notes about the launch\n").as_deref(),
            Some("#hashtag notes about the launch")
        );
        // With a following paragraph, the REAL first paragraph is summarized
        // (not silently skipped to the second one).
        assert_eq!(
            first_paragraph("#1 priority: X\n\nSecond para.\n").as_deref(),
            Some("#1 priority: X")
        );
        // A genuine ATX heading (hash + space) is still skipped.
        assert_eq!(
            first_paragraph("# Real heading\n\nThe actual prose.\n").as_deref(),
            Some("The actual prose.")
        );
        // A bare `###` (hash run then EOL) is still a heading.
        assert_eq!(
            first_paragraph("###\n\nProse.\n").as_deref(),
            Some("Prose.")
        );
    }

    #[test]
    fn regression_first_paragraph_skips_leading_fenced_code_block() {
        // Finding #40: a body opening with a fenced code block must skip the
        // whole block (fence info-string and any in-fence `#` comment) and take
        // the first real prose paragraph after it.
        let body =
            "```bash\n# install dependencies\nnpm install\n```\n\nReal prose paragraph here.\n";
        assert_eq!(
            first_paragraph(body).as_deref(),
            Some("Real prose paragraph here.")
        );
        // Tilde fences are handled the same way.
        let body = "~~~\ncode line\n~~~\n\nProse after tilde fence.\n";
        assert_eq!(
            first_paragraph(body).as_deref(),
            Some("Prose after tilde fence.")
        );
    }

    #[test]
    fn compose_from_body_handles_hash_prose_setext_and_fence() {
        // End-to-end via `compose_from_body` (the `dbmd write` fallback path): a
        // hash-prose sole paragraph composes a summary rather than yielding empty
        // (which made `dbmd write` refuse the file).
        assert_eq!(
            compose_from_body("#1 priority this week: fix onboarding.\n"),
            "#1 priority this week: fix onboarding."
        );
        assert_eq!(
            compose_from_body("Launch Plan\n===========\n\nThe real prose.\n"),
            "The real prose."
        );
        assert_eq!(
            compose_from_body("```bash\n# step\n```\n\nThe real prose.\n"),
            "The real prose."
        );
    }

    #[test]
    fn is_atx_heading_applies_commonmark_space_rule() {
        assert!(is_atx_heading("# Title"));
        assert!(is_atx_heading("###### Deep"));
        assert!(is_atx_heading("###")); // hashes then EOL
        assert!(!is_atx_heading("#1 priority"));
        assert!(!is_atx_heading("#hashtag"));
        assert!(!is_atx_heading("####### too many")); // 7 hashes
        assert!(!is_atx_heading("plain"));
    }

    #[test]
    fn code_fence_and_setext_helpers() {
        assert_eq!(code_fence_marker("```bash"), Some('`'));
        assert_eq!(code_fence_marker("~~~"), Some('~'));
        assert_eq!(code_fence_marker("``"), None); // only two backticks
        assert_eq!(code_fence_marker("plain"), None);
        assert!(closes_code_fence("```", '`'));
        assert!(!closes_code_fence("```bash", '`')); // info string ⇒ not a close
        assert!(!closes_code_fence("~~~", '`')); // wrong fence char
        assert!(is_setext_underline("==="));
        assert!(is_setext_underline("---"));
        assert!(!is_setext_underline("- item")); // not all dashes
        assert!(!is_setext_underline(""));
    }
}