feat: surface custom-metric verdicts on the session read path - #183
Merged
vijaykrishna-plivo merged 2 commits intoSep 10, 2026
Conversation
The session detail endpoint (/api/sessions/:id) now includes each call's custom-metric verdicts (metric:<slug>) under the existing goal_evaluation shape — latest verdict per metric, joined to the judge registry for the display name and scoped to the session's account. Conversation goals were retired in favour of custom metrics, so goal-shape consumers render metrics with no schema change. Verified locally: GET /api/sessions/<id> returns goal_evaluation.goals built from the session's metric verdicts (pass -> achieved). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CGEdzjcwwatWYDkx87GRs9
The session read path now includes metric:<slug> verdicts with verdict 'unknown' (was pass/fail only) and adds a verdict field to each goal_evaluation entry, so consumers can render 'unknown' (metric did not apply / insufficient evidence) distinctly instead of a misleading Fail. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CGEdzjcwwatWYDkx87GRs9
samuellawerentz
approved these changes
Sep 10, 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.
Change size
No test added — verified with a local API run + confirmed working on dev (dev PR #182).
What
GET /api/sessions/:idnow surfaces each call's custom-metric verdicts (metric:<slug>) under the existingeval.verdicts.goal_evaluationshape — latest per metric, joined to the judge registry for the display name, account-scoped,pass/failonly.Why
Conversation goals were retired in favour of custom metrics. Downstream consumers that read
goal_evaluation.goalsrender metrics where goals used to appear, with no schema change on their side.Prod promotion of dev #182
Same change already merged + verified on dev (renders as the run-detail "Metrics" section). This is the
mainpromotion.🤖 Generated with Claude Code