Commit ac02abb
feat(verisimdb): Phase 1 Step 1 — temporal observation field on octad
Add caller-supplied real-world observation time (territory clock) to
the octad model, distinct from the existing ingestion clock.
- verisim-octad: new OctadTemporalInput { observed_at: DateTime<Utc> }
threaded through OctadInput, OctadStatus.observed_at (Option), and
the InMemoryOctadStore create/update/WAL-replay paths. Updates that
do not supply temporal preserve the prior observed_at; updates that
do supply it override.
- verisim-api: new TemporalRequest { observed_at: String } on
OctadRequest (RFC 3339); OctadStatusResponse.observed_at surfaced.
to_octad_input is now fallible — bad RFC 3339 returns 400 BadRequest
rather than being silently dropped.
- verisim-normalizer: OctadStatus literals in test fixtures updated
to populate the new field (None for synthetic test entities).
Closes the temporal-shape gap from email-octad-experiment 2026-04-27
veridicality run (genesis run scored 0.38 on temporal due to the
ingestion clock being the only available timestamp). With this change
the territory clock from an email's Date: header round-trips through
POST/GET intact.
Tests:
- verisim-octad: test_observed_at_round_trip_and_preservation
test_observed_at_absent_when_not_supplied
- verisim-api: test_temporal_observed_at_round_trip (HTTP layer,
includes 400-on-bad-RFC3339 negative path)
Workspace cargo check + verisim-octad/normalizer test suites pass
(42 + 68 + 1 new). No regressions.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 4d435dd commit ac02abb
5 files changed
Lines changed: 249 additions & 11 deletions
File tree
- verisimdb/rust-core
- verisim-api/src
- verisim-normalizer/src
- verisim-octad/src
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | | - | |
50 | | - | |
| 49 | + | |
| 50 | + | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| |||
238 | 238 | | |
239 | 239 | | |
240 | 240 | | |
| 241 | + | |
| 242 | + | |
241 | 243 | | |
242 | 244 | | |
243 | 245 | | |
| |||
246 | 248 | | |
247 | 249 | | |
248 | 250 | | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
249 | 259 | | |
250 | 260 | | |
251 | 261 | | |
| |||
277 | 287 | | |
278 | 288 | | |
279 | 289 | | |
280 | | - | |
281 | | - | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
| 293 | + | |
282 | 294 | | |
283 | 295 | | |
284 | 296 | | |
| |||
322 | 334 | | |
323 | 335 | | |
324 | 336 | | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
325 | 348 | | |
326 | 349 | | |
327 | 350 | | |
| |||
346 | 369 | | |
347 | 370 | | |
348 | 371 | | |
349 | | - | |
| 372 | + | |
350 | 373 | | |
351 | 374 | | |
352 | 375 | | |
| |||
378 | 401 | | |
379 | 402 | | |
380 | 403 | | |
| 404 | + | |
| 405 | + | |
| 406 | + | |
| 407 | + | |
| 408 | + | |
381 | 409 | | |
382 | 410 | | |
383 | 411 | | |
| |||
388 | 416 | | |
389 | 417 | | |
390 | 418 | | |
| 419 | + | |
391 | 420 | | |
392 | 421 | | |
393 | 422 | | |
| |||
856 | 885 | | |
857 | 886 | | |
858 | 887 | | |
859 | | - | |
| 888 | + | |
860 | 889 | | |
861 | 890 | | |
862 | 891 | | |
| |||
895 | 924 | | |
896 | 925 | | |
897 | 926 | | |
898 | | - | |
| 927 | + | |
899 | 928 | | |
900 | 929 | | |
901 | 930 | | |
| |||
2246 | 2275 | | |
2247 | 2276 | | |
2248 | 2277 | | |
| 2278 | + | |
2249 | 2279 | | |
2250 | 2280 | | |
2251 | 2281 | | |
| |||
2286 | 2316 | | |
2287 | 2317 | | |
2288 | 2318 | | |
| 2319 | + | |
| 2320 | + | |
| 2321 | + | |
| 2322 | + | |
| 2323 | + | |
| 2324 | + | |
| 2325 | + | |
| 2326 | + | |
| 2327 | + | |
| 2328 | + | |
| 2329 | + | |
| 2330 | + | |
| 2331 | + | |
| 2332 | + | |
| 2333 | + | |
| 2334 | + | |
| 2335 | + | |
| 2336 | + | |
| 2337 | + | |
| 2338 | + | |
| 2339 | + | |
| 2340 | + | |
| 2341 | + | |
| 2342 | + | |
| 2343 | + | |
| 2344 | + | |
| 2345 | + | |
| 2346 | + | |
| 2347 | + | |
| 2348 | + | |
| 2349 | + | |
| 2350 | + | |
| 2351 | + | |
| 2352 | + | |
| 2353 | + | |
| 2354 | + | |
| 2355 | + | |
| 2356 | + | |
| 2357 | + | |
| 2358 | + | |
| 2359 | + | |
| 2360 | + | |
| 2361 | + | |
| 2362 | + | |
| 2363 | + | |
| 2364 | + | |
| 2365 | + | |
| 2366 | + | |
| 2367 | + | |
| 2368 | + | |
| 2369 | + | |
| 2370 | + | |
| 2371 | + | |
| 2372 | + | |
| 2373 | + | |
| 2374 | + | |
| 2375 | + | |
| 2376 | + | |
| 2377 | + | |
| 2378 | + | |
| 2379 | + | |
| 2380 | + | |
| 2381 | + | |
| 2382 | + | |
| 2383 | + | |
| 2384 | + | |
| 2385 | + | |
| 2386 | + | |
| 2387 | + | |
| 2388 | + | |
| 2389 | + | |
| 2390 | + | |
| 2391 | + | |
| 2392 | + | |
| 2393 | + | |
| 2394 | + | |
| 2395 | + | |
| 2396 | + | |
| 2397 | + | |
| 2398 | + | |
| 2399 | + | |
| 2400 | + | |
| 2401 | + | |
| 2402 | + | |
| 2403 | + | |
2289 | 2404 | | |
2290 | 2405 | | |
2291 | 2406 | | |
| |||
2299 | 2414 | | |
2300 | 2415 | | |
2301 | 2416 | | |
| 2417 | + | |
2302 | 2418 | | |
2303 | 2419 | | |
2304 | 2420 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
721 | 721 | | |
722 | 722 | | |
723 | 723 | | |
| 724 | + | |
724 | 725 | | |
725 | 726 | | |
726 | 727 | | |
| |||
742 | 743 | | |
743 | 744 | | |
744 | 745 | | |
| 746 | + | |
745 | 747 | | |
746 | 748 | | |
747 | 749 | | |
| |||
Lines changed: 3 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
960 | 960 | | |
961 | 961 | | |
962 | 962 | | |
| 963 | + | |
963 | 964 | | |
964 | 965 | | |
965 | 966 | | |
| |||
991 | 992 | | |
992 | 993 | | |
993 | 994 | | |
| 995 | + | |
994 | 996 | | |
995 | 997 | | |
996 | 998 | | |
| |||
1013 | 1015 | | |
1014 | 1016 | | |
1015 | 1017 | | |
| 1018 | + | |
1016 | 1019 | | |
1017 | 1020 | | |
1018 | 1021 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
117 | | - | |
| 117 | + | |
118 | 118 | | |
119 | | - | |
| 119 | + | |
120 | 120 | | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
121 | 128 | | |
122 | 129 | | |
123 | 130 | | |
| |||
178 | 185 | | |
179 | 186 | | |
180 | 187 | | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
181 | 192 | | |
182 | 193 | | |
183 | 194 | | |
| |||
232 | 243 | | |
233 | 244 | | |
234 | 245 | | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
235 | 255 | | |
236 | 256 | | |
237 | 257 | | |
| |||
429 | 449 | | |
430 | 450 | | |
431 | 451 | | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
432 | 458 | | |
433 | 459 | | |
434 | 460 | | |
| |||
0 commit comments