percolation-inversion-compiler-ts 0.4.5 → 0.5.0
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.
- package/CHANGELOG.md +8 -0
- package/README.md +77 -22
- package/agent-manifest.json +50 -0
- package/dist/alt_lift/index.d.ts +7 -0
- package/dist/alt_lift/index.js +101 -0
- package/dist/bit_engine/index.d.ts +8 -0
- package/dist/bit_engine/index.js +213 -0
- package/dist/cli/main.js +2106 -162
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1611 -16
- package/dist/phase_lab/index.d.ts +26 -0
- package/dist/phase_lab/index.js +1124 -0
- package/dist/sqot_controller/index.d.ts +8 -0
- package/dist/sqot_controller/index.js +141 -0
- package/dist/trc_adapter/index.d.ts +6 -0
- package/dist/trc_adapter/index.js +86 -0
- package/docs/alt-ecpt-lift.md +32 -0
- package/docs/bit-inversion-engine.md +32 -0
- package/docs/cli-reference.md +68 -0
- package/docs/effective-packet-graph.md +35 -0
- package/docs/for-agents.md +44 -0
- package/docs/phase-ecology-lab.md +46 -0
- package/docs/sqot-queue-sovereignty.md +31 -0
- package/docs/threshold-certificates.md +30 -0
- package/docs/trc-trace-adapter.md +30 -0
- package/docs/v050-audit.md +126 -0
- package/examples/alt_lift/alt_ecpt_lift.example.json +27 -0
- package/examples/bit_engine/bottlenecks.example.json +38 -0
- package/examples/bit_engine/inversion_candidates.example.json +55 -0
- package/examples/packet_exchange/packet_envelope.example.json +51 -0
- package/examples/packet_exchange/packet_merge_report.example.json +60 -0
- package/examples/phase_lab/certificate_abstain.example.json +39 -0
- package/examples/phase_lab/closure_report.example.json +41 -0
- package/examples/phase_lab/effective_graph.example.json +112 -0
- package/examples/phase_lab/executable_paths.example.json +20 -0
- package/examples/phase_lab/phase_window_observation.example.json +61 -0
- package/examples/phase_lab/runtime_report_1.json +19 -0
- package/examples/phase_lab/runtime_report_2.json +16 -0
- package/examples/phase_lab/threshold_status.example.json +31 -0
- package/examples/sqot_controller/queue_report.example.json +30 -0
- package/examples/sqot_controller/rebalance_plan.example.json +14 -0
- package/examples/thresholds/asi_proxy_development.json +15 -0
- package/examples/trc_adapter/tool_trace_input.example.json +17 -0
- package/examples/trc_adapter/typed_trace.example.json +64 -0
- package/fixtures/portability_conformance_v050/certificate_abstain.example.json +39 -0
- package/fixtures/portability_conformance_v050/closure_report.example.json +39 -0
- package/fixtures/portability_conformance_v050/effective_graph.example.json +112 -0
- package/fixtures/portability_conformance_v050/executable_paths.example.json +20 -0
- package/fixtures/portability_conformance_v050/manifest.json +55 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_1.json +51 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_2.json +55 -0
- package/fixtures/portability_conformance_v050/phase_window_observation.example.json +61 -0
- package/fixtures/portability_conformance_v050/runtime_report_1.json +19 -0
- package/fixtures/portability_conformance_v050/runtime_report_2.json +14 -0
- package/fixtures/portability_conformance_v050/threshold_status.example.json +29 -0
- package/fixtures/python_v044_cli/agent_autonomy_audit.json +4 -3
- package/fixtures/python_v044_cli/agent_manifest.json +2 -1
- package/fixtures/python_v044_cli/agent_runbook.json +2 -1
- package/fixtures/python_v044_cli/demo_installed_smoke.json +86 -86
- package/fixtures/python_v044_demo/manifest.json +2 -1
- package/fixtures/python_v050_cli/alt_capital_impact.json +30 -0
- package/fixtures/python_v050_cli/alt_ecpt_lift.json +85 -0
- package/fixtures/python_v050_cli/alt_liquidity_to_paths.json +85 -0
- package/fixtures/python_v050_cli/alt_receiver_lift.json +15 -0
- package/fixtures/python_v050_cli/bit_certificate.json +15 -0
- package/fixtures/python_v050_cli/bit_compare_baseline.json +24 -0
- package/fixtures/python_v050_cli/bit_diagnose.json +95 -0
- package/fixtures/python_v050_cli/bit_invert.json +235 -0
- package/fixtures/python_v050_cli/bit_mec.json +18 -0
- package/fixtures/python_v050_cli/ecology_effective_graph.json +178 -0
- package/fixtures/python_v050_cli/ecology_execution_available_paths.json +88 -0
- package/fixtures/python_v050_cli/manifest.json +48 -0
- package/fixtures/python_v050_cli/phase_lab_certify.json +443 -0
- package/fixtures/python_v050_cli/phase_lab_closure.json +85 -0
- package/fixtures/python_v050_cli/phase_lab_compare_window.json +24 -0
- package/fixtures/python_v050_cli/phase_lab_executable_paths.json +88 -0
- package/fixtures/python_v050_cli/phase_lab_graph.json +178 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_1.json +105 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_2.json +109 -0
- package/fixtures/python_v050_cli/phase_lab_init.json +20 -0
- package/fixtures/python_v050_cli/phase_lab_list_windows.json +63 -0
- package/fixtures/python_v050_cli/phase_lab_observe.json +108 -0
- package/fixtures/python_v050_cli/phase_lab_threshold_status.json +164 -0
- package/fixtures/python_v050_cli/sqot_diagnose_queue.json +38 -0
- package/fixtures/python_v050_cli/sqot_quarantine.json +7 -0
- package/fixtures/python_v050_cli/sqot_rebalance.json +19 -0
- package/fixtures/python_v050_cli/sqot_reserve_check.json +20 -0
- package/fixtures/python_v050_cli/sqot_salience_obstruction.json +19 -0
- package/fixtures/python_v050_cli/trc_action_boundary.json +451 -0
- package/fixtures/python_v050_cli/trc_tool_trace.json +221 -0
- package/fixtures/python_v050_cli/trc_trace_adapter.json +221 -0
- package/fixtures/python_v050_demo/asi_proxy_development.json +15 -0
- package/fixtures/python_v050_demo/certificate_abstain.example.json +39 -0
- package/fixtures/python_v050_demo/closure_report.example.json +39 -0
- package/fixtures/python_v050_demo/effective_graph.example.json +112 -0
- package/fixtures/python_v050_demo/executable_paths.example.json +20 -0
- package/fixtures/python_v050_demo/phase_window_observation.example.json +61 -0
- package/fixtures/python_v050_demo/runtime_report_1.json +19 -0
- package/fixtures/python_v050_demo/runtime_report_2.json +14 -0
- package/fixtures/python_v050_demo/threshold_status.example.json +29 -0
- package/fixtures/python_v050_snapshots/manifest.json +39 -0
- package/fixtures/python_v050_snapshots/snapshot_list.json +112 -0
- package/fixtures/python_v050_snapshots/snapshot_routes.json +926 -0
- package/fixtures/python_v050_snapshots/snapshot_show_alt.json +6830 -0
- package/fixtures/python_v050_snapshots/snapshot_show_bit.json +594 -0
- package/fixtures/python_v050_snapshots/snapshot_show_ecpt.json +2894 -0
- package/fixtures/python_v050_snapshots/snapshot_show_sqot.json +2392 -0
- package/fixtures/python_v050_snapshots/snapshot_show_trc.json +3037 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_alt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_bit.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_ecpt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_sqot.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_trc.json +10 -0
- package/package.json +45 -3
- package/schemas/ASIProxyThresholdSpec.schema.json +72 -0
- package/schemas/ASIProxyThresholdStatus.schema.json +512 -0
- package/schemas/ActionBoundaryRequirement.schema.json +28 -0
- package/schemas/ActivationGainEstimate.schema.json +41 -0
- package/schemas/AltEcptLiftReport.schema.json +400 -0
- package/schemas/AltLiftBlocker.schema.json +34 -0
- package/schemas/AttentionBudgetLedger.schema.json +41 -0
- package/schemas/AutocatalyticClosureReport.schema.json +408 -0
- package/schemas/AutocatalyticClosureWitness.schema.json +22 -139
- package/schemas/BasinReachabilityProxy.schema.json +21 -0
- package/schemas/BottleneckClassDiagnosis.schema.json +115 -0
- package/schemas/BottleneckInversionCandidate.schema.json +249 -0
- package/schemas/BottleneckInversionReport.schema.json +499 -0
- package/schemas/CapabilityExpressionPath.schema.json +45 -0
- package/schemas/CapitalToPathContribution.schema.json +53 -0
- package/schemas/ClosureAbstentionReason.schema.json +25 -0
- package/schemas/ClosureCertificateCandidate.schema.json +109 -0
- package/schemas/ClosureDefect.schema.json +28 -0
- package/schemas/ClosureSupportHyperpath.schema.json +44 -0
- package/schemas/CollectivePhaseAbstentionReport.schema.json +591 -0
- package/schemas/CollectivePhaseCertificateCandidate.schema.json +688 -0
- package/schemas/CrossContextTransferWitness.schema.json +46 -0
- package/schemas/DiagnosticReserveReport.schema.json +87 -0
- package/schemas/DownstreamSearchCostDelta.schema.json +46 -0
- package/schemas/EcologyAutocatalyticClosureWitness.schema.json +187 -0
- package/schemas/EffectiveGraphResidualSummary.schema.json +38 -0
- package/schemas/EffectivePacketEdge.schema.json +135 -0
- package/schemas/EffectivePacketEligibility.schema.json +84 -0
- package/schemas/EffectivePacketGraph.schema.json +461 -0
- package/schemas/EffectivePacketGraphBuildReport.schema.json +521 -0
- package/schemas/EffectivePacketNode.schema.json +199 -0
- package/schemas/ExecutableClosureWitness.schema.json +47 -0
- package/schemas/ExecutablePathDensityReport.schema.json +314 -0
- package/schemas/ExecutionAuthorityStatus.schema.json +28 -0
- package/schemas/ExecutionAvailableHyperpath.schema.json +201 -0
- package/schemas/ExecutionPathDefect.schema.json +28 -0
- package/schemas/ExecutionPathWitness.schema.json +44 -0
- package/schemas/FalseLiquidityLoad.schema.json +21 -0
- package/schemas/GeneralIntakePolicy.schema.json +1 -1
- package/schemas/InversionCertificate.schema.json +56 -0
- package/schemas/LiquidityToClosureContribution.schema.json +53 -0
- package/schemas/MinimalEnablingCondition.schema.json +48 -0
- package/schemas/PacketContributionStatus.schema.json +32 -0
- package/schemas/PacketQuarantineDecision.schema.json +50 -0
- package/schemas/PhaseCertificateDefect.schema.json +33 -0
- package/schemas/PhaseComponentObservation.schema.json +39 -0
- package/schemas/PhaseLabEvent.schema.json +123 -0
- package/schemas/PhaseLabExportManifest.schema.json +127 -0
- package/schemas/PhaseLabIngestReport.schema.json +344 -0
- package/schemas/PhaseLabStoreManifest.schema.json +73 -0
- package/schemas/PhaseLabWindowIndex.schema.json +78 -0
- package/schemas/PhaseThresholdStatus.schema.json +51 -0
- package/schemas/PhaseWindow.schema.json +31 -0
- package/schemas/PhaseWindowComparison.schema.json +67 -0
- package/schemas/PhaseWindowObservation.schema.json +353 -0
- package/schemas/PostInversionAuditPlan.schema.json +38 -0
- package/schemas/ProductiveClosureWitness.schema.json +49 -0
- package/schemas/ProvenanceManifest.schema.json +1 -1
- package/schemas/QueueOccupationReport.schema.json +156 -0
- package/schemas/QueueRebalancePlan.schema.json +114 -0
- package/schemas/ReceiverContextSupport.schema.json +23 -0
- package/schemas/ReceiverLiquidityLift.schema.json +58 -0
- package/schemas/ReleaseArtifactManifest.schema.json +1 -1
- package/schemas/ReversibleSalienceSovereigntyCertificate.schema.json +53 -0
- package/schemas/RollbackOrDeactivationPlan.schema.json +38 -0
- package/schemas/SBOMManifest.schema.json +1 -1
- package/schemas/SalienceObstructionDiagnosis.schema.json +55 -0
- package/schemas/SalienceObstructionLoad.schema.json +21 -0
- package/schemas/SemanticEdgeEvidence.schema.json +40 -0
- package/schemas/TraceAdapterReport.schema.json +405 -0
- package/schemas/TraceFrontierDebt.schema.json +43 -0
- package/schemas/TraceNormalForm.schema.json +181 -0
- package/schemas/TraceToleranceLedger.schema.json +29 -0
- package/schemas/TypedActionBoundary.schema.json +58 -0
- package/schemas/TypedAgentTrace.schema.json +328 -0
- package/schemas/TypedToolCallTrace.schema.json +76 -0
- package/schemas/VerificationQueuePressure.schema.json +41 -0
- package/schemas/VerificationThroughputWindow.schema.json +21 -0
- package/schemas/WasteLoad.schema.json +21 -0
- package/schemas/WebFetchPolicy.schema.json +1 -1
- package/schemas/bundle.schema.json +11854 -2075
- package/schemas/index.json +445 -0
- package/schemas/schema-digest.json +733 -289
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_packet_capital": 1,
|
|
4
|
+
"candidate_only_packets": 1,
|
|
5
|
+
"edge_count_by_relation": {
|
|
6
|
+
"self-support": 1
|
|
7
|
+
},
|
|
8
|
+
"edges": [
|
|
9
|
+
{
|
|
10
|
+
"accepted": true,
|
|
11
|
+
"contribution": {
|
|
12
|
+
"candidate_only": false,
|
|
13
|
+
"non_contributing_reason": "",
|
|
14
|
+
"positive_contribution": true,
|
|
15
|
+
"settled": false,
|
|
16
|
+
"status": "accepted"
|
|
17
|
+
},
|
|
18
|
+
"edge_id": "edge:self-alpha",
|
|
19
|
+
"evidence": {
|
|
20
|
+
"edge_certificate_refs": [],
|
|
21
|
+
"evidence_refs": [
|
|
22
|
+
"evidence:alpha"
|
|
23
|
+
],
|
|
24
|
+
"evidence_supported": true,
|
|
25
|
+
"missing_evidence": [],
|
|
26
|
+
"verifier_resolution_refs": []
|
|
27
|
+
},
|
|
28
|
+
"reasons": [
|
|
29
|
+
"edge extracted from inert report data"
|
|
30
|
+
],
|
|
31
|
+
"relation_type": "self-support",
|
|
32
|
+
"residual_summary": {},
|
|
33
|
+
"settled": false,
|
|
34
|
+
"source_node_ids": [
|
|
35
|
+
"node:a0e7926edd1c"
|
|
36
|
+
],
|
|
37
|
+
"target_node_id": "node:a0e7926edd1c"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"graph_id": "effective-graph:all",
|
|
41
|
+
"graph_safety_boundary": [
|
|
42
|
+
"raw packet volume is diagnostic only",
|
|
43
|
+
"candidate-only nodes do not improve positive phase components",
|
|
44
|
+
"graph construction does not execute packet content",
|
|
45
|
+
"graph construction does not settle claims"
|
|
46
|
+
],
|
|
47
|
+
"missing_edge_evidence": [],
|
|
48
|
+
"node_count_by_status": {
|
|
49
|
+
"accepted": 1,
|
|
50
|
+
"candidate-only": 1
|
|
51
|
+
},
|
|
52
|
+
"nodes": [
|
|
53
|
+
{
|
|
54
|
+
"accepted": true,
|
|
55
|
+
"content_digest": "a0e7926edd1c21e191da43d6de646d47f2f05aa536721ea2cbaf87c07fbe8ae9",
|
|
56
|
+
"contribution": {
|
|
57
|
+
"candidate_only": false,
|
|
58
|
+
"non_contributing_reason": "",
|
|
59
|
+
"positive_contribution": true,
|
|
60
|
+
"settled": false,
|
|
61
|
+
"status": "accepted"
|
|
62
|
+
},
|
|
63
|
+
"eligibility": {
|
|
64
|
+
"accepted_or_certificate_admissible": true,
|
|
65
|
+
"agent_text_not_treated_as_evidence": true,
|
|
66
|
+
"authority_valid": true,
|
|
67
|
+
"blockers": [],
|
|
68
|
+
"eligible": true,
|
|
69
|
+
"hash_valid": true,
|
|
70
|
+
"not_raw_external_volume": true,
|
|
71
|
+
"not_registry_metadata_only": true,
|
|
72
|
+
"not_salience_blocked": true,
|
|
73
|
+
"not_stale": true,
|
|
74
|
+
"not_verification_blocked": true,
|
|
75
|
+
"residuals_preserved": true,
|
|
76
|
+
"retrievable": true,
|
|
77
|
+
"rollback_available_or_not_required": true,
|
|
78
|
+
"within_validity_domain": true
|
|
79
|
+
},
|
|
80
|
+
"missing_obligations": [],
|
|
81
|
+
"node_id": "node:a0e7926edd1c",
|
|
82
|
+
"operationally_usable": true,
|
|
83
|
+
"reasons": [
|
|
84
|
+
"event content is stored as inert data"
|
|
85
|
+
],
|
|
86
|
+
"residual_summary": {},
|
|
87
|
+
"schema_hint": "AgentCheckReport",
|
|
88
|
+
"settled": false,
|
|
89
|
+
"source_event_id": "phase-lab-event:0:a0e7926edd1c",
|
|
90
|
+
"source_kind": "agent-check",
|
|
91
|
+
"workflow_usable": true
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"accepted": false,
|
|
95
|
+
"content_digest": "749ba66f574233b51eb2a924e1c5c7314ee4800006cf86a351a7484b778e241d",
|
|
96
|
+
"contribution": {
|
|
97
|
+
"candidate_only": true,
|
|
98
|
+
"non_contributing_reason": "eligibility blockers prevent positive contribution",
|
|
99
|
+
"positive_contribution": false,
|
|
100
|
+
"settled": false,
|
|
101
|
+
"status": "candidate-only"
|
|
102
|
+
},
|
|
103
|
+
"eligibility": {
|
|
104
|
+
"accepted_or_certificate_admissible": false,
|
|
105
|
+
"agent_text_not_treated_as_evidence": true,
|
|
106
|
+
"authority_valid": true,
|
|
107
|
+
"blockers": [
|
|
108
|
+
"candidate-only",
|
|
109
|
+
"verification-blocked"
|
|
110
|
+
],
|
|
111
|
+
"eligible": false,
|
|
112
|
+
"hash_valid": true,
|
|
113
|
+
"not_raw_external_volume": true,
|
|
114
|
+
"not_registry_metadata_only": true,
|
|
115
|
+
"not_salience_blocked": true,
|
|
116
|
+
"not_stale": true,
|
|
117
|
+
"not_verification_blocked": false,
|
|
118
|
+
"residuals_preserved": true,
|
|
119
|
+
"retrievable": true,
|
|
120
|
+
"rollback_available_or_not_required": true,
|
|
121
|
+
"within_validity_domain": true
|
|
122
|
+
},
|
|
123
|
+
"missing_obligations": [],
|
|
124
|
+
"node_id": "node:749ba66f5742",
|
|
125
|
+
"operationally_usable": false,
|
|
126
|
+
"reasons": [
|
|
127
|
+
"event content is stored as inert data",
|
|
128
|
+
"candidate-only reasons remain visible",
|
|
129
|
+
"settlement blockers remain visible",
|
|
130
|
+
"candidate-only event cannot improve phase metrics"
|
|
131
|
+
],
|
|
132
|
+
"residual_summary": {
|
|
133
|
+
"missing_evidence": 1.0
|
|
134
|
+
},
|
|
135
|
+
"schema_hint": "AgentCheckReport",
|
|
136
|
+
"settled": false,
|
|
137
|
+
"source_event_id": "phase-lab-event:1:749ba66f5742",
|
|
138
|
+
"source_kind": "agent-check",
|
|
139
|
+
"workflow_usable": true
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"non_contributing_volume": 1,
|
|
143
|
+
"operationally_usable": true,
|
|
144
|
+
"reasons": [
|
|
145
|
+
"effective graph separates positive contribution from diagnostic volume",
|
|
146
|
+
"raw packet count does not increase positive phase metrics"
|
|
147
|
+
],
|
|
148
|
+
"rejected_or_quarantined_packets": 0,
|
|
149
|
+
"residual_summary": {
|
|
150
|
+
"candidate_only_reasons": [
|
|
151
|
+
"external candidate requires finite verifier route"
|
|
152
|
+
],
|
|
153
|
+
"missing_obligation_count": 0,
|
|
154
|
+
"residual_debt": 1.0,
|
|
155
|
+
"residual_summary": {
|
|
156
|
+
"missing_evidence": 1.0
|
|
157
|
+
},
|
|
158
|
+
"settled_blockers": [
|
|
159
|
+
"missing evidence"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"semantic_edge_witnesses": [
|
|
163
|
+
{
|
|
164
|
+
"edge_certificate_refs": [],
|
|
165
|
+
"evidence_refs": [
|
|
166
|
+
"evidence:alpha"
|
|
167
|
+
],
|
|
168
|
+
"evidence_supported": true,
|
|
169
|
+
"missing_evidence": [],
|
|
170
|
+
"verifier_resolution_refs": []
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"settled": false,
|
|
174
|
+
"source_window_id": "all",
|
|
175
|
+
"stale_or_unsafe_packets": [],
|
|
176
|
+
"workflow_usable": true
|
|
177
|
+
}
|
|
178
|
+
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"content_treated_as_data": true,
|
|
4
|
+
"executed_command_count": 0,
|
|
5
|
+
"ingested_events": [
|
|
6
|
+
{
|
|
7
|
+
"accepted": true,
|
|
8
|
+
"candidate_only": false,
|
|
9
|
+
"candidate_only_reasons": [],
|
|
10
|
+
"content_digest": "a0e7926edd1c21e191da43d6de646d47f2f05aa536721ea2cbaf87c07fbe8ae9",
|
|
11
|
+
"event_id": "phase-lab-event:0:a0e7926edd1c",
|
|
12
|
+
"missing_obligations": [],
|
|
13
|
+
"operationally_usable": true,
|
|
14
|
+
"payload": {
|
|
15
|
+
"accepted": true,
|
|
16
|
+
"edges": [
|
|
17
|
+
{
|
|
18
|
+
"accepted": true,
|
|
19
|
+
"edge_id": "edge:self-alpha",
|
|
20
|
+
"evidence_refs": [
|
|
21
|
+
"evidence:alpha"
|
|
22
|
+
],
|
|
23
|
+
"relation_type": "self-support",
|
|
24
|
+
"source_packet_ids": [
|
|
25
|
+
"packet:alpha"
|
|
26
|
+
],
|
|
27
|
+
"target_packet_id": "packet:alpha"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"operationally_usable": true,
|
|
31
|
+
"packet_ref": "packet:alpha",
|
|
32
|
+
"report_id": "phase-lab-runtime-report-1",
|
|
33
|
+
"residual_summary": {},
|
|
34
|
+
"settled": false,
|
|
35
|
+
"workflow_usable": true
|
|
36
|
+
},
|
|
37
|
+
"positive_contribution_allowed": true,
|
|
38
|
+
"reasons": [
|
|
39
|
+
"event content is stored as inert data"
|
|
40
|
+
],
|
|
41
|
+
"residual_summary": {},
|
|
42
|
+
"safety_boundary": [
|
|
43
|
+
"protocol-relative only",
|
|
44
|
+
"does not prove real ASI",
|
|
45
|
+
"does not prove physical or oracle truth",
|
|
46
|
+
"does not execute command text or safe_commands",
|
|
47
|
+
"raw packet volume is diagnostic only"
|
|
48
|
+
],
|
|
49
|
+
"schema_hint": "AgentCheckReport",
|
|
50
|
+
"settled": false,
|
|
51
|
+
"settled_blockers": [],
|
|
52
|
+
"source_kind": "agent-check",
|
|
53
|
+
"source_path": "runtime_report_1.json",
|
|
54
|
+
"window_id": "phase-window:0000",
|
|
55
|
+
"workflow_usable": true
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"reasons": [
|
|
59
|
+
"ingested files were stored as inert local data",
|
|
60
|
+
"no embedded command, safe_command, network, repository, or model action was executed"
|
|
61
|
+
],
|
|
62
|
+
"rejected_paths": [],
|
|
63
|
+
"report_id": "phase-lab-ingest:phase-window:0000",
|
|
64
|
+
"settled": false,
|
|
65
|
+
"store_manifest": {
|
|
66
|
+
"accepted": true,
|
|
67
|
+
"database_path": "phase_lab.sqlite",
|
|
68
|
+
"event_count": 1,
|
|
69
|
+
"latest_window_id": "phase-window:0000",
|
|
70
|
+
"reasons": [
|
|
71
|
+
"phase lab store is local and non-executing"
|
|
72
|
+
],
|
|
73
|
+
"safety_invariants": [
|
|
74
|
+
"phase lab stores local report data only",
|
|
75
|
+
"phase lab never executes report or packet content",
|
|
76
|
+
"phase lab diagnostics do not settle claims"
|
|
77
|
+
],
|
|
78
|
+
"schema_version": "phase-lab-store-v1",
|
|
79
|
+
"settled": false,
|
|
80
|
+
"store_id": "phase-lab-store",
|
|
81
|
+
"store_path": "pic-phase-lab",
|
|
82
|
+
"window_count": 1
|
|
83
|
+
},
|
|
84
|
+
"window": {
|
|
85
|
+
"accepted": true,
|
|
86
|
+
"accepted_event_count": 1,
|
|
87
|
+
"candidate_only_event_count": 0,
|
|
88
|
+
"event_count": 1,
|
|
89
|
+
"event_ids": [
|
|
90
|
+
"phase-lab-event:0:a0e7926edd1c"
|
|
91
|
+
],
|
|
92
|
+
"missing_obligation_count": 0,
|
|
93
|
+
"positive_contribution_event_count": 1,
|
|
94
|
+
"reasons": [
|
|
95
|
+
"window index preserves event residuals without settling claims"
|
|
96
|
+
],
|
|
97
|
+
"residual_debt": 0.0,
|
|
98
|
+
"sequence": 0,
|
|
99
|
+
"settled": false,
|
|
100
|
+
"settled_event_count": 0,
|
|
101
|
+
"window_id": "phase-window:0000"
|
|
102
|
+
},
|
|
103
|
+
"workflow_usable": true
|
|
104
|
+
}
|
|
105
|
+
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"content_treated_as_data": true,
|
|
4
|
+
"executed_command_count": 0,
|
|
5
|
+
"ingested_events": [
|
|
6
|
+
{
|
|
7
|
+
"accepted": false,
|
|
8
|
+
"candidate_only": true,
|
|
9
|
+
"candidate_only_reasons": [
|
|
10
|
+
"external candidate requires finite verifier route"
|
|
11
|
+
],
|
|
12
|
+
"content_digest": "749ba66f574233b51eb2a924e1c5c7314ee4800006cf86a351a7484b778e241d",
|
|
13
|
+
"event_id": "phase-lab-event:1:749ba66f5742",
|
|
14
|
+
"missing_obligations": [],
|
|
15
|
+
"operationally_usable": false,
|
|
16
|
+
"payload": {
|
|
17
|
+
"accepted": false,
|
|
18
|
+
"candidate_only": true,
|
|
19
|
+
"candidate_only_reasons": [
|
|
20
|
+
"external candidate requires finite verifier route"
|
|
21
|
+
],
|
|
22
|
+
"operationally_usable": false,
|
|
23
|
+
"packet_ref": "packet:beta",
|
|
24
|
+
"report_id": "phase-lab-runtime-report-2",
|
|
25
|
+
"residual_summary": {
|
|
26
|
+
"missing_evidence": 1.0
|
|
27
|
+
},
|
|
28
|
+
"settled": false,
|
|
29
|
+
"settled_blockers": [
|
|
30
|
+
"missing evidence"
|
|
31
|
+
],
|
|
32
|
+
"workflow_usable": true
|
|
33
|
+
},
|
|
34
|
+
"positive_contribution_allowed": false,
|
|
35
|
+
"reasons": [
|
|
36
|
+
"event content is stored as inert data",
|
|
37
|
+
"candidate-only reasons remain visible",
|
|
38
|
+
"settlement blockers remain visible",
|
|
39
|
+
"candidate-only event cannot improve phase metrics"
|
|
40
|
+
],
|
|
41
|
+
"residual_summary": {
|
|
42
|
+
"missing_evidence": 1.0
|
|
43
|
+
},
|
|
44
|
+
"safety_boundary": [
|
|
45
|
+
"protocol-relative only",
|
|
46
|
+
"does not prove real ASI",
|
|
47
|
+
"does not prove physical or oracle truth",
|
|
48
|
+
"does not execute command text or safe_commands",
|
|
49
|
+
"raw packet volume is diagnostic only"
|
|
50
|
+
],
|
|
51
|
+
"schema_hint": "AgentCheckReport",
|
|
52
|
+
"settled": false,
|
|
53
|
+
"settled_blockers": [
|
|
54
|
+
"missing evidence"
|
|
55
|
+
],
|
|
56
|
+
"source_kind": "agent-check",
|
|
57
|
+
"source_path": "runtime_report_2.json",
|
|
58
|
+
"window_id": "phase-window:0001",
|
|
59
|
+
"workflow_usable": true
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"reasons": [
|
|
63
|
+
"ingested files were stored as inert local data",
|
|
64
|
+
"no embedded command, safe_command, network, repository, or model action was executed"
|
|
65
|
+
],
|
|
66
|
+
"rejected_paths": [],
|
|
67
|
+
"report_id": "phase-lab-ingest:phase-window:0001",
|
|
68
|
+
"settled": false,
|
|
69
|
+
"store_manifest": {
|
|
70
|
+
"accepted": true,
|
|
71
|
+
"database_path": "phase_lab.sqlite",
|
|
72
|
+
"event_count": 2,
|
|
73
|
+
"latest_window_id": "phase-window:0001",
|
|
74
|
+
"reasons": [
|
|
75
|
+
"phase lab store is local and non-executing"
|
|
76
|
+
],
|
|
77
|
+
"safety_invariants": [
|
|
78
|
+
"phase lab stores local report data only",
|
|
79
|
+
"phase lab never executes report or packet content",
|
|
80
|
+
"phase lab diagnostics do not settle claims"
|
|
81
|
+
],
|
|
82
|
+
"schema_version": "phase-lab-store-v1",
|
|
83
|
+
"settled": false,
|
|
84
|
+
"store_id": "phase-lab-store",
|
|
85
|
+
"store_path": "pic-phase-lab",
|
|
86
|
+
"window_count": 2
|
|
87
|
+
},
|
|
88
|
+
"window": {
|
|
89
|
+
"accepted": true,
|
|
90
|
+
"accepted_event_count": 0,
|
|
91
|
+
"candidate_only_event_count": 1,
|
|
92
|
+
"event_count": 1,
|
|
93
|
+
"event_ids": [
|
|
94
|
+
"phase-lab-event:1:749ba66f5742"
|
|
95
|
+
],
|
|
96
|
+
"missing_obligation_count": 0,
|
|
97
|
+
"positive_contribution_event_count": 0,
|
|
98
|
+
"reasons": [
|
|
99
|
+
"window index preserves event residuals without settling claims"
|
|
100
|
+
],
|
|
101
|
+
"residual_debt": 1.0,
|
|
102
|
+
"sequence": 1,
|
|
103
|
+
"settled": false,
|
|
104
|
+
"settled_event_count": 0,
|
|
105
|
+
"window_id": "phase-window:0001"
|
|
106
|
+
},
|
|
107
|
+
"workflow_usable": true
|
|
108
|
+
}
|
|
109
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"database_path": "phase_lab.sqlite",
|
|
4
|
+
"event_count": 0,
|
|
5
|
+
"latest_window_id": null,
|
|
6
|
+
"reasons": [
|
|
7
|
+
"phase lab store is local and non-executing"
|
|
8
|
+
],
|
|
9
|
+
"safety_invariants": [
|
|
10
|
+
"phase lab stores local report data only",
|
|
11
|
+
"phase lab never executes report or packet content",
|
|
12
|
+
"phase lab diagnostics do not settle claims"
|
|
13
|
+
],
|
|
14
|
+
"schema_version": "phase-lab-store-v1",
|
|
15
|
+
"settled": false,
|
|
16
|
+
"store_id": "phase-lab-store",
|
|
17
|
+
"store_path": "pic-phase-lab",
|
|
18
|
+
"window_count": 0
|
|
19
|
+
}
|
|
20
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"settled": false,
|
|
3
|
+
"store_manifest": {
|
|
4
|
+
"accepted": true,
|
|
5
|
+
"database_path": "phase_lab.sqlite",
|
|
6
|
+
"event_count": 2,
|
|
7
|
+
"latest_window_id": "phase-window:0001",
|
|
8
|
+
"reasons": [
|
|
9
|
+
"phase lab store is local and non-executing"
|
|
10
|
+
],
|
|
11
|
+
"safety_invariants": [
|
|
12
|
+
"phase lab stores local report data only",
|
|
13
|
+
"phase lab never executes report or packet content",
|
|
14
|
+
"phase lab diagnostics do not settle claims"
|
|
15
|
+
],
|
|
16
|
+
"schema_version": "phase-lab-store-v1",
|
|
17
|
+
"settled": false,
|
|
18
|
+
"store_id": "phase-lab-store",
|
|
19
|
+
"store_path": "pic-phase-lab",
|
|
20
|
+
"window_count": 2
|
|
21
|
+
},
|
|
22
|
+
"windows": [
|
|
23
|
+
{
|
|
24
|
+
"accepted": true,
|
|
25
|
+
"accepted_event_count": 1,
|
|
26
|
+
"candidate_only_event_count": 0,
|
|
27
|
+
"event_count": 1,
|
|
28
|
+
"event_ids": [
|
|
29
|
+
"phase-lab-event:0:a0e7926edd1c"
|
|
30
|
+
],
|
|
31
|
+
"missing_obligation_count": 0,
|
|
32
|
+
"positive_contribution_event_count": 1,
|
|
33
|
+
"reasons": [
|
|
34
|
+
"window index preserves event residuals without settling claims"
|
|
35
|
+
],
|
|
36
|
+
"residual_debt": 0.0,
|
|
37
|
+
"sequence": 0,
|
|
38
|
+
"settled": false,
|
|
39
|
+
"settled_event_count": 0,
|
|
40
|
+
"window_id": "phase-window:0000"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"accepted": true,
|
|
44
|
+
"accepted_event_count": 0,
|
|
45
|
+
"candidate_only_event_count": 1,
|
|
46
|
+
"event_count": 1,
|
|
47
|
+
"event_ids": [
|
|
48
|
+
"phase-lab-event:1:749ba66f5742"
|
|
49
|
+
],
|
|
50
|
+
"missing_obligation_count": 0,
|
|
51
|
+
"positive_contribution_event_count": 0,
|
|
52
|
+
"reasons": [
|
|
53
|
+
"window index preserves event residuals without settling claims"
|
|
54
|
+
],
|
|
55
|
+
"residual_debt": 1.0,
|
|
56
|
+
"sequence": 1,
|
|
57
|
+
"settled": false,
|
|
58
|
+
"settled_event_count": 0,
|
|
59
|
+
"window_id": "phase-window:0001"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_packet_count": 0,
|
|
4
|
+
"alt_certified_capital_count": 0,
|
|
5
|
+
"alt_liquidity_candidate_count": 0,
|
|
6
|
+
"autocatalytic_closure_score": 0.0,
|
|
7
|
+
"basin_reachability_proxy": {
|
|
8
|
+
"effective_node_count": 0,
|
|
9
|
+
"execution_available_path_count": 0,
|
|
10
|
+
"reachability_proxy": 0.0
|
|
11
|
+
},
|
|
12
|
+
"bottleneck_count_by_type": {
|
|
13
|
+
"candidate-only": 1,
|
|
14
|
+
"verification-blocked": 1
|
|
15
|
+
},
|
|
16
|
+
"candidate_only_packet_count": 1,
|
|
17
|
+
"closure_witness_count": 0,
|
|
18
|
+
"components": [
|
|
19
|
+
{
|
|
20
|
+
"component": "accepted_packet_count",
|
|
21
|
+
"diagnostic_only": false,
|
|
22
|
+
"distance": 0.0,
|
|
23
|
+
"positive_contribution_source": "effective-graph-only",
|
|
24
|
+
"threshold": 0.0,
|
|
25
|
+
"value": 0.0
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"component": "effective_node_count",
|
|
29
|
+
"diagnostic_only": false,
|
|
30
|
+
"distance": 0.0,
|
|
31
|
+
"positive_contribution_source": "effective-graph-only",
|
|
32
|
+
"threshold": 0.0,
|
|
33
|
+
"value": 0.0
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"component": "effective_edge_count",
|
|
37
|
+
"diagnostic_only": false,
|
|
38
|
+
"distance": 0.0,
|
|
39
|
+
"positive_contribution_source": "effective-graph-only",
|
|
40
|
+
"threshold": 0.0,
|
|
41
|
+
"value": 0.0
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"component": "raw_volume",
|
|
45
|
+
"diagnostic_only": true,
|
|
46
|
+
"distance": 0.0,
|
|
47
|
+
"positive_contribution_source": "effective-graph-only",
|
|
48
|
+
"threshold": 0.0,
|
|
49
|
+
"value": 1.0
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"effective_edge_count": 0,
|
|
53
|
+
"effective_node_count": 0,
|
|
54
|
+
"execution_available_path_count": 0,
|
|
55
|
+
"false_liquidity_load": {
|
|
56
|
+
"candidate_count": 0,
|
|
57
|
+
"certified_count": 0,
|
|
58
|
+
"load": 0.0
|
|
59
|
+
},
|
|
60
|
+
"missing_obligation_count": 0,
|
|
61
|
+
"observation_id": "phase-window-observation",
|
|
62
|
+
"operationally_usable": false,
|
|
63
|
+
"packet_candidate_count": 1,
|
|
64
|
+
"phase_gap_vector": {
|
|
65
|
+
"closure": 1.0,
|
|
66
|
+
"effective_edges": 1.0,
|
|
67
|
+
"effective_nodes": 1.0,
|
|
68
|
+
"execution_paths": 1.0
|
|
69
|
+
},
|
|
70
|
+
"protocol_relative_only": true,
|
|
71
|
+
"proves_physical_or_oracle_truth": false,
|
|
72
|
+
"proves_real_asi": false,
|
|
73
|
+
"raw_external_volume_diagnostic_only": true,
|
|
74
|
+
"reasons": [
|
|
75
|
+
"window observation is protocol-relative only",
|
|
76
|
+
"raw external volume is diagnostic only"
|
|
77
|
+
],
|
|
78
|
+
"residual_debt": 1.0,
|
|
79
|
+
"salience_obstruction_load": {
|
|
80
|
+
"blocked_count": 0,
|
|
81
|
+
"load": 0.0,
|
|
82
|
+
"total_count": 1
|
|
83
|
+
},
|
|
84
|
+
"settled": false,
|
|
85
|
+
"settled_packet_count": 0,
|
|
86
|
+
"threshold_distance": 4.0,
|
|
87
|
+
"verification_throughput": {
|
|
88
|
+
"accepted_count": 0,
|
|
89
|
+
"backlog_count": 0,
|
|
90
|
+
"throughput_ratio": 0.0
|
|
91
|
+
},
|
|
92
|
+
"waste_load": {
|
|
93
|
+
"load": 1.0,
|
|
94
|
+
"non_contributing_volume": 1,
|
|
95
|
+
"total_volume": 1
|
|
96
|
+
},
|
|
97
|
+
"window": {
|
|
98
|
+
"event_count": 1,
|
|
99
|
+
"event_ids": [
|
|
100
|
+
"phase-lab-event:1:749ba66f5742"
|
|
101
|
+
],
|
|
102
|
+
"sequence": 1,
|
|
103
|
+
"window_id": "phase-window:0001"
|
|
104
|
+
},
|
|
105
|
+
"workflow_usable": true,
|
|
106
|
+
"workflow_usable_packet_count": 1
|
|
107
|
+
}
|
|
108
|
+
|