Add Pareto frontier chart to Harbor-Index blog - #1
Merged
linhaowei1 merged 5 commits intoJul 1, 2026
Merged
Conversation
crystalxyz
force-pushed
the
add-pareto-frontier-chart
branch
from
June 30, 2026 15:21
e459cbe to
2fd19e5
Compare
Plots avg cost per trial against Harbor-Index pass rate for all 18 agent-model pairs, with the 7 cost-optimal points traced by a smooth monotone frontier line that draws in left-to-right when scrolled into view. Each point is a provider logo chip: solid border for native CLI, dotted for Terminus 2, with a brand-colored boundary per provider. Off-frontier models are greyed so the frontier stays prominent. Cost axis is log-scaled, and hovering a chip shows the model, cost, and pass rate. Data from analysis/token/outputs/08_harbor_index_pareto.csv in harbor-adapters-experiments (cost = avg_cost_per_trial_usd, score = score_pct, frontier = on_frontier). Provider logos under public/logos. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
crystalxyz
force-pushed
the
add-pareto-frontier-chart
branch
from
June 30, 2026 16:53
2fd19e5 to
d22ca2c
Compare
…pareto-frontier-chart # Conflicts: # content/blog/harbor-index.mdx
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
A right-rail 'On this page' menu (xl+ screens) built on fumadocs' AnchorProvider/TOCItem, with active-section highlighting. Scoped to the harbor-index slug so other news posts are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Place the cost/pass-rate Pareto chart right after the intro (before the pass-rate leaderboard) and drop the separate 'Cost efficiency analysis' subsection from Findings. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
linhaowei1
pushed a commit
that referenced
this pull request
Jul 3, 2026
Harbor-Index blog: Findings restructure, unified pastel palette, citations, copy polish
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.
Targets the
blog/harbor-indexbranch behind PR harbor-framework#60 so this folds into that WIP blog.What this adds
components/harbor-index-pareto-chart.tsx— arechartsComposedChartscaffold for a cost-vs-pass-rate Pareto frontier:$0–$1000cost X axis,0–30%pass-rate Y axis, dashedCartesianGrid, a dashed frontierLine, and two logo-dotScatterseries (mini vs. standard models). Isolated"use client"file so it doesn't change the rendering boundary of the existing server-rendered charts.content/blog/harbor-index.mdx— imports the component and drops it into a new Cost efficiency analysis section.Status
The chart is an empty frame for now — the
frontierData/miniModels/standardModelsarrays are intentionally empty (with the expected{ label, cost, score, logoUrl }shape documented) so the numbers can be filled in once the cost-reconstruction is final. Renders cleanly inbun devat HTTP 200 with no type/lint errors.🤖 Generated with Claude Code