polymath-society 0.2.13 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1294,7 +1294,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
1294
1294
 
1295
1295
  // ../../lib/calibration/index.ts
1296
1296
  var DEFAULT_CALIBRATION = {
1297
- version: "2026-07-15.1",
1297
+ version: "2026-07-16.2",
1298
1298
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
1299
1299
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
1300
1300
  // without this being updated (and re-pushed to the server).
@@ -1385,6 +1385,7 @@ var DEFAULT_CALIBRATION = {
1385
1385
  codingTiers: {
1386
1386
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
1387
1387
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
1388
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
1388
1389
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
1389
1390
  },
1390
1391
  codingBenchmarks: {
@@ -16290,7 +16290,7 @@ function computeWorkstyle(inp) {
16290
16290
 
16291
16291
  // ../../lib/calibration/index.ts
16292
16292
  var DEFAULT_CALIBRATION = {
16293
- version: "2026-07-15.1",
16293
+ version: "2026-07-16.2",
16294
16294
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16295
16295
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16296
16296
  // without this being updated (and re-pushed to the server).
@@ -16381,6 +16381,7 @@ var DEFAULT_CALIBRATION = {
16381
16381
  codingTiers: {
16382
16382
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16383
16383
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16384
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16384
16385
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16385
16386
  },
16386
16387
  codingBenchmarks: {
@@ -16752,6 +16753,8 @@ async function compileCodingProfile() {
16752
16753
  const avgWords = aggregate?.throughput?.avgWordsPerDay ?? null;
16753
16754
  const pushPctl = lognPct(avgWords, tiers?.push);
16754
16755
  const focusPctl = lognPct(flowPctDay, tiers?.focus);
16756
+ const workDayHrs = aggregate?.flow?.flow?.workDayHours ? Math.round(aggregate.flow.flow.workDayHours * 10) / 10 : null;
16757
+ const hoursPctl = lognPct(workDayHrs, tiers?.hours);
16755
16758
  const hoursAt = (min) => Object.entries(pHist).reduce((a, [k, v]) => Number(k) >= min ? a + v : a, 0) / 60;
16756
16759
  const orchPctl = hoursAt(5) >= 5 || hoursAt(3) >= 10 && parallelism.queueOps >= 1e3 ? 99.5 : hoursAt(3) >= 10 ? 99 : hoursAt(2) >= 0.1 * (soloMin + parMin) / 60 ? 97 : hoursAt(2) >= 2 ? 90 : 70;
16757
16760
  const stackUp = [
@@ -16761,14 +16764,25 @@ async function compileCodingProfile() {
16761
16764
  `you peak at ~${peakWords.toLocaleString()} words of pure direction in a single day \u2014 the very top sustain ~${BEST.throughput.topAvgWordsPerDay.toLocaleString()} every day, week after week; the wildest single days on record push ~${BEST.throughput.topPeakWordsPerDay.toLocaleString()}`
16762
16765
  ),
16763
16766
  sRow(
16764
- "How well you use AI",
16767
+ "Hours you put in",
16768
+ null,
16769
+ workDayHrs != null ? `~${workDayHrs}h of active building on a typical work day \u2014 engaged builders average ~3h, and sustaining 7h+ day after day, week after week, is top-1% territory` : "not enough dated activity yet to measure a typical work day"
16770
+ ),
16771
+ sRow(
16772
+ "Your AI parallelism",
16765
16773
  ceilOf("delegation"),
16766
16774
  soloPct != null ? `~${soloPct}% of your hours you drive a single agent (${Math.round(soloMin / 60)}h solo vs ${Math.round(parMin / 60)}h with 2+ live) \u2014 the Claude Code lead keeps 10\u201315 going at once, so this is the single biggest speed-up still on the table` : "you brief the AI sharply, but mostly drive one agent at a time \u2014 the top run 10\u201315 in parallel, a several-fold speed-up"
16767
16775
  ),
16776
+ // The evidence line cites the RANKING metric (flow as a share of the work
16777
+ // day), never absolute hours — a friend with MORE flow hours over a longer
16778
+ // day landed a WORSE percentile and the hours-based line read as a bug
16779
+ // (2026-07-16: "he has more hours but less percentile??"). The label says
16780
+ // "when you work" ON PURPOSE: this chip ranks quality of the hours, and
16781
+ // the volume of hours is its own chip above.
16768
16782
  sRow(
16769
- "How well you focus",
16783
+ "Focus quality when you work",
16770
16784
  focusScore,
16771
- flowHrsDay != null ? `only ~${flowHrsDay}h of your day is true deep flow \u2014 the best hold ~4h in one unbroken block; yours fragments across parallel sessions, so the gain is directing your attention at one thread for longer` : "your attention scatters across parallel sessions \u2014 directing it at one thread for longer is the unlock"
16785
+ flowPctDay != null ? `~${Math.round(flowPctDay * 100)}% of your work day is true deep flow${flowHrsDay != null ? ` (~${flowHrsDay}h)` : ""} \u2014 the very best hold ~${Math.round(BEST.flow.topPctOfDay * 100)}% of theirs in one unbroken block; yours fragments across parallel sessions, so the gain is directing your attention at one thread for longer` : "your attention scatters across parallel sessions \u2014 directing it at one thread for longer is the unlock"
16772
16786
  ),
16773
16787
  // The four estimates LEAD with a concrete moment from their own sessions, then an
16774
16788
  // HONEST caveat — how many graded sessions back the read. No invented weakness, no
@@ -16801,12 +16815,17 @@ async function compileCodingProfile() {
16801
16815
  r.metric = avgWords;
16802
16816
  r.curve = "push";
16803
16817
  }
16804
- if (r.label === "How well you focus" && focusPctl != null) {
16818
+ if (r.label === "Hours you put in" && hoursPctl != null) {
16819
+ r.percentile = hoursPctl;
16820
+ r.metric = workDayHrs;
16821
+ r.curve = "hours";
16822
+ }
16823
+ if (r.label === "Focus quality when you work" && focusPctl != null) {
16805
16824
  r.percentile = focusPctl;
16806
16825
  r.metric = flowPctDay;
16807
16826
  r.curve = "focus";
16808
16827
  }
16809
- if (r.label === "How well you use AI") r.percentile = orchPctl;
16828
+ if (r.label === "Your AI parallelism") r.percentile = orchPctl;
16810
16829
  }
16811
16830
  return { generatedAt: (/* @__PURE__ */ new Date()).toISOString(), gradedSessions: grades.length, agglomeration, outcomeCadence, dayDigest, dayChart, timeline, walkthroughs, rubric, wordsByDay, dayThroughput, throughputCeiling: tCeiling, stackUp, criteria, parallelism, throughput, workstyle, flow, focus, expertiseMap, frontierArsenal, frontierDetail, coaching, gap, aggregate, delegationRollup, gapDist, projects };
16812
16831
  }
@@ -16033,7 +16033,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
16033
16033
 
16034
16034
  // ../../lib/calibration/index.ts
16035
16035
  var DEFAULT_CALIBRATION = {
16036
- version: "2026-07-15.1",
16036
+ version: "2026-07-16.2",
16037
16037
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16038
16038
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16039
16039
  // without this being updated (and re-pushed to the server).
@@ -16124,6 +16124,7 @@ var DEFAULT_CALIBRATION = {
16124
16124
  codingTiers: {
16125
16125
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16126
16126
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16127
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16127
16128
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16128
16129
  },
16129
16130
  codingBenchmarks: {
@@ -16440,7 +16440,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
16440
16440
 
16441
16441
  // ../../lib/calibration/index.ts
16442
16442
  var DEFAULT_CALIBRATION = {
16443
- version: "2026-07-15.1",
16443
+ version: "2026-07-16.2",
16444
16444
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16445
16445
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16446
16446
  // without this being updated (and re-pushed to the server).
@@ -16531,6 +16531,7 @@ var DEFAULT_CALIBRATION = {
16531
16531
  codingTiers: {
16532
16532
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16533
16533
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16534
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16534
16535
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16535
16536
  },
16536
16537
  codingBenchmarks: {
@@ -16050,7 +16050,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
16050
16050
 
16051
16051
  // ../../lib/calibration/index.ts
16052
16052
  var DEFAULT_CALIBRATION = {
16053
- version: "2026-07-15.1",
16053
+ version: "2026-07-16.2",
16054
16054
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16055
16055
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16056
16056
  // without this being updated (and re-pushed to the server).
@@ -16141,6 +16141,7 @@ var DEFAULT_CALIBRATION = {
16141
16141
  codingTiers: {
16142
16142
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16143
16143
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16144
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16144
16145
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16145
16146
  },
16146
16147
  codingBenchmarks: {
@@ -394,7 +394,7 @@ var IDLE_CAP_MS = 12 * 6e4;
394
394
 
395
395
  // ../../lib/calibration/index.ts
396
396
  var DEFAULT_CALIBRATION = {
397
- version: "2026-07-15.1",
397
+ version: "2026-07-16.2",
398
398
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
399
399
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
400
400
  // without this being updated (and re-pushed to the server).
@@ -485,6 +485,7 @@ var DEFAULT_CALIBRATION = {
485
485
  codingTiers: {
486
486
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
487
487
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
488
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
488
489
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
489
490
  },
490
491
  codingBenchmarks: {
@@ -16016,7 +16016,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
16016
16016
 
16017
16017
  // ../../lib/calibration/index.ts
16018
16018
  var DEFAULT_CALIBRATION = {
16019
- version: "2026-07-15.1",
16019
+ version: "2026-07-16.2",
16020
16020
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16021
16021
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16022
16022
  // without this being updated (and re-pushed to the server).
@@ -16107,6 +16107,7 @@ var DEFAULT_CALIBRATION = {
16107
16107
  codingTiers: {
16108
16108
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16109
16109
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16110
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16110
16111
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16111
16112
  },
16112
16113
  codingBenchmarks: {
@@ -203,7 +203,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
203
203
 
204
204
  // ../../lib/calibration/index.ts
205
205
  var DEFAULT_CALIBRATION = {
206
- version: "2026-07-15.1",
206
+ version: "2026-07-16.2",
207
207
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
208
208
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
209
209
  // without this being updated (and re-pushed to the server).
@@ -294,6 +294,7 @@ var DEFAULT_CALIBRATION = {
294
294
  codingTiers: {
295
295
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
296
296
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
297
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
297
298
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
298
299
  },
299
300
  codingBenchmarks: {
@@ -394,7 +394,7 @@ var IDLE_CAP_MS = 12 * 6e4;
394
394
 
395
395
  // ../../lib/calibration/index.ts
396
396
  var DEFAULT_CALIBRATION = {
397
- version: "2026-07-15.1",
397
+ version: "2026-07-16.2",
398
398
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
399
399
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
400
400
  // without this being updated (and re-pushed to the server).
@@ -485,6 +485,7 @@ var DEFAULT_CALIBRATION = {
485
485
  codingTiers: {
486
486
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
487
487
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
488
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
488
489
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
489
490
  },
490
491
  codingBenchmarks: {
@@ -16291,7 +16291,7 @@ function computeWorkstyle(inp) {
16291
16291
 
16292
16292
  // ../../lib/calibration/index.ts
16293
16293
  var DEFAULT_CALIBRATION = {
16294
- version: "2026-07-15.1",
16294
+ version: "2026-07-16.2",
16295
16295
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16296
16296
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16297
16297
  // without this being updated (and re-pushed to the server).
@@ -16382,6 +16382,7 @@ var DEFAULT_CALIBRATION = {
16382
16382
  codingTiers: {
16383
16383
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16384
16384
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16385
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16385
16386
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16386
16387
  },
16387
16388
  codingBenchmarks: {
@@ -16753,6 +16754,8 @@ async function compileCodingProfile() {
16753
16754
  const avgWords = aggregate?.throughput?.avgWordsPerDay ?? null;
16754
16755
  const pushPctl = lognPct(avgWords, tiers?.push);
16755
16756
  const focusPctl = lognPct(flowPctDay, tiers?.focus);
16757
+ const workDayHrs = aggregate?.flow?.flow?.workDayHours ? Math.round(aggregate.flow.flow.workDayHours * 10) / 10 : null;
16758
+ const hoursPctl = lognPct(workDayHrs, tiers?.hours);
16756
16759
  const hoursAt = (min) => Object.entries(pHist).reduce((a, [k, v]) => Number(k) >= min ? a + v : a, 0) / 60;
16757
16760
  const orchPctl = hoursAt(5) >= 5 || hoursAt(3) >= 10 && parallelism.queueOps >= 1e3 ? 99.5 : hoursAt(3) >= 10 ? 99 : hoursAt(2) >= 0.1 * (soloMin + parMin) / 60 ? 97 : hoursAt(2) >= 2 ? 90 : 70;
16758
16761
  const stackUp = [
@@ -16762,14 +16765,25 @@ async function compileCodingProfile() {
16762
16765
  `you peak at ~${peakWords.toLocaleString()} words of pure direction in a single day \u2014 the very top sustain ~${BEST.throughput.topAvgWordsPerDay.toLocaleString()} every day, week after week; the wildest single days on record push ~${BEST.throughput.topPeakWordsPerDay.toLocaleString()}`
16763
16766
  ),
16764
16767
  sRow(
16765
- "How well you use AI",
16768
+ "Hours you put in",
16769
+ null,
16770
+ workDayHrs != null ? `~${workDayHrs}h of active building on a typical work day \u2014 engaged builders average ~3h, and sustaining 7h+ day after day, week after week, is top-1% territory` : "not enough dated activity yet to measure a typical work day"
16771
+ ),
16772
+ sRow(
16773
+ "Your AI parallelism",
16766
16774
  ceilOf("delegation"),
16767
16775
  soloPct != null ? `~${soloPct}% of your hours you drive a single agent (${Math.round(soloMin / 60)}h solo vs ${Math.round(parMin / 60)}h with 2+ live) \u2014 the Claude Code lead keeps 10\u201315 going at once, so this is the single biggest speed-up still on the table` : "you brief the AI sharply, but mostly drive one agent at a time \u2014 the top run 10\u201315 in parallel, a several-fold speed-up"
16768
16776
  ),
16777
+ // The evidence line cites the RANKING metric (flow as a share of the work
16778
+ // day), never absolute hours — a friend with MORE flow hours over a longer
16779
+ // day landed a WORSE percentile and the hours-based line read as a bug
16780
+ // (2026-07-16: "he has more hours but less percentile??"). The label says
16781
+ // "when you work" ON PURPOSE: this chip ranks quality of the hours, and
16782
+ // the volume of hours is its own chip above.
16769
16783
  sRow(
16770
- "How well you focus",
16784
+ "Focus quality when you work",
16771
16785
  focusScore,
16772
- flowHrsDay != null ? `only ~${flowHrsDay}h of your day is true deep flow \u2014 the best hold ~4h in one unbroken block; yours fragments across parallel sessions, so the gain is directing your attention at one thread for longer` : "your attention scatters across parallel sessions \u2014 directing it at one thread for longer is the unlock"
16786
+ flowPctDay != null ? `~${Math.round(flowPctDay * 100)}% of your work day is true deep flow${flowHrsDay != null ? ` (~${flowHrsDay}h)` : ""} \u2014 the very best hold ~${Math.round(BEST.flow.topPctOfDay * 100)}% of theirs in one unbroken block; yours fragments across parallel sessions, so the gain is directing your attention at one thread for longer` : "your attention scatters across parallel sessions \u2014 directing it at one thread for longer is the unlock"
16773
16787
  ),
16774
16788
  // The four estimates LEAD with a concrete moment from their own sessions, then an
16775
16789
  // HONEST caveat — how many graded sessions back the read. No invented weakness, no
@@ -16802,12 +16816,17 @@ async function compileCodingProfile() {
16802
16816
  r.metric = avgWords;
16803
16817
  r.curve = "push";
16804
16818
  }
16805
- if (r.label === "How well you focus" && focusPctl != null) {
16819
+ if (r.label === "Hours you put in" && hoursPctl != null) {
16820
+ r.percentile = hoursPctl;
16821
+ r.metric = workDayHrs;
16822
+ r.curve = "hours";
16823
+ }
16824
+ if (r.label === "Focus quality when you work" && focusPctl != null) {
16806
16825
  r.percentile = focusPctl;
16807
16826
  r.metric = flowPctDay;
16808
16827
  r.curve = "focus";
16809
16828
  }
16810
- if (r.label === "How well you use AI") r.percentile = orchPctl;
16829
+ if (r.label === "Your AI parallelism") r.percentile = orchPctl;
16811
16830
  }
16812
16831
  return { generatedAt: (/* @__PURE__ */ new Date()).toISOString(), gradedSessions: grades.length, agglomeration, outcomeCadence, dayDigest, dayChart, timeline, walkthroughs, rubric, wordsByDay, dayThroughput, throughputCeiling: tCeiling, stackUp, criteria, parallelism, throughput, workstyle, flow, focus, expertiseMap, frontierArsenal, frontierDetail, coaching, gap, aggregate, delegationRollup, gapDist, projects };
16813
16832
  }
@@ -16209,7 +16209,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
16209
16209
 
16210
16210
  // ../../lib/calibration/index.ts
16211
16211
  var DEFAULT_CALIBRATION = {
16212
- version: "2026-07-15.1",
16212
+ version: "2026-07-16.2",
16213
16213
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16214
16214
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16215
16215
  // without this being updated (and re-pushed to the server).
@@ -16300,6 +16300,7 @@ var DEFAULT_CALIBRATION = {
16300
16300
  codingTiers: {
16301
16301
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16302
16302
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16303
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16303
16304
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16304
16305
  },
16305
16306
  codingBenchmarks: {
@@ -15842,7 +15842,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
15842
15842
 
15843
15843
  // ../../lib/calibration/index.ts
15844
15844
  var DEFAULT_CALIBRATION = {
15845
- version: "2026-07-15.1",
15845
+ version: "2026-07-16.2",
15846
15846
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
15847
15847
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
15848
15848
  // without this being updated (and re-pushed to the server).
@@ -15933,6 +15933,7 @@ var DEFAULT_CALIBRATION = {
15933
15933
  codingTiers: {
15934
15934
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
15935
15935
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
15936
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
15936
15937
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
15937
15938
  },
15938
15939
  codingBenchmarks: {
@@ -205,7 +205,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
205
205
 
206
206
  // ../../lib/calibration/index.ts
207
207
  var DEFAULT_CALIBRATION = {
208
- version: "2026-07-15.1",
208
+ version: "2026-07-16.2",
209
209
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
210
210
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
211
211
  // without this being updated (and re-pushed to the server).
@@ -296,6 +296,7 @@ var DEFAULT_CALIBRATION = {
296
296
  codingTiers: {
297
297
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
298
298
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
299
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
299
300
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
300
301
  },
301
302
  codingBenchmarks: {
@@ -16103,7 +16103,7 @@ var TRANSCRIPT_LINE_RE = new RegExp(`^\\s*(${NOTE})((,| and) ${NOTE})*\\s*$|^\\s
16103
16103
 
16104
16104
  // ../../lib/calibration/index.ts
16105
16105
  var DEFAULT_CALIBRATION = {
16106
- version: "2026-07-15.1",
16106
+ version: "2026-07-16.2",
16107
16107
  // = RUBRIC_FINGERPRINT of the shipped npm rubric (packages/coding-analyzer/
16108
16108
  // src/grade/criteria.ts). A unit test fails loud when the rubric changes
16109
16109
  // without this being updated (and re-pushed to the server).
@@ -16194,6 +16194,7 @@ var DEFAULT_CALIBRATION = {
16194
16194
  codingTiers: {
16195
16195
  push: { median: 300, sigma: 0.91, tag: "estimated \u2014 log-normal fit", source: "Anthropic 2026 Claude Code study (400k sessions): median engaged user ~8 prompts/day at ~35 words \u2014 ~300 directed words/day; tail: a 1-in-1,000 user AVERAGES ~5k directed words/day (near-daily heavy dictation, clearly below the ~10k single-day record). AVERAGE over substantial days, cumulative not spiky." },
16196
16196
  focus: { median: 0.08, sigma: 0.559, tag: "estimated \u2014 proxy-anchored", source: "median: Anthropic 20h/week engaged-user figure implies ~1h/day of true rapid exchange against an 8h working day; ceiling anchored to the ~4h/day deep-work limit (45% share = 1-in-1,000). AVERAGE share, cumulative not spiky." },
16197
+ hours: { median: 3, sigma: 0.4, tag: "estimated \u2014 proxy-anchored", source: "median: RescueTime-measured ~2h48m of real productive time/day (same source as the flow benchmark) \u2248 3h of active building; shape: sustaining ~7.5h/day \u2248 top 1%, a ~12h/day average \u2248 1-in-3,000. AVERAGE work-day length, cumulative not spiky." },
16197
16198
  orchestration: { tag: "estimated \u2014 behavior bands", source: "no published concurrency distribution exists; ceiling anchored to the Claude Code lead's documented 10-15 parallel sessions" }
16198
16199
  },
16199
16200
  codingBenchmarks: {