open-research-protocol 0.4.6 → 0.4.8

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.
Files changed (46) hide show
  1. package/README.md +10 -0
  2. package/cli/orp.py +668 -43
  3. package/docs/ORP_REASONING_KERNEL_AGENT_PILOT.md +125 -0
  4. package/docs/ORP_REASONING_KERNEL_AGENT_REPLICATION.md +97 -0
  5. package/docs/ORP_REASONING_KERNEL_CANONICAL_CONTINUATION_PILOT.md +100 -0
  6. package/docs/ORP_REASONING_KERNEL_COMPARISON_PILOT.md +116 -0
  7. package/docs/ORP_REASONING_KERNEL_CONTINUATION_PILOT.md +86 -0
  8. package/docs/ORP_REASONING_KERNEL_EVALUATION_PLAN.md +261 -0
  9. package/docs/ORP_REASONING_KERNEL_EVIDENCE_MATRIX.md +131 -0
  10. package/docs/ORP_REASONING_KERNEL_EVOLUTION.md +123 -0
  11. package/docs/ORP_REASONING_KERNEL_PICKUP_PILOT.md +107 -0
  12. package/docs/ORP_REASONING_KERNEL_TECHNICAL_VALIDATION.md +471 -0
  13. package/docs/ORP_REASONING_KERNEL_V0_1.md +15 -0
  14. package/docs/benchmarks/orp_reasoning_kernel_agent_pilot_v0_1.json +796 -0
  15. package/docs/benchmarks/orp_reasoning_kernel_agent_replication_task_smoke.json +487 -0
  16. package/docs/benchmarks/orp_reasoning_kernel_agent_replication_v0_1.json +1927 -0
  17. package/docs/benchmarks/orp_reasoning_kernel_agent_replication_v0_2.json +10217 -0
  18. package/docs/benchmarks/orp_reasoning_kernel_canonical_continuation_task_smoke.json +174 -0
  19. package/docs/benchmarks/orp_reasoning_kernel_canonical_continuation_v0_1.json +598 -0
  20. package/docs/benchmarks/orp_reasoning_kernel_comparison_v0_1.json +688 -0
  21. package/docs/benchmarks/orp_reasoning_kernel_continuation_task_smoke.json +150 -0
  22. package/docs/benchmarks/orp_reasoning_kernel_continuation_v0_1.json +448 -0
  23. package/docs/benchmarks/orp_reasoning_kernel_pickup_v0_1.json +594 -0
  24. package/docs/benchmarks/orp_reasoning_kernel_v0_1_validation.json +925 -0
  25. package/examples/README.md +2 -0
  26. package/examples/kernel/comparison/comparison-corpus.json +337 -0
  27. package/examples/kernel/comparison/next-task-continuation.json +55 -0
  28. package/examples/kernel/corpus/operations/habanero-routing.checkpoint.kernel.yml +12 -0
  29. package/examples/kernel/corpus/operations/runner-routing.policy.kernel.yml +9 -0
  30. package/examples/kernel/corpus/product/project-home.decision.kernel.yml +11 -0
  31. package/examples/kernel/corpus/research/kernel-handoff.experiment.kernel.yml +16 -0
  32. package/examples/kernel/corpus/research/lane-drift.hypothesis.kernel.yml +11 -0
  33. package/examples/kernel/corpus/software/trace-widget.task.kernel.yml +13 -0
  34. package/examples/kernel/corpus/writing/kernel-launch.result.kernel.yml +12 -0
  35. package/package.json +4 -1
  36. package/scripts/orp-kernel-agent-pilot.py +673 -0
  37. package/scripts/orp-kernel-agent-replication.py +307 -0
  38. package/scripts/orp-kernel-benchmark.py +921 -0
  39. package/scripts/orp-kernel-canonical-continuation.py +381 -0
  40. package/scripts/orp-kernel-ci-check.py +138 -0
  41. package/scripts/orp-kernel-comparison.py +592 -0
  42. package/scripts/orp-kernel-continuation-pilot.py +384 -0
  43. package/scripts/orp-kernel-pickup.py +401 -0
  44. package/spec/v1/kernel-extension.schema.json +96 -0
  45. package/spec/v1/kernel-proposal.schema.json +115 -0
  46. package/spec/v1/kernel.schema.json +2 -1
@@ -0,0 +1,598 @@
1
+ {
2
+ "schema_version": "1.0.0",
3
+ "kind": "orp_reasoning_kernel_canonical_continuation_report",
4
+ "metadata": {
5
+ "generated_at_utc": "2026-03-23T09:07:17Z",
6
+ "repo_commit": "c2f7f2a52744a00fb719d37de583da1f4ae615bd",
7
+ "repo_branch": "main",
8
+ "package_version": "0.4.7",
9
+ "python_version": "3.9.6",
10
+ "codex_version": "codex-cli 0.116.0",
11
+ "platform": "macOS-26.3-arm64-arm-64bit",
12
+ "model": "default"
13
+ },
14
+ "corpus": {
15
+ "cases_total": 7,
16
+ "domains": [
17
+ "operations",
18
+ "product",
19
+ "research",
20
+ "software",
21
+ "writing"
22
+ ],
23
+ "artifact_classes": [
24
+ "checkpoint",
25
+ "decision",
26
+ "experiment",
27
+ "hypothesis",
28
+ "policy",
29
+ "result",
30
+ "task"
31
+ ]
32
+ },
33
+ "conditions": {
34
+ "freeform": {
35
+ "condition": "freeform",
36
+ "cases_total": 7,
37
+ "rows": [
38
+ {
39
+ "id": "software_trace_widget",
40
+ "domain": "software",
41
+ "artifact_class": "task",
42
+ "total_score": 0.689,
43
+ "alignment_score": 0.4,
44
+ "invention_rate": 0.333,
45
+ "missing_list_match": 1.0,
46
+ "answers": {
47
+ "object": "terminal trace widget for lane monitoring",
48
+ "goal": "let operators tell quickly when a lane is drifting",
49
+ "boundary": null,
50
+ "constraints": "stay terminal-first and low friction",
51
+ "success_criteria": null
52
+ },
53
+ "field_similarity": {
54
+ "object": 1.0,
55
+ "goal": 0.333,
56
+ "boundary": 0.0,
57
+ "constraints": 0.5,
58
+ "success_criteria": 0.0
59
+ }
60
+ },
61
+ {
62
+ "id": "product_project_home",
63
+ "domain": "product",
64
+ "artifact_class": "decision",
65
+ "total_score": 0.467,
66
+ "alignment_score": 0.2,
67
+ "invention_rate": 0.8,
68
+ "missing_list_match": 1.0,
69
+ "answers": {
70
+ "object": "Web app home surface direction",
71
+ "goal": "Lead the web app home surface with linked projects instead of the old idea board.",
72
+ "boundary": "This task is limited to the web app's primary home-surface emphasis and navigation between linked projects, the old idea board, and Pensieve.",
73
+ "constraints": "Active work should be foregrounded, idea browsing should move into Pensieve, and the old idea board should become secondary navigation.",
74
+ "success_criteria": "The web app home surface presents linked projects first, while the old idea board is secondary navigation and idea browsing is routed to Pensieve."
75
+ },
76
+ "field_similarity": {
77
+ "object": 0.25,
78
+ "goal": 0.625,
79
+ "boundary": 0.0,
80
+ "constraints": 0.222,
81
+ "success_criteria": 0.25
82
+ }
83
+ },
84
+ {
85
+ "id": "research_drift_hypothesis",
86
+ "domain": "research",
87
+ "artifact_class": "hypothesis",
88
+ "total_score": 0.483,
89
+ "alignment_score": 0.2,
90
+ "invention_rate": 0.75,
91
+ "missing_list_match": 1.0,
92
+ "answers": {
93
+ "object": "Short drift summaries",
94
+ "goal": "Test whether short drift summaries help operators notice stalled lanes faster.",
95
+ "boundary": "Terminal-first multi-lane work.",
96
+ "constraints": null,
97
+ "success_criteria": "Compare stalled-lane pickup with summaries versus without summaries."
98
+ },
99
+ "field_similarity": {
100
+ "object": 0.0,
101
+ "goal": 0.636,
102
+ "boundary": 0.364,
103
+ "constraints": 0.0,
104
+ "success_criteria": 0.0
105
+ }
106
+ },
107
+ {
108
+ "id": "research_handoff_experiment",
109
+ "domain": "research",
110
+ "artifact_class": "experiment",
111
+ "total_score": 0.467,
112
+ "alignment_score": 0.2,
113
+ "invention_rate": 0.8,
114
+ "missing_list_match": 1.0,
115
+ "answers": {
116
+ "object": "Kernel handoff experiment",
117
+ "goal": "Compare free-form tasks, checklist tasks, and kernel tasks during handoff pickup.",
118
+ "boundary": "Scope the experiment to handoff pickup.",
119
+ "constraints": "Internal sample only.",
120
+ "success_criteria": "Collect scores and clarification counts."
121
+ },
122
+ "field_similarity": {
123
+ "object": 0.25,
124
+ "goal": 0.455,
125
+ "boundary": 0.0,
126
+ "constraints": 0.222,
127
+ "success_criteria": 0.375
128
+ }
129
+ },
130
+ {
131
+ "id": "operations_habanero_checkpoint",
132
+ "domain": "operations",
133
+ "artifact_class": "checkpoint",
134
+ "total_score": 0.483,
135
+ "alignment_score": 0.2,
136
+ "invention_rate": 0.75,
137
+ "missing_list_match": 1.0,
138
+ "answers": {
139
+ "object": "Habanero routing and runner sync state on active machines",
140
+ "goal": "Rerun runner sync on active machines for Habanero.",
141
+ "boundary": "This task is limited to active machines that may still need a sync after routing was restored.",
142
+ "constraints": null,
143
+ "success_criteria": "Runner sync has been rerun on active machines."
144
+ },
145
+ "field_similarity": {
146
+ "object": 0.25,
147
+ "goal": 0.3,
148
+ "boundary": 0.5,
149
+ "constraints": 0.0,
150
+ "success_criteria": 0.364
151
+ }
152
+ },
153
+ {
154
+ "id": "operations_runner_policy",
155
+ "domain": "operations",
156
+ "artifact_class": "policy",
157
+ "total_score": 0.467,
158
+ "alignment_score": 0.2,
159
+ "invention_rate": 0.8,
160
+ "missing_list_match": 1.0,
161
+ "answers": {
162
+ "object": "Hosted runner pickup routing and job-claim behavior for linked projects and local sessions",
163
+ "goal": "Ensure hosted jobs are only claimed for linked projects that have a routeable local session, so claimed work always has a real local execution target.",
164
+ "boundary": "Hosted runner pickup.",
165
+ "constraints": "Only claim hosted jobs for linked projects with a routeable local session. A claimed job must resolve to an actual local session.",
166
+ "success_criteria": "During hosted runner pickup, a job is claimed only if its linked project has a routeable local session, and every claimed job resolves to an actual local session."
167
+ },
168
+ "field_similarity": {
169
+ "object": 0.6,
170
+ "goal": 0.4,
171
+ "boundary": 0.2,
172
+ "constraints": 0.25,
173
+ "success_criteria": 0.1
174
+ }
175
+ },
176
+ {
177
+ "id": "writing_kernel_launch_result",
178
+ "domain": "writing",
179
+ "artifact_class": "result",
180
+ "total_score": 0.333,
181
+ "alignment_score": 0.0,
182
+ "invention_rate": 1.0,
183
+ "missing_list_match": 1.0,
184
+ "answers": {
185
+ "object": "ORP reasoning kernel release",
186
+ "goal": "Run comparative studies against free-form artifacts and checklist artifacts.",
187
+ "boundary": "Limit the next work to comparative studies involving the shipped reasoning kernel, free-form artifacts, and checklist artifacts.",
188
+ "constraints": null,
189
+ "success_criteria": "Comparative studies have been run against free-form artifacts and checklist artifacts."
190
+ },
191
+ "field_similarity": {
192
+ "object": 0.25,
193
+ "goal": 0.25,
194
+ "boundary": 0.4,
195
+ "constraints": 0.0,
196
+ "success_criteria": 0.2
197
+ }
198
+ }
199
+ ],
200
+ "mean_total_score": 0.484,
201
+ "mean_alignment_score": 0.2,
202
+ "mean_invention_rate": 0.748,
203
+ "mean_missing_list_match": 1.0,
204
+ "mean_confidence": 0.917,
205
+ "mean_elapsed_ms": 19507.68
206
+ },
207
+ "generic_checklist": {
208
+ "condition": "generic_checklist",
209
+ "cases_total": 7,
210
+ "rows": [
211
+ {
212
+ "id": "software_trace_widget",
213
+ "domain": "software",
214
+ "artifact_class": "task",
215
+ "total_score": 0.733,
216
+ "alignment_score": 0.6,
217
+ "invention_rate": 0.4,
218
+ "missing_list_match": 1.0,
219
+ "answers": {
220
+ "object": "Build the terminal trace widget for lane monitoring.",
221
+ "goal": "Define the event schema and first rendering pass for terminal-first lane visibility in active ORP sessions.",
222
+ "boundary": "Terminal-first lane visibility in active ORP sessions.",
223
+ "constraints": "low friction; no GUI dependency",
224
+ "success_criteria": "An operator can identify a drifting lane quickly."
225
+ },
226
+ "field_similarity": {
227
+ "object": 1.0,
228
+ "goal": 0.167,
229
+ "boundary": 1.0,
230
+ "constraints": 1.0,
231
+ "success_criteria": 0.333
232
+ }
233
+ },
234
+ {
235
+ "id": "product_project_home",
236
+ "domain": "product",
237
+ "artifact_class": "decision",
238
+ "total_score": 0.733,
239
+ "alignment_score": 0.6,
240
+ "invention_rate": 0.4,
241
+ "missing_list_match": 1.0,
242
+ "answers": {
243
+ "object": "Implement the linked-project home shell and lower-right Pensieve access.",
244
+ "goal": "Lead with linked projects instead of the old idea-board-first home, while moving broader idea browsing into Pensieve.",
245
+ "boundary": "Default logged-in dashboard experience.",
246
+ "constraints": "Keep the home calm; preserve access to the full idea library.",
247
+ "success_criteria": "Users can reach active work in one click."
248
+ },
249
+ "field_similarity": {
250
+ "object": 1.0,
251
+ "goal": 0.375,
252
+ "boundary": 1.0,
253
+ "constraints": 0.889,
254
+ "success_criteria": 0.417
255
+ }
256
+ },
257
+ {
258
+ "id": "research_drift_hypothesis",
259
+ "domain": "research",
260
+ "artifact_class": "hypothesis",
261
+ "total_score": 0.6,
262
+ "alignment_score": 0.4,
263
+ "invention_rate": 0.6,
264
+ "missing_list_match": 1.0,
265
+ "answers": {
266
+ "object": "Design the comparison fixture and timing capture.",
267
+ "goal": "Test whether drift summaries improve stalled-lane pickup speed by adding summaries and comparing pickup behavior against a no-summary baseline.",
268
+ "boundary": "Terminal-first multi-lane workflows.",
269
+ "constraints": "Operators cannot be flooded with noise.",
270
+ "success_criteria": "A comparison fixture and timing capture are defined so stalled-lane detection time can be measured from pickup timing logs for summary and no-summary conditions."
271
+ },
272
+ "field_similarity": {
273
+ "object": 0.4,
274
+ "goal": 0.455,
275
+ "boundary": 0.455,
276
+ "constraints": 0.167,
277
+ "success_criteria": 0.3
278
+ }
279
+ },
280
+ {
281
+ "id": "research_handoff_experiment",
282
+ "domain": "research",
283
+ "artifact_class": "experiment",
284
+ "total_score": 0.867,
285
+ "alignment_score": 0.8,
286
+ "invention_rate": 0.2,
287
+ "missing_list_match": 1.0,
288
+ "answers": {
289
+ "object": "Prompt set and reviewer score sheet",
290
+ "goal": "Prepare the prompt set and reviewer score sheet for comparing handoff pickup across free-form, checklist, and kernel task artifacts.",
291
+ "boundary": "Internal ORP operator handoffs.",
292
+ "constraints": "Use a small internal sample and a matched prompt set. Treat the work as a first comparative signal, not a final outcome study.",
293
+ "success_criteria": "The prompt set and reviewer score sheet are prepared and support capturing time to correct interpretation and clarification counts."
294
+ },
295
+ "field_similarity": {
296
+ "object": 0.0,
297
+ "goal": 0.727,
298
+ "boundary": 1.0,
299
+ "constraints": 0.667,
300
+ "success_criteria": 0.625
301
+ }
302
+ },
303
+ {
304
+ "id": "operations_habanero_checkpoint",
305
+ "domain": "operations",
306
+ "artifact_class": "checkpoint",
307
+ "total_score": 0.733,
308
+ "alignment_score": 0.6,
309
+ "invention_rate": 0.4,
310
+ "missing_list_match": 1.0,
311
+ "answers": {
312
+ "object": "Habanero linked-project routing path",
313
+ "goal": "Rerun runner sync on active machines and verify live pickup.",
314
+ "boundary": "Habanero runner routing and session availability.",
315
+ "constraints": "avoid duplicate world bindings",
316
+ "success_criteria": "The linked project is routable again, and live pickup is verified after rerunning runner sync on active machines."
317
+ },
318
+ "field_similarity": {
319
+ "object": 0.0,
320
+ "goal": 0.3,
321
+ "boundary": 0.5,
322
+ "constraints": 0.571,
323
+ "success_criteria": 0.545
324
+ }
325
+ },
326
+ {
327
+ "id": "operations_runner_policy",
328
+ "domain": "operations",
329
+ "artifact_class": "policy",
330
+ "total_score": 0.467,
331
+ "alignment_score": 0.2,
332
+ "invention_rate": 0.8,
333
+ "missing_list_match": 1.0,
334
+ "answers": {
335
+ "object": "Pickup behavior for hosted runner jobs on linked projects.",
336
+ "goal": "Audit pickup behavior against stale-session and missing-session cases.",
337
+ "boundary": "Hosted runner job pickup.",
338
+ "constraints": "Do not claim unroutable jobs.",
339
+ "success_criteria": "Runner pickup rejects unroutable jobs."
340
+ },
341
+ "field_similarity": {
342
+ "object": 0.4,
343
+ "goal": 0.0,
344
+ "boundary": 0.2,
345
+ "constraints": 0.5,
346
+ "success_criteria": 0.2
347
+ }
348
+ },
349
+ {
350
+ "id": "writing_kernel_launch_result",
351
+ "domain": "writing",
352
+ "artifact_class": "result",
353
+ "total_score": 0.511,
354
+ "alignment_score": 0.2,
355
+ "invention_rate": 0.667,
356
+ "missing_list_match": 1.0,
357
+ "answers": {
358
+ "object": "Comparative artifact and handoff studies for the ORP reasoning kernel",
359
+ "goal": "Run comparative artifact and handoff studies next.",
360
+ "boundary": null,
361
+ "constraints": "comparative superiority is still unproven",
362
+ "success_criteria": null
363
+ },
364
+ "field_similarity": {
365
+ "object": 0.5,
366
+ "goal": 0.333,
367
+ "boundary": 0.0,
368
+ "constraints": 0.2,
369
+ "success_criteria": 0.0
370
+ }
371
+ }
372
+ ],
373
+ "mean_total_score": 0.663,
374
+ "mean_alignment_score": 0.486,
375
+ "mean_invention_rate": 0.495,
376
+ "mean_missing_list_match": 1.0,
377
+ "mean_confidence": 0.926,
378
+ "mean_elapsed_ms": 22733.537
379
+ },
380
+ "kernel": {
381
+ "condition": "kernel",
382
+ "cases_total": 7,
383
+ "rows": [
384
+ {
385
+ "id": "software_trace_widget",
386
+ "domain": "software",
387
+ "artifact_class": "task",
388
+ "total_score": 1.0,
389
+ "alignment_score": 1.0,
390
+ "invention_rate": 0.0,
391
+ "missing_list_match": 1.0,
392
+ "answers": {
393
+ "object": "terminal trace widget",
394
+ "goal": "surface lane drift and state clearly for operators",
395
+ "boundary": "terminal-first lane visibility; active ORP sessions only",
396
+ "constraints": "low friction; no GUI dependency",
397
+ "success_criteria": "an operator can identify a drifting lane within 10 seconds; the widget does not overload the terminal surface"
398
+ },
399
+ "field_similarity": {
400
+ "object": 1.0,
401
+ "goal": 1.0,
402
+ "boundary": 1.0,
403
+ "constraints": 1.0,
404
+ "success_criteria": 0.778
405
+ }
406
+ },
407
+ {
408
+ "id": "product_project_home",
409
+ "domain": "product",
410
+ "artifact_class": "decision",
411
+ "total_score": 0.6,
412
+ "alignment_score": 0.4,
413
+ "invention_rate": 0.6,
414
+ "missing_list_match": 1.0,
415
+ "answers": {
416
+ "object": "Web app home",
417
+ "goal": "Foreground linked projects on the web app home and move broad idea browsing into Pensieve.",
418
+ "boundary": "This task is limited to the web app home's primary foreground content and the placement of broad idea browsing in navigation.",
419
+ "constraints": "Keep the idea library available as secondary navigation rather than the default home view.",
420
+ "success_criteria": "Linked projects are the primary object on the home screen, and broad idea browsing is available one click deeper in Pensieve."
421
+ },
422
+ "field_similarity": {
423
+ "object": 0.25,
424
+ "goal": 0.75,
425
+ "boundary": 0.0,
426
+ "constraints": 0.444,
427
+ "success_criteria": 0.5
428
+ }
429
+ },
430
+ {
431
+ "id": "research_drift_hypothesis",
432
+ "domain": "research",
433
+ "artifact_class": "hypothesis",
434
+ "total_score": 0.633,
435
+ "alignment_score": 0.4,
436
+ "invention_rate": 0.5,
437
+ "missing_list_match": 1.0,
438
+ "answers": {
439
+ "object": "Short drift summaries for identifying stalled lanes",
440
+ "goal": "Evaluate whether short drift summaries reduce the time needed to identify stalled lanes.",
441
+ "boundary": "Terminal-first multi-lane workflows where operators are already monitoring active lanes.",
442
+ "constraints": null,
443
+ "success_criteria": "Matched stalled-lane pickup trials with and without summaries are run, and the resulting comparison shows the detection time difference."
444
+ },
445
+ "field_similarity": {
446
+ "object": 0.2,
447
+ "goal": 0.909,
448
+ "boundary": 1.0,
449
+ "constraints": 0.0,
450
+ "success_criteria": 0.2
451
+ }
452
+ },
453
+ {
454
+ "id": "research_handoff_experiment",
455
+ "domain": "research",
456
+ "artifact_class": "experiment",
457
+ "total_score": 0.733,
458
+ "alignment_score": 0.6,
459
+ "invention_rate": 0.4,
460
+ "missing_list_match": 1.0,
461
+ "answers": {
462
+ "object": "Kernel task artifacts compared against free-form and generic checklist alternatives in matched handoff trials.",
463
+ "goal": "Measure whether kernel task artifacts improve handoff pickup quality over free-form and generic checklist alternatives.",
464
+ "boundary": "Run matched handoff trials where a second operator receives one artifact at a time and explains the task, constraints, and next action; interpret the pilot as measuring structural pickup rather than full downstream outcomes.",
465
+ "constraints": "Use a matched prompt set, second-operator reviewers, and three artifact conditions; account for the small internal sample size when interpreting results.",
466
+ "success_criteria": "Produce pickup scores, clarification counts, and time to correct interpretation, supported by score sheets, timing logs, and an artifact corpus."
467
+ },
468
+ "field_similarity": {
469
+ "object": 0.25,
470
+ "goal": 0.636,
471
+ "boundary": 0.25,
472
+ "constraints": 0.667,
473
+ "success_criteria": 0.875
474
+ }
475
+ },
476
+ {
477
+ "id": "operations_habanero_checkpoint",
478
+ "domain": "operations",
479
+ "artifact_class": "checkpoint",
480
+ "total_score": 0.733,
481
+ "alignment_score": 0.6,
482
+ "invention_rate": 0.4,
483
+ "missing_list_match": 1.0,
484
+ "answers": {
485
+ "object": "Habanero runner routing and synchronization across the local project link, primary session, and hosted world.",
486
+ "goal": "Rerun runner sync on active machines and verify one fresh hosted job pickup.",
487
+ "boundary": "Work is scoped to active machines and the currently synchronized local project link, primary session, and hosted world.",
488
+ "constraints": "Inactive machines may still hold stale routing state; older queued jobs may need a fresh sync before pickup.",
489
+ "success_criteria": "Runner sync has been rerun on active machines and one fresh hosted job pickup has been verified."
490
+ },
491
+ "field_similarity": {
492
+ "object": 0.25,
493
+ "goal": 0.6,
494
+ "boundary": 0.5,
495
+ "constraints": 0.429,
496
+ "success_criteria": 0.636
497
+ }
498
+ },
499
+ {
500
+ "id": "operations_runner_policy",
501
+ "domain": "operations",
502
+ "artifact_class": "policy",
503
+ "total_score": 0.6,
504
+ "alignment_score": 0.4,
505
+ "invention_rate": 0.6,
506
+ "missing_list_match": 1.0,
507
+ "answers": {
508
+ "object": "Hosted runner job pickup and claim behavior.",
509
+ "goal": "Ensure a hosted job is claimed only when the linked project has a routeable local session on the current machine.",
510
+ "boundary": "runner sync, poll, and work lifecycle",
511
+ "constraints": "Runner routing must remain machine-scoped, and a claimed job must resolve to an actual local session.",
512
+ "success_criteria": "Hosted jobs are only claimed when the linked project has a routeable local session on the current machine, every claimed job resolves to an actual local session, and runner routing stays machine-scoped."
513
+ },
514
+ "field_similarity": {
515
+ "object": 0.6,
516
+ "goal": 0.4,
517
+ "boundary": 1.0,
518
+ "constraints": 0.375,
519
+ "success_criteria": 0.2
520
+ }
521
+ },
522
+ {
523
+ "id": "writing_kernel_launch_result",
524
+ "domain": "writing",
525
+ "artifact_class": "result",
526
+ "total_score": 0.867,
527
+ "alignment_score": 0.8,
528
+ "invention_rate": 0.2,
529
+ "missing_list_match": 1.0,
530
+ "answers": {
531
+ "object": "comparative artifact, pickup, and corpus-fit studies for the ORP reasoning kernel",
532
+ "goal": "Run the comparative artifact, pickup, and corpus-fit studies.",
533
+ "boundary": "Limit the work to the comparative artifact, pickup, and corpus-fit studies for the shipped ORP reasoning kernel release.",
534
+ "constraints": "Do not treat comparative superiority over free-form and checklist alternatives as already proven; account for the fact that current evidence is strongest on internal validity.",
535
+ "success_criteria": "The comparative artifact, pickup, and corpus-fit studies are completed in a way that addresses the current interpretation limits."
536
+ },
537
+ "field_similarity": {
538
+ "object": 0.5,
539
+ "goal": 0.583,
540
+ "boundary": 0.4,
541
+ "constraints": 0.9,
542
+ "success_criteria": 0.7
543
+ }
544
+ }
545
+ ],
546
+ "mean_total_score": 0.738,
547
+ "mean_alignment_score": 0.6,
548
+ "mean_invention_rate": 0.386,
549
+ "mean_missing_list_match": 1.0,
550
+ "mean_confidence": 0.906,
551
+ "mean_elapsed_ms": 24908.525
552
+ }
553
+ },
554
+ "pairwise": {
555
+ "kernel_vs_generic_checklist": {
556
+ "left": "kernel",
557
+ "right": "generic_checklist",
558
+ "wins": 4,
559
+ "ties": 1,
560
+ "losses": 2,
561
+ "mean_total_score_delta": 0.075
562
+ },
563
+ "kernel_vs_freeform": {
564
+ "left": "kernel",
565
+ "right": "freeform",
566
+ "wins": 7,
567
+ "ties": 0,
568
+ "losses": 0,
569
+ "mean_total_score_delta": 0.254
570
+ }
571
+ },
572
+ "claims": [
573
+ {
574
+ "id": "kernel_outscores_generic_checklist_on_canonical_task_continuation",
575
+ "claim": "On the matched live canonical-task continuation benchmark, kernel artifacts produce task artifacts that meet or exceed generic checklist quality without a higher invention rate.",
576
+ "status": "fail"
577
+ },
578
+ {
579
+ "id": "kernel_outscores_freeform_on_canonical_task_continuation",
580
+ "claim": "On the matched live canonical-task continuation benchmark, kernel artifacts produce stronger next-task artifacts than free-form artifacts.",
581
+ "status": "pass"
582
+ },
583
+ {
584
+ "id": "kernel_minimizes_invention_on_canonical_task_continuation",
585
+ "claim": "On the matched live canonical-task continuation benchmark, kernel artifacts minimize unsupported task-field invention.",
586
+ "status": "pass"
587
+ }
588
+ ],
589
+ "summary": {
590
+ "all_claims_pass": false,
591
+ "kernel_mean_total_score": 0.738,
592
+ "generic_checklist_mean_total_score": 0.663,
593
+ "freeform_mean_total_score": 0.484,
594
+ "kernel_mean_invention_rate": 0.386,
595
+ "generic_checklist_mean_invention_rate": 0.495,
596
+ "freeform_mean_invention_rate": 0.748
597
+ }
598
+ }