Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.d/1.6.0-land-keyman-eval-under-next-action.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# 1.6.0 Land Keyman and evaluation under the Event Lineage next action

Open Public post from the landed Demo Corp members and Keyman plus
evaluation sit under the Event Lineage next action, ahead of Affiliate
tree. Home list opens keep the earlier order.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project are documented here. Format follows
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versioning follows
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.0] - 2026-08-17

### Added

- Opening Public post from the landed Demo Corp members now puts
Keyman and evaluation immediately under the Event Lineage next
action, ahead of Affiliate tree. Home list opens keep evaluation
above Event Lineage. No TEPP theta is invented. No cutoff body is
invented (ADR 0016).

## [1.5.0] - 2026-08-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend",
"private": true,
"version": "1.5.0",
"version": "1.6.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
25 changes: 22 additions & 3 deletions frontend/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1474,6 +1474,18 @@ describe("App, authenticated", () => {
expect(
screen.queryByRole("status", { name: "Event Lineage next action" }),
).not.toBeInTheDocument();
const popup = document.querySelector(".popup-panel");
expect(popup).not.toBeNull();
const evaluation = within(popup as HTMLElement).getByRole("heading", {
name: "Post quality (IRT)",
});
const eventLineage = within(popup as HTMLElement).getByRole("heading", { name: "Event Lineage" });
const affiliate = within(popup as HTMLElement).getByRole("heading", { name: "Affiliate tree" });
const keyman = within(popup as HTMLElement).getByRole("heading", { name: "Keyman" });
expect(evaluation.compareDocumentPosition(eventLineage) & Node.DOCUMENT_POSITION_FOLLOWING).not.toBe(
0,
);
expect(affiliate.compareDocumentPosition(keyman) & Node.DOCUMENT_POSITION_FOLLOWING).not.toBe(0);
});

it("shows a seeded Ask exchange without an orchestrator round-trip", async () => {
Expand Down Expand Up @@ -2290,10 +2302,17 @@ describe("App, authenticated", () => {
expect(
currentNode.compareDocumentPosition(lineageNext) & Node.DOCUMENT_POSITION_FOLLOWING,
).not.toBe(0);
const keyman = within(popup as HTMLElement).getByRole("heading", { name: "Keyman" });
const evaluation = within(popup as HTMLElement).getByRole("heading", {
name: "Post quality (IRT)",
});
const affiliate = within(popup as HTMLElement).getByRole("heading", { name: "Affiliate tree" });
expect(lineageNext.compareDocumentPosition(keyman) & Node.DOCUMENT_POSITION_FOLLOWING).not.toBe(
0,
);
expect(keyman.compareDocumentPosition(evaluation) & Node.DOCUMENT_POSITION_FOLLOWING).not.toBe(0);
expect(
lineageNext.compareDocumentPosition(
within(popup as HTMLElement).getByRole("heading", { name: "Keyman" }),
) & Node.DOCUMENT_POSITION_FOLLOWING,
evaluation.compareDocumentPosition(affiliate) & Node.DOCUMENT_POSITION_FOLLOWING,
).not.toBe(0);
} finally {
HTMLElement.prototype.scrollIntoView = originalScrollIntoView;
Expand Down
63 changes: 45 additions & 18 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1375,13 +1375,15 @@ function PostDetailPopup({
)}
</section>

<EvaluationPanel
postId={postId}
accessToken={accessToken}
responses={evaluation}
canExtract={canExtract}
onEvaluated={(rows) => setEvaluation(rows)}
/>
{!focusEventLineage && (
<EvaluationPanel
postId={postId}
accessToken={accessToken}
responses={evaluation}
canExtract={canExtract}
onEvaluated={(rows) => setEvaluation(rows)}
/>
)}

<VocEvidenceSection
evidence={vocEvidence}
Expand All @@ -1408,6 +1410,29 @@ function PostDetailPopup({
/>
</section>

{focusEventLineage && (
<>
<KeymanPanel
postId={postId}
accessToken={accessToken}
keymen={keymen}
canExtract={canExtract}
onExtracted={reloadKeymen}
onSelectPost={onSelectPost}
focusPerson={focusPerson}
focusEntity={focusEntity}
focusTeam={focusTeam}
/>
<EvaluationPanel
postId={postId}
accessToken={accessToken}
responses={evaluation}
canExtract={canExtract}
onEvaluated={(rows) => setEvaluation(rows)}
/>
</>
)}

<section className="popup-section">
<h3>Affiliate tree</h3>
{affiliateTrees === null ? (
Expand Down Expand Up @@ -1436,17 +1461,19 @@ function PostDetailPopup({
)}
</section>

<KeymanPanel
postId={postId}
accessToken={accessToken}
keymen={keymen}
canExtract={canExtract}
onExtracted={reloadKeymen}
onSelectPost={onSelectPost}
focusPerson={focusPerson}
focusEntity={focusEntity}
focusTeam={focusTeam}
/>
{!focusEventLineage && (
<KeymanPanel
postId={postId}
accessToken={accessToken}
keymen={keymen}
canExtract={canExtract}
onExtracted={reloadKeymen}
onSelectPost={onSelectPost}
focusPerson={focusPerson}
focusEntity={focusEntity}
focusTeam={focusTeam}
/>
)}

{counterparties && counterparties.length > 0 && (
<CounterpartyPanel
Expand Down
2 changes: 1 addition & 1 deletion lineageweave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
"sentence_excerpts",
]

__version__ = "1.5.0"
__version__ = "1.6.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lineageweave"
version = "1.5.0"
version = "1.6.0"
description = "Reconstructs git-branch-style lineage DAGs from scattered short records using multi-channel score fusion and LLM adjudication."
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.