Skip to content

contract: TemporalPov range filter + knowledge/board: stacked-awareness & opponent-modeling arcs (waves 1–2)#686

Merged
AdaWorldAPI merged 3 commits into
mainfrom
claude/review-claude-board-files-nhqgx1
Jul 12, 2026
Merged

contract: TemporalPov range filter + knowledge/board: stacked-awareness & opponent-modeling arcs (waves 1–2)#686
AdaWorldAPI merged 3 commits into
mainfrom
claude/review-claude-board-files-nhqgx1

Conversation

@AdaWorldAPI

@AdaWorldAPI AdaWorldAPI commented Jul 12, 2026

Copy link
Copy Markdown
Owner

What

Three commits:

  1. eee259be — wave-1 synthesis (knowledge doc + board): the stacked-awareness/opponent-modeling arc — five stockfish-rs probes recorded with honest grades (awareness ladder L0→L1 ~100×; L0 is structurally the codex POV defect measured; naive + diversion-vector L2 both fail on the synthetic corpus; NNUE prices sacrifice compensation; wedge detection hits the pre-registered Nxb5; counterfactual rung 5/5; phase-mask filter hurts retrieval while phase proves emergent in accumulator geometry). E-SF-AWARENESS-OPPONENT-ARC-1 prepended.

  2. 0ed93b59 — contract: TemporalPov (operator-directed): zero-dep temporal_pov module in lance-graph-contractLanceVersion, half-open VersionRange (contains/intersect/len), TemporalPov { range, rung } with at(ref_version, rung) mirroring the planner's QueryReference::at. Deliberately does NOT duplicate the planner's EpistemicMode/classify/deinterlace (avoids the documented type-duplication anti-pattern; doc-comments name the canonical source). 11 unit tests + 1 doctest; clippy -D warnings clean; LATEST_STATE Contract Inventory updated in the same commit.

  3. 648a8402 — wave-2 synthesis: trap-lure GREEN (bait rate 0.767, +1592 cp pooled, safety clause held; scope honest — ground-truth style models; the composite finding: lure synthesis works, per-opponent style inference is the bottleneck), holes/piece-palette/lichess honest partials with named follow-up knobs, the lichess-rs scaffold + baked-release/JIT game-DB design note, the standing statistical-toolbox rule (ndarray::hpc::reliability + crates/jc Jirak pillar; per-player style stability as an ICC question), and queued D-SF-FILTER-1. E-SF-TRAP-LURE-GREEN-1 prepended; AGENT_LOG entries for both waves.

Companion PRs/artifacts: stockfish-rs PR #10 (the eight probe examples), AdaWorldAPI/lichess-rs initial scaffold (ce44ada on main).

🤖 Generated with Claude Code

https://claude.ai/code/session_01Awg6TXocHcwTtc6eGsHcdD


Generated by Claude Code

Summary by CodeRabbit

  • New Features

    • Added temporal point-of-view filtering for versioned reads, including range-based admission and reader-rung metadata.
    • Added boundary-safe range operations for checking, intersecting, and measuring version windows.
    • Added supporting documentation for trap detection, awareness probes, opponent modeling, and real-rating analysis.
  • Documentation

    • Updated governance logs, current-state records, knowledge documentation, and epiphany findings with recent probe results and statistical guidance.
  • Tests

    • Added coverage for range boundaries, intersections, empty ranges, saturation limits, and temporal POV behavior.

claude added 3 commits July 12, 2026 08:08
…ecorded (real-play green, synthetic-style fails named)

Co-Authored-By: Claude <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Awg6TXocHcwTtc6eGsHcdD
…rror of the temporal.rs version-range/rung read

Adds lance_graph_contract::temporal_pov with VersionRange (half-open
[from, to) interval over LanceVersion) and TemporalPov (range + rung),
mirroring lance-graph-planner::temporal's QueryReference/deinterlace
version-range vocabulary (crates/lance-graph-planner/src/temporal.rs)
without reimplementing EpistemicMode/TemporalStatus/classify/deinterlace,
which stay downstream in the planner crate.

TemporalPov::at(ref_version, rung) mirrors QueryReference::at; admits()
covers only the version-range half of admission (EpistemicMode::Strict's
documented "row_version <= ref_version" semantics), leaving per-row
knowable_from/Spoiler classification to the planner's classify/deinterlace.

Instantiates E-MARKOV-TEMPORAL-STREAM-1 (.claude/board/EPIPHANIES.md,
2026-07-10) and its measured worked example D-SF-EPISODIC-1
(.claude/knowledge/stockfish-nnue-as-perturbation-cascade.md).

11 unit tests + 1 doctest, cargo test/clippy -p lance-graph-contract clean.
LATEST_STATE.md Contract Inventory updated same commit per board hygiene.

Co-Authored-By: Claude <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Awg6TXocHcwTtc6eGsHcdD
…st partials, TemporalPov + lichess-rs recorded

Co-Authored-By: Claude <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Awg6TXocHcwTtc6eGsHcdD
@cursor

cursor Bot commented Jul 12, 2026

Copy link
Copy Markdown

Bugbot couldn't run - usage limit reached

Bugbot is counted against Cursor usage for this user or team, and this run hit a usage or spend limit.

A user or team admin can review and increase usage limits in the Cursor dashboard.

(requestId: serverGenReqId_6aec33f1-c065-4036-be1f-874b44b67518)

@coderabbitai

coderabbitai Bot commented Jul 12, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 6efff026-9250-4e39-9e63-17e2b5b34cc5

📥 Commits

Reviewing files that changed from the base of the PR and between 3c5dc32 and 648a840.

📒 Files selected for processing (6)
  • .claude/board/AGENT_LOG.md
  • .claude/board/EPIPHANIES.md
  • .claude/board/LATEST_STATE.md
  • .claude/knowledge/stockfish-nnue-as-perturbation-cascade.md
  • crates/lance-graph-contract/src/lib.rs
  • crates/lance-graph-contract/src/temporal_pov.rs

📝 Walkthrough

Walkthrough

Adds a public TemporalPov contract with half-open version ranges, admission methods, boundary tests, and contract inventory documentation. It also records Stockfish awareness and trap probe findings, measurement rules, scaffold notes, and follow-up work in project board documents.

Changes

Temporal POV contract

Layer / File(s) Summary
Temporal range contract and validation
crates/lance-graph-contract/src/lib.rs, crates/lance-graph-contract/src/temporal_pov.rs, .claude/board/LATEST_STATE.md
Adds VersionRange and TemporalPov, their interval and admission APIs, saturation handling, public module wiring, and boundary-focused tests.
Probe findings and research records
.claude/knowledge/..., .claude/board/AGENT_LOG.md, .claude/board/EPIPHANIES.md
Documents awareness, trap, hole, piece-palette, rating, scaffold, statistical, and follow-up probe results with corresponding board entries.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

Poem

A rabbit hops through ranges wide,
Half-open doors swing side to side.
Probes leave green trails in the night,
New contracts keep the bounds just right.
“Binky!” says Bunny—what a flight!

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately reflects the main contract addition and the related knowledge/board documentation updates for waves 1–2.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@AdaWorldAPI AdaWorldAPI merged commit 67b063d into main Jul 12, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants