From 420e62e7ea88519fbe66cceba62b0f7123671c8c Mon Sep 17 00:00:00 2001 From: heyoub Date: Thu, 16 Jul 2026 10:35:14 -0400 Subject: [PATCH] fix(justfile): update demo-helios config to journals schema The demo-helios recipe wrote the pre-scaleout workspace schema (store_path directly under [workspaces.helios]), which the current config parser rejects with "unknown field `store_path`, expected one of `primary_journal`, `journals`, ...". Move store_path into a [workspaces.helios.journals.canonical] block and point the workspace at it via primary_journal = "canonical", matching what `texo init` now generates. Co-Authored-By: Claude Opus 4.8 (1M context) --- justfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 76eaf73..5fb4aff 100644 --- a/justfile +++ b/justfile @@ -112,10 +112,14 @@ demo-helios: default_workspace = "helios" [workspaces.helios] - store_path = ".texo/helios-store" + primary_journal = "canonical" docs_glob = "examples/helios/docs/**/*.md" extractor_cmd = "$EXTRACT" + [workspaces.helios.journals.canonical] + role = "canonical" + store_path = ".texo/helios-store" + [workspaces.helios.semantics] enabled = true # Recall-favoring candidate thresholds: the judge is the correctness gate,