carryctx 0.7.0

Local-first memory for coding agents — resume tasks, checkpoints, and context across windows, sessions, and worktrees.
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
use crate::*;
use carryctx::adapter::config::ConfigLoader;
use carryctx::adapter::xdg::XdgPaths;
use carryctx::application::runtime::InvocationContext;
use carryctx::error::{CarryCtxError, ExitCode};
use clap::Parser;

// ── Config ───────────────────────────────────────────────────────────────

#[derive(Parser, Debug)]
pub enum ConfigCommand {
    /// List all effective configuration values after merging global and project configs
    List {
        /// Only show global configuration values (ignore project-local config)
        #[arg(long)]
        global: bool,
    },
    /// Get the value of a specific configuration key
    Get { key: String },
    /// Set a configuration key to a specific value
    Set {
        key: String,
        value: String,
        /// Set the value in the global configuration file (~/.config/carryctx)
        #[arg(long)]
        global: bool,
        /// Set the value in the project-shared configuration (.carryctx/config.toml)
        #[arg(long = "cfg-project")]
        cfg_project: bool,
        /// Set the value in the user-local project configuration (.carryctx/local.toml)
        #[arg(long)]
        local: bool,
    },
    /// Remove a configuration key
    Unset {
        key: String,
        /// Remove from the global configuration
        #[arg(long)]
        global: bool,
        /// Remove from the project-shared configuration
        #[arg(long = "cfg-project")]
        cfg_project: bool,
        /// Remove from the user-local project configuration (.carryctx/local.toml)
        #[arg(long)]
        local: bool,
    },
    /// Validate the current configuration for syntax errors and schema compliance
    Validate,
    /// List the paths of all configuration files currently being merged
    Sources,
    /// Print the absolute path to a specific configuration file
    Path {
        /// Print the path to the global configuration file
        #[arg(long)]
        global: bool,
        /// Print the path to the project-local configuration file
        #[arg(long = "cfg-project")]
        cfg_project: bool,
    },
}

#[derive(Parser, Debug)]
pub struct ConfigArgs {
    /// Config subcommand to execute
    #[command(subcommand)]
    pub command: ConfigCommand,
}

// ═══════════════════════════════════════════════════════════════════════════
//  Handler: config
// ═══════════════════════════════════════════════════════════════════════════

pub fn handle_config(
    args: &ConfigArgs,
    ctx: &InvocationContext,
    is_json: bool,
) -> Result<ExitCode, ExitCode> {
    if let Some(result) = check_dry_run_envelope(
        ctx,
        &subcommand_label("config", &args.command),
        &format!("config {:?}", args.command),
    ) {
        return result;
    }
    let xdg = XdgPaths::new();
    let work_dir = resolve_work_dir(ctx);

    match &args.command {
        ConfigCommand::List { global } => {
            let cfg_path = if *global {
                xdg.global_config()
            } else {
                work_dir.join(".carryctx").join("config.toml")
            };
            // An unreadable file is an error, not silently-empty content.
            let content: Result<String, CarryCtxError> = if cfg_path.exists() {
                std::fs::read_to_string(&cfg_path).map_err(|e| {
                    CarryCtxError::configuration_error(format!(
                        "Failed to read {}: {e}",
                        cfg_path.display()
                    ))
                })
            } else {
                Ok(String::new())
            };
            let data = content.map(|content| {
                serde_json::json!({
                    "path": cfg_path.to_string_lossy(),
                    "content": content,
                })
            });
            render_and_print("config.list", data, is_json, ctx.quiet)
        }
        ConfigCommand::Get { key } => {
            let cfg_loader = ConfigLoader::new(xdg);
            match cfg_loader.load(Some(work_dir)) {
                Ok(config) => {
                    let value = lookup_config_value(&config, key);
                    let data = serde_json::json!({ "key": key, "value": value });
                    render_and_print("config.get", Ok(data), is_json, ctx.quiet)
                }
                Err(e) => {
                    render_and_print::<serde_json::Value>("config.get", Err(e), is_json, ctx.quiet)
                }
            }
        }
        ConfigCommand::Set {
            key,
            value,
            global,
            cfg_project,
            local,
        } => {
            let outcome = set_config_value(
                &xdg,
                work_dir,
                key,
                value,
                ScopeSelection {
                    global: *global,
                    cfg_project: *cfg_project,
                    local: *local,
                },
            );
            match outcome {
                Ok(path) => {
                    let data = serde_json::json!({
                        "path": path.to_string_lossy(),
                        "key": key,
                        "value": typed_json_preview(value),
                    });
                    render_and_print("config.set", Ok(data), is_json, ctx.quiet)
                }
                Err(e) => {
                    render_and_print::<serde_json::Value>("config.set", Err(e), is_json, ctx.quiet)
                }
            }
        }
        ConfigCommand::Unset {
            key,
            global,
            cfg_project,
            local,
        } => {
            let outcome = unset_config_value(
                &xdg,
                work_dir,
                key,
                ScopeSelection {
                    global: *global,
                    cfg_project: *cfg_project,
                    local: *local,
                },
            );
            match outcome {
                Ok((path, removed)) => {
                    let data = serde_json::json!({ "key": key, "removed": removed, "path": path.to_string_lossy() });
                    render_and_print("config.unset", Ok(data), is_json, ctx.quiet)
                }
                Err(e) => render_and_print::<serde_json::Value>(
                    "config.unset",
                    Err(e),
                    is_json,
                    ctx.quiet,
                ),
            }
        }
        ConfigCommand::Validate => {
            let cfg_loader = ConfigLoader::new(xdg);
            let result = cfg_loader.load(Some(work_dir));
            match result {
                Ok(config) => {
                    let data = serde_json::json!({
                        "valid": true,
                        "project": config.project,
                        "sources": ["global", "project", "env"]
                    });
                    render_and_print("config.validate", Ok(data), is_json, ctx.quiet)
                }
                Err(e) => render_and_print::<serde_json::Value>(
                    "config.validate",
                    Err(e),
                    is_json,
                    ctx.quiet,
                ),
            }
        }
        ConfigCommand::Sources => {
            let sources = serde_json::json!([
                { "name": "global", "path": xdg.global_config().to_string_lossy() },
                { "name": "project", "path": work_dir.join(".carryctx/config.toml").to_string_lossy() },
                { "name": "env", "prefix": "CARRYCTX_" },
            ]);
            render_and_print("config.sources", Ok(sources), is_json, ctx.quiet)
        }
        ConfigCommand::Path {
            global,
            cfg_project,
        } => {
            #[allow(clippy::if_same_then_else)]
            let path = if *global {
                xdg.global_config()
            } else if *cfg_project {
                work_dir.join(".carryctx").join("config.toml")
            } else {
                // default to project config
                work_dir.join(".carryctx").join("config.toml")
            };
            let data = serde_json::json!({ "path": path.to_string_lossy() });
            render_and_print("config.path", Ok(data), is_json, ctx.quiet)
        }
    }
}

// ── Scoped writes ────────────────────────────────────────────────────────

/// Explicit scope flags for `config set` / `config unset`.
struct ScopeSelection {
    global: bool,
    cfg_project: bool,
    local: bool,
}

/// Resolve exactly one explicit write scope into its target file path.
///
/// The v0.1 contract requires an explicit scope; there is no implicit default.
/// `--local` targets `.carryctx/local.toml`, which the loader does not read
/// yet, so it is rejected instead of silently writing a file nothing loads.
fn resolve_write_scope(
    xdg: &XdgPaths,
    work_dir: &std::path::Path,
    scope: &ScopeSelection,
) -> Result<std::path::PathBuf, CarryCtxError> {
    let selected: Vec<bool> = vec![scope.global, scope.cfg_project, scope.local];
    let count = selected.iter().filter(|b| **b).count();
    if count > 1 {
        return Err(CarryCtxError::invalid_arguments(
            "'config set'/'config unset' accepts exactly one write scope.",
        )
        .with_suggestions(["Use only one of --global, --cfg-project, or --local.".to_string()]));
    }
    if scope.local {
        return Err(CarryCtxError::unsupported_operation(
            "--local targets .carryctx/local.toml, which the configuration loader does not read yet.",
        )
        .with_suggestions([
            "Use --cfg-project to write .carryctx/config.toml (shared via Git).".to_string(),
            "Use --global to write the per-machine user configuration.".to_string(),
        ]));
    }
    if scope.global {
        Ok(xdg.global_config())
    } else if scope.cfg_project {
        Ok(work_dir.join(".carryctx").join("config.toml"))
    } else {
        Err(CarryCtxError::invalid_arguments(
            "No write scope given: 'config set'/'config unset' require --global or --cfg-project.",
        )
        .with_suggestions([
            "--global          → ~/.config/carryctx/config.toml (per machine)".to_string(),
            "--cfg-project     → <repo>/.carryctx/config.toml (shared via Git)".to_string(),
        ]))
    }
}

/// Parse the file into a structure-preserving document.
fn parse_config_document(path: &std::path::Path) -> Result<toml_edit::DocumentMut, CarryCtxError> {
    if !path.exists() {
        return Ok(toml_edit::DocumentMut::new());
    }
    let raw = std::fs::read_to_string(path).map_err(|e| {
        CarryCtxError::configuration_error(format!("Failed to read {}: {e}", path.display()))
    })?;
    raw.parse::<toml_edit::DocumentMut>().map_err(|e| {
        CarryCtxError::configuration_error(format!("{} is not valid TOML: {e}", path.display()))
    })
}

/// Serialize, round-trip validate, then write the document.
///
/// The validation re-parse guarantees we never replace a working file with
/// output that fails to load (the previous implementation never checked).
fn write_config_document(
    path: &std::path::Path,
    doc: &toml_edit::DocumentMut,
) -> Result<(), CarryCtxError> {
    let serialized = doc.to_string();
    serialized.parse::<toml_edit::DocumentMut>().map_err(|e| {
        CarryCtxError::configuration_error(format!(
            "Refusing to write {}: edited result is not valid TOML ({e})",
            path.display()
        ))
    })?;
    if let Some(parent) = path.parent() {
        std::fs::create_dir_all(parent).map_err(|e| {
            CarryCtxError::configuration_error(format!(
                "Failed to create directory {}: {e}",
                parent.display()
            ))
        })?;
    }
    std::fs::write(path, serialized).map_err(|e| {
        CarryCtxError::configuration_error(format!("Failed to write {}: {e}", path.display()))
    })
}

/// Interpret a raw CLI value as a typed TOML scalar.
///
/// `true`/`false` become booleans, integer- and float-shaped strings become
/// numbers, everything else stays a literal string. This replaces the old
/// behavior of quoting every value, which turned `set k true` into the
/// string `'true'` and broke typed consumers.
fn typed_toml_value(raw: &str) -> toml_edit::Value {
    let trimmed = raw.trim();
    match trimmed {
        "true" => return toml_edit::Value::from(true),
        "false" => return toml_edit::Value::from(false),
        _ => {}
    }
    // TOML forbids leading-zero numerals (`0755`, `-08`); keep those literal
    // instead of silently reinterpreting them as decimal values.
    if !has_leading_zero_numeral(trimmed) {
        if let Ok(int) = trimmed.parse::<i64>() {
            return toml_edit::Value::from(int);
        }
        if let Some(float) = parse_toml_float(trimmed) {
            return toml_edit::Value::from(float);
        }
    }
    toml_edit::Value::from(raw)
}

/// Whether `s` is an all-digit numeral with a forbidden leading zero
/// (`0755`, `-012`). A lone `0` is fine.
fn has_leading_zero_numeral(s: &str) -> bool {
    let digits = s.strip_prefix(['+', '-']).unwrap_or(s);
    if digits.len() <= 1 || !digits.starts_with('0') {
        return false;
    }
    digits[1..].bytes().all(|b| b.is_ascii_digit())
}

/// Float parsing restricted to TOML-valid forms (`inf`/`NaN` spellings are
/// intentionally left as plain strings).
fn parse_toml_float(trimmed: &str) -> Option<f64> {
    if !trimmed.contains(['.', 'e', 'E']) {
        return None;
    }
    trimmed.parse::<f64>().ok().filter(|f| f.is_finite())
}

/// The JSON-typed preview of a raw CLI value used in the success envelope.
///
/// Reuses the mainline `toml` serializer so the preview matches exactly what
/// a subsequent parse of the written file will produce.
fn typed_json_preview(raw: &str) -> serde_json::Value {
    let mut doc = toml_edit::DocumentMut::new();
    doc["v"] = toml_edit::Item::Value(typed_toml_value(raw));
    toml::from_str::<toml::Value>(&doc.to_string())
        .ok()
        .and_then(|parsed| parsed.get("v").cloned())
        .map(toml_value_to_json)
        .unwrap_or_else(|| serde_json::Value::String(raw.to_string()))
}

/// Convert a parsed TOML value into its JSON equivalent.
fn toml_value_to_json(value: toml::Value) -> serde_json::Value {
    match value {
        toml::Value::Boolean(b) => serde_json::Value::Bool(b),
        toml::Value::Integer(i) => serde_json::json!(i),
        toml::Value::Float(f) => serde_json::json!(f),
        toml::Value::String(s) => serde_json::Value::String(s),
        toml::Value::Datetime(dt) => serde_json::Value::String(dt.to_string()),
        toml::Value::Array(items) => {
            serde_json::Value::Array(items.into_iter().map(toml_value_to_json).collect())
        }
        toml::Value::Table(map) => {
            let mut obj = serde_json::Map::new();
            for (key, val) in map {
                obj.insert(key, toml_value_to_json(val));
            }
            serde_json::Value::Object(obj)
        }
    }
}

/// Walk (creating as needed) the intermediate tables for a dotted key and
/// return the table that owns the leaf segment.
fn table_for_key<'a>(
    doc: &'a mut toml_edit::DocumentMut,
    parts: &[&str],
) -> Result<&'a mut toml_edit::Table, CarryCtxError> {
    let mut current = doc.as_table_mut();
    for part in &parts[..parts.len() - 1] {
        let entry = current
            .entry(part)
            .or_insert(toml_edit::Item::Table(toml_edit::Table::new()));
        if !entry.is_table() {
            return Err(CarryCtxError::state_conflict(format!(
                "Cannot descend into '{part}': it is already a scalar value."
            )));
        }
        current = entry.as_table_mut().expect("checked as table");
    }
    Ok(current)
}

/// Insert or overwrite a dotted key at the document root.
///
/// `toml_edit` keeps root-level dotted keys out of any `[table]` section,
/// fixing the old append-at-EOF bug where `task.strict_completion = …`
/// landed inside the last `[verification]` table.
fn insert_config_key(
    doc: &mut toml_edit::DocumentMut,
    key: &str,
    value: toml_edit::Value,
) -> Result<(), CarryCtxError> {
    let parts: Vec<&str> = key.split('.').collect();
    if parts.iter().any(|p| p.trim().is_empty()) {
        return Err(CarryCtxError::invalid_arguments(format!(
            "Invalid configuration key '{key}': empty path segment."
        )));
    }
    let leaf = *parts.last().expect("non-empty split always has a last");
    let table = table_for_key(doc, &parts)?;
    if table
        .get(leaf)
        .map(|existing| existing.is_table())
        .unwrap_or(false)
    {
        return Err(CarryCtxError::state_conflict(format!(
            "Refusing to overwrite '{key}': it is a table with nested keys."
        )));
    }
    table.insert(leaf, toml_edit::Item::Value(value));
    Ok(())
}

/// Remove a dotted key from the document, returning whether it existed.
fn remove_config_key(doc: &mut toml_edit::DocumentMut, key: &str) -> Result<bool, CarryCtxError> {
    let parts: Vec<&str> = key.split('.').collect();
    if parts.iter().any(|p| p.trim().is_empty()) {
        return Err(CarryCtxError::invalid_arguments(format!(
            "Invalid configuration key '{key}': empty path segment."
        )));
    }
    let mut current = doc.as_table_mut();
    for part in &parts[..parts.len() - 1] {
        match current.get_mut(part).and_then(|item| item.as_table_mut()) {
            Some(table) => current = table,
            None => return Ok(false),
        }
    }
    let leaf = *parts.last().expect("non-empty split always has a last");
    Ok(current.remove(leaf).is_some())
}

fn set_config_value(
    xdg: &XdgPaths,
    work_dir: &std::path::Path,
    key: &str,
    value: &str,
    scope: ScopeSelection,
) -> Result<std::path::PathBuf, CarryCtxError> {
    let path = resolve_write_scope(xdg, work_dir, &scope)?;
    let mut doc = parse_config_document(&path)?;
    insert_config_key(&mut doc, key, typed_toml_value(value))?;
    write_config_document(&path, &doc)?;
    Ok(path)
}

fn unset_config_value(
    xdg: &XdgPaths,
    work_dir: &std::path::Path,
    key: &str,
    scope: ScopeSelection,
) -> Result<(std::path::PathBuf, bool), CarryCtxError> {
    let path = resolve_write_scope(xdg, work_dir, &scope)?;
    if !path.exists() {
        return Ok((path, false));
    }
    let mut doc = parse_config_document(&path)?;
    let removed = remove_config_key(&mut doc, key)?;
    if removed {
        write_config_document(&path, &doc)?;
    }
    Ok((path, removed))
}

/// Look up a dotted key in the loaded (merged) configuration by walking the
/// serialized typed struct — never by line-prefix matching over raw TOML,
/// which returned empty results for nested keys and wrong hits on prefix
/// collisions. Missing keys yield `null`.
fn lookup_config_value(
    config: &carryctx::domain::config::CarryCtxConfig,
    key: &str,
) -> serde_json::Value {
    let mut cursor = match serde_json::to_value(config) {
        Ok(value) => value,
        Err(_) => return serde_json::Value::Null,
    };
    for part in key.split('.') {
        match cursor.get(part) {
            Some(next) => cursor = next.clone(),
            None => return serde_json::Value::Null,
        }
    }
    cursor
}

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

    fn doc_from(raw: &str) -> toml_edit::DocumentMut {
        raw.parse::<toml_edit::DocumentMut>().expect("valid toml")
    }

    #[test]
    fn typed_values_are_not_all_strings() {
        assert!(matches!(
            typed_toml_value("true"),
            toml_edit::Value::Boolean(_)
        ));
        assert!(matches!(
            typed_toml_value("42"),
            toml_edit::Value::Integer(_)
        ));
        assert!(matches!(
            typed_toml_value("1.5"),
            toml_edit::Value::Float(_)
        ));
        match typed_toml_value("4h") {
            toml_edit::Value::String(formatted) => {
                assert_eq!(formatted.value(), "4h");
            }
            other => panic!("'4h' must stay a string, got {other:?}"),
        }
    }

    #[test]
    fn dotted_keys_land_at_root_not_in_last_table() {
        let mut doc = doc_from("[verification]\ncommands = [\"x\"]\n");
        insert_config_key(&mut doc, "task.strict_completion", typed_toml_value("true"))
            .expect("insert");
        let out = doc.to_string();
        let reparsed = out.parse::<toml_edit::DocumentMut>().expect("round trip");
        // The key must be readable as task.strict_completion…
        assert_eq!(
            reparsed["task"]["strict_completion"].as_bool(),
            Some(true),
            "typed boolean must survive the round trip:\n{out}"
        );
        // …and the [verification] section must be untouched.
        assert_eq!(
            reparsed["verification"]["commands"]
                .as_array()
                .map(|a| a.len()),
            Some(1),
            "existing table content must survive:\n{out}"
        );
        // strict_completion must not appear inside the [verification] body.
        let verification_body = out
            .split("[verification]")
            .nth(1)
            .expect("verification header present");
        let verification_body = match verification_body.split_once('[') {
            Some((before_next_table, _)) => before_next_table,
            None => verification_body,
        };
        assert!(
            !verification_body.contains("strict_completion"),
            "dotted key leaked into [verification]:\n{out}"
        );
    }

    #[test]
    fn existing_tables_and_comments_survive_set() {
        let mut doc =
            doc_from("# header comment\n[task]\n# inner\nsingle_active_task_per_agent = true\n");
        insert_config_key(
            &mut doc,
            "task.strict_completion",
            typed_toml_value("false"),
        )
        .expect("insert");
        let out = doc.to_string();
        assert!(out.contains("# header comment"));
        assert!(out.contains("# inner"));
        assert_eq!(
            doc["task"]["single_active_task_per_agent"].as_bool(),
            Some(true)
        );
    }

    #[test]
    fn unset_removes_dotted_leaf_only() {
        let mut doc =
            doc_from("[task]\nstrict_completion = false\n\n[verification]\ncommands = []\n");
        assert!(remove_config_key(&mut doc, "task.strict_completion").expect("remove"));
        let out = doc.to_string();
        assert!(!out.contains("strict_completion"));
        assert!(out.contains("[verification]"), "unrelated tables stay");
        assert!(!remove_config_key(&mut doc, "missing.key").expect("remove absent"));
    }

    #[test]
    fn refusing_to_clobber_a_table() {
        let mut doc = doc_from("[verification]\ncommands = []\n");
        let err = insert_config_key(&mut doc, "verification", typed_toml_value("oops"));
        assert!(err.is_err(), "must not replace a table with a scalar");
    }

    #[test]
    fn multibyte_values_round_trip() {
        let mut doc = doc_from("");
        insert_config_key(
            &mut doc,
            "project.name",
            typed_toml_value("项目「テスト」🚀"),
        )
        .expect("insert");
        let out = doc.to_string();
        let reparsed = out.parse::<toml_edit::DocumentMut>().expect("round trip");
        assert_eq!(
            reparsed["project"]["name"].as_str(),
            Some("项目「テスト」🚀")
        );
    }

    #[test]
    fn lookup_walks_nested_keys_and_returns_null_for_unknowns() {
        let config = carryctx::domain::config::CarryCtxConfig::default();
        assert_eq!(
            lookup_config_value(&config, "task.strict_completion"),
            serde_json::json!(config.task.strict_completion)
        );
        assert_eq!(
            lookup_config_value(&config, "git.main_branch"),
            serde_json::json!(config.git.main_branch)
        );
        assert_eq!(
            lookup_config_value(&config, "no.such.key"),
            serde_json::Value::Null
        );
        // Prefix collision: 'task' vs 'task_prefix'-like names must not match.
        assert_eq!(
            lookup_config_value(&config, "proj.name"),
            serde_json::Value::Null
        );
    }

    #[test]
    fn float_like_and_leading_zero_stay_strings_or_parse_cleanly() {
        assert!(matches!(
            typed_toml_value("0755"),
            toml_edit::Value::String(_)
        ));
        assert!(matches!(
            typed_toml_value("-12"),
            toml_edit::Value::Integer(_)
        ));
    }
}