feat(schema): provenance grading — assertion intent, S×D×V axes, entity credibility (#504)#505
Open
NOVA-Openclaw wants to merge 1 commit into
Open
feat(schema): provenance grading — assertion intent, S×D×V axes, entity credibility (#504)#505NOVA-Openclaw wants to merge 1 commit into
NOVA-Openclaw wants to merge 1 commit into
Conversation
…ty credibility (#504) Adds: - assertion_intent enum on entity_facts (asserted/speculative/fictional/disclaimed/hypothetical) - mutability_class enum on entity_facts (immutable/slow_changing/stateful) - reporting_distance + verification_quality on entity_fact_sources (per-source D and V axes) - source_session_id on entity_fact_sources (corroboration independence dedup) - entity_credibility table (computed per entity×domain S axis) - v_fact_grades view (query-time S×D×V computation) - v_current_stateful_facts view (latest stateful value per entity+key) - get_strictest_mutability() helper function - Rollback migration included Design decisions: - NULL verification_quality = not assessed (neutral 0.5); 0.0 = failed verification - Mixed mutability classes resolved by strictest-class rule (immutable > slow_changing > stateful) - v1 contradiction detector: differing values on immutable keys - S×D×V never materialized — computed at query time - Recompute cron is a deterministic script, not an agent prompt Closes #504
This was referenced Jul 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Schema additions
Design decisions
Notes
Closes #504