Some checks are pending
CI / lint-and-test (push) Waiting to run
- Add broad Cory-style outcome scenarios to the open-ended benchmark so regular-use ambiguity is tested, not only exact ID canaries. - Add a clone-proven cross-surface strategy anchor packet that updates the mapped rich proposal anchor only after Claim D exists. - Retain VPS Docker DB, claim/body metadata, and cross-surface proof reports with ruff plus 37 focused tests passing. `docs/reports/leo-working-state-20260709/cory-expected-working-leo-outcomes-20260709.md` `docs/reports/leo-working-state-20260709/cross-surface-apply-authorized-commit.sql` `docs/reports/leo-working-state-20260709/cross-surface-clone-rehearsal-current.log` `docs/reports/leo-working-state-20260709/cross-surface-clone-rehearsal-failed-source-id-constraint.log` `docs/reports/leo-working-state-20260709/cross-surface-delete-rollback.sql` `docs/reports/leo-working-state-20260709/cross-surface-packet.json` `docs/reports/leo-working-state-20260709/cross-surface-postflight.sql` `docs/reports/leo-working-state-20260709/cross-surface-preflight.sql` `docs/reports/leo-working-state-20260709/cross-surface-resolution-current.md` `docs/reports/leo-working-state-20260709/current-truth-index.md` `docs/reports/leo-working-state-20260709/leo-db-state-17-cory-outcome-benchmark.svg` `docs/reports/leo-working-state-20260709/leo-db-state-18-db-vs-workspace.svg` `docs/reports/leo-working-state-20260709/leo-db-state-19-claims-body-metadata.svg` `docs/reports/leo-working-state-20260709/leo-db-state-20-cross-surface-anchor.svg` `docs/reports/leo-working-state-20260709/working-leo-current-state-20260709.md` `docs/reports/leo-working-state-20260709/working-leo-definition-20260709.md` `docs/reports/leo-working-state-20260709/working-leo-execution-plan-current.md` `docs/reports/leo-working-state-20260709/working-leo-open-ended-benchmark-spec.json` `scripts/kb_cross_surface_resolution_packet.py` `scripts/working_leo_open_ended_benchmark.py` `tests/test_kb_cross_surface_resolution_packet.py` `tests/test_working_leo_open_ended_benchmark.py`
30 lines
802 B
SQL
30 lines
802 B
SQL
\set ON_ERROR_STOP on
|
|
-- Cross-surface postflight row-level readback.
|
|
|
|
select id::text,
|
|
from_node_id::text,
|
|
anchor_role,
|
|
claim_id::text,
|
|
source_id::text,
|
|
weight,
|
|
left(note, 240) as note
|
|
from public.strategy_node_anchors
|
|
where id = '47f128a0-36c5-4b60-97d4-48c32fa48bc7'::uuid;
|
|
|
|
select c.id::text,
|
|
c.status,
|
|
c.superseded_by::text,
|
|
left(c.text, 240) as text
|
|
from public.claims c
|
|
where c.id in (select id from (values
|
|
('d0000000-0000-0000-0000-000000000005'::uuid),
|
|
('e6ce4e36-15d2-53bc-8b74-dda0efc095c1'::uuid)
|
|
) as v(id))
|
|
order by c.id;
|
|
|
|
select id::text,
|
|
anchor_role,
|
|
to_shared_root_id::text,
|
|
left(note, 240) as note
|
|
from public.strategy_node_anchors
|
|
where id = 'c7dd984c-ac1b-43f9-9996-576ddf61c6d2'::uuid;
|