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,221 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"action_boundaries": [
|
|
4
|
+
{
|
|
5
|
+
"action_kind": "tool-call",
|
|
6
|
+
"authority_explicit": false,
|
|
7
|
+
"boundary_id": "action-boundary:event:tool:1",
|
|
8
|
+
"external_result_verified": false,
|
|
9
|
+
"missing_obligations": [
|
|
10
|
+
"domain-authority-obligation",
|
|
11
|
+
"domain-rollback-obligation",
|
|
12
|
+
"physical-or-oracle-result-obligation"
|
|
13
|
+
],
|
|
14
|
+
"rollback_available": false,
|
|
15
|
+
"scope_bounded": false,
|
|
16
|
+
"settled": false,
|
|
17
|
+
"trace_ids": [
|
|
18
|
+
"event:tool:1"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"content_treated_as_data": true,
|
|
23
|
+
"executed_action_count": 0,
|
|
24
|
+
"frontier_debt": {
|
|
25
|
+
"debt_id": "trace-frontier-debt",
|
|
26
|
+
"missing_domain_obligations": [
|
|
27
|
+
"domain-authority-obligation",
|
|
28
|
+
"domain-rollback-obligation"
|
|
29
|
+
],
|
|
30
|
+
"missing_oracle_obligations": [
|
|
31
|
+
"physical-or-oracle-result-obligation"
|
|
32
|
+
],
|
|
33
|
+
"missing_physical_obligations": [
|
|
34
|
+
"physical-or-oracle-result-obligation"
|
|
35
|
+
],
|
|
36
|
+
"residual_preserved": true,
|
|
37
|
+
"settled": false
|
|
38
|
+
},
|
|
39
|
+
"protocol_relative_only": true,
|
|
40
|
+
"proves_physical_truth": false,
|
|
41
|
+
"reasons": [
|
|
42
|
+
"TRC adapter normalizes observed agent trace data only",
|
|
43
|
+
"external action claims remain residual unless verified"
|
|
44
|
+
],
|
|
45
|
+
"report_id": "trc-trace-adapter",
|
|
46
|
+
"settled": false,
|
|
47
|
+
"tolerance_ledger": {
|
|
48
|
+
"ledger_id": "trace-tolerance-ledger",
|
|
49
|
+
"residual_charge": 3.0,
|
|
50
|
+
"settled": false,
|
|
51
|
+
"tolerance_coordinates": {
|
|
52
|
+
"missing_authority": 1.0,
|
|
53
|
+
"missing_rollback": 1.0,
|
|
54
|
+
"unverified_external_result": 1.0
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"trace_normal_form": {
|
|
58
|
+
"action_boundaries": [
|
|
59
|
+
{
|
|
60
|
+
"action_kind": "tool-call",
|
|
61
|
+
"authority_explicit": false,
|
|
62
|
+
"boundary_id": "action-boundary:event:tool:1",
|
|
63
|
+
"external_result_verified": false,
|
|
64
|
+
"missing_obligations": [
|
|
65
|
+
"domain-authority-obligation",
|
|
66
|
+
"domain-rollback-obligation",
|
|
67
|
+
"physical-or-oracle-result-obligation"
|
|
68
|
+
],
|
|
69
|
+
"rollback_available": false,
|
|
70
|
+
"scope_bounded": false,
|
|
71
|
+
"settled": false,
|
|
72
|
+
"trace_ids": [
|
|
73
|
+
"event:tool:1"
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"content_treated_as_data": true,
|
|
78
|
+
"normal_form_id": "trace:demo",
|
|
79
|
+
"normalized_word": [
|
|
80
|
+
"tool-call"
|
|
81
|
+
],
|
|
82
|
+
"settled": false,
|
|
83
|
+
"tool_calls": [
|
|
84
|
+
{
|
|
85
|
+
"action_kind": "tool-call",
|
|
86
|
+
"authority_status": "not-granted",
|
|
87
|
+
"content_treated_as_data": true,
|
|
88
|
+
"evidence_refs": [],
|
|
89
|
+
"execution_success_claim_verified": false,
|
|
90
|
+
"input_digest": "sha256:bf6634ac01dee40c4a0ecd760a553001d4449840fb7b189a9f22e3b8d6f6c7ab",
|
|
91
|
+
"output_digest": "sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a",
|
|
92
|
+
"receiver": "example-tool",
|
|
93
|
+
"rollback_status": "unknown",
|
|
94
|
+
"settled": false,
|
|
95
|
+
"source": "agent:demo",
|
|
96
|
+
"tool_name": "example-tool",
|
|
97
|
+
"trace_id": "event:tool:1"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"typed_trace": {
|
|
102
|
+
"accepted": true,
|
|
103
|
+
"action_boundaries": [
|
|
104
|
+
{
|
|
105
|
+
"action_kind": "tool-call",
|
|
106
|
+
"authority_explicit": false,
|
|
107
|
+
"boundary_id": "action-boundary:event:tool:1",
|
|
108
|
+
"external_result_verified": false,
|
|
109
|
+
"missing_obligations": [
|
|
110
|
+
"domain-authority-obligation",
|
|
111
|
+
"domain-rollback-obligation",
|
|
112
|
+
"physical-or-oracle-result-obligation"
|
|
113
|
+
],
|
|
114
|
+
"rollback_available": false,
|
|
115
|
+
"scope_bounded": false,
|
|
116
|
+
"settled": false,
|
|
117
|
+
"trace_ids": [
|
|
118
|
+
"event:tool:1"
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"content_treated_as_data": true,
|
|
123
|
+
"frontier_debt": {
|
|
124
|
+
"debt_id": "trace-frontier-debt",
|
|
125
|
+
"missing_domain_obligations": [
|
|
126
|
+
"domain-authority-obligation",
|
|
127
|
+
"domain-rollback-obligation"
|
|
128
|
+
],
|
|
129
|
+
"missing_oracle_obligations": [
|
|
130
|
+
"physical-or-oracle-result-obligation"
|
|
131
|
+
],
|
|
132
|
+
"missing_physical_obligations": [
|
|
133
|
+
"physical-or-oracle-result-obligation"
|
|
134
|
+
],
|
|
135
|
+
"residual_preserved": true,
|
|
136
|
+
"settled": false
|
|
137
|
+
},
|
|
138
|
+
"normal_form": {
|
|
139
|
+
"action_boundaries": [
|
|
140
|
+
{
|
|
141
|
+
"action_kind": "tool-call",
|
|
142
|
+
"authority_explicit": false,
|
|
143
|
+
"boundary_id": "action-boundary:event:tool:1",
|
|
144
|
+
"external_result_verified": false,
|
|
145
|
+
"missing_obligations": [
|
|
146
|
+
"domain-authority-obligation",
|
|
147
|
+
"domain-rollback-obligation",
|
|
148
|
+
"physical-or-oracle-result-obligation"
|
|
149
|
+
],
|
|
150
|
+
"rollback_available": false,
|
|
151
|
+
"scope_bounded": false,
|
|
152
|
+
"settled": false,
|
|
153
|
+
"trace_ids": [
|
|
154
|
+
"event:tool:1"
|
|
155
|
+
]
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"content_treated_as_data": true,
|
|
159
|
+
"normal_form_id": "trace:demo",
|
|
160
|
+
"normalized_word": [
|
|
161
|
+
"tool-call"
|
|
162
|
+
],
|
|
163
|
+
"settled": false,
|
|
164
|
+
"tool_calls": [
|
|
165
|
+
{
|
|
166
|
+
"action_kind": "tool-call",
|
|
167
|
+
"authority_status": "not-granted",
|
|
168
|
+
"content_treated_as_data": true,
|
|
169
|
+
"evidence_refs": [],
|
|
170
|
+
"execution_success_claim_verified": false,
|
|
171
|
+
"input_digest": "sha256:bf6634ac01dee40c4a0ecd760a553001d4449840fb7b189a9f22e3b8d6f6c7ab",
|
|
172
|
+
"output_digest": "sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a",
|
|
173
|
+
"receiver": "example-tool",
|
|
174
|
+
"rollback_status": "unknown",
|
|
175
|
+
"settled": false,
|
|
176
|
+
"source": "agent:demo",
|
|
177
|
+
"tool_name": "example-tool",
|
|
178
|
+
"trace_id": "event:tool:1"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
"protocol_relative_only": true,
|
|
183
|
+
"proves_physical_truth": false,
|
|
184
|
+
"reasons": [
|
|
185
|
+
"tool trace content is data, not instruction",
|
|
186
|
+
"typed trace does not prove physical or oracle truth"
|
|
187
|
+
],
|
|
188
|
+
"settled": false,
|
|
189
|
+
"tolerance_ledger": {
|
|
190
|
+
"ledger_id": "trace-tolerance-ledger",
|
|
191
|
+
"residual_charge": 3.0,
|
|
192
|
+
"settled": false,
|
|
193
|
+
"tolerance_coordinates": {
|
|
194
|
+
"missing_authority": 1.0,
|
|
195
|
+
"missing_rollback": 1.0,
|
|
196
|
+
"unverified_external_result": 1.0
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"tool_calls": [
|
|
200
|
+
{
|
|
201
|
+
"action_kind": "tool-call",
|
|
202
|
+
"authority_status": "not-granted",
|
|
203
|
+
"content_treated_as_data": true,
|
|
204
|
+
"evidence_refs": [],
|
|
205
|
+
"execution_success_claim_verified": false,
|
|
206
|
+
"input_digest": "sha256:bf6634ac01dee40c4a0ecd760a553001d4449840fb7b189a9f22e3b8d6f6c7ab",
|
|
207
|
+
"output_digest": "sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a",
|
|
208
|
+
"receiver": "example-tool",
|
|
209
|
+
"rollback_status": "unknown",
|
|
210
|
+
"settled": false,
|
|
211
|
+
"source": "agent:demo",
|
|
212
|
+
"tool_name": "example-tool",
|
|
213
|
+
"trace_id": "event:tool:1"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"trace_id": "trace:demo",
|
|
217
|
+
"workflow_usable": true
|
|
218
|
+
},
|
|
219
|
+
"workflow_usable": true
|
|
220
|
+
}
|
|
221
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"maximum_false_liquidity_load": 0.5,
|
|
3
|
+
"maximum_residual_debt": 0.0,
|
|
4
|
+
"maximum_salience_obstruction": 0.5,
|
|
5
|
+
"minimum_accepted_packet_count": 1,
|
|
6
|
+
"minimum_alt_to_ecpt_lift_count": 0,
|
|
7
|
+
"minimum_closure_witness_count": 1,
|
|
8
|
+
"minimum_effective_edge_count": 1,
|
|
9
|
+
"minimum_execution_available_path_density": 0.1,
|
|
10
|
+
"minimum_verification_throughput": 0.1,
|
|
11
|
+
"required_authority_status": "explicit-scope-bounded",
|
|
12
|
+
"required_identity_mode": "declared",
|
|
13
|
+
"required_rollback_availability": true,
|
|
14
|
+
"threshold_id": "asi-proxy-development"
|
|
15
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"certificate_id": "collective-phase-certificate-candidate",
|
|
4
|
+
"certificate_status": "abstain",
|
|
5
|
+
"defects": [],
|
|
6
|
+
"finite_requirements_passed": false,
|
|
7
|
+
"operationally_usable": false,
|
|
8
|
+
"protocol_relative_only": true,
|
|
9
|
+
"proves_physical_or_oracle_truth": false,
|
|
10
|
+
"proves_real_asi": false,
|
|
11
|
+
"reasons": [
|
|
12
|
+
"certificate candidate is protocol-relative only",
|
|
13
|
+
"certificate candidate does not prove real ASI"
|
|
14
|
+
],
|
|
15
|
+
"settled": false,
|
|
16
|
+
"threshold_status": {
|
|
17
|
+
"accepted": false,
|
|
18
|
+
"certificate_status": "abstain",
|
|
19
|
+
"component_status": {},
|
|
20
|
+
"failed_components": [],
|
|
21
|
+
"observation": {
|
|
22
|
+
"settled": false,
|
|
23
|
+
"window": {
|
|
24
|
+
"event_count": 0,
|
|
25
|
+
"event_ids": [],
|
|
26
|
+
"sequence": 0,
|
|
27
|
+
"window_id": "phase-window:example"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"protocol_relative_only": true,
|
|
31
|
+
"proves_real_asi": false,
|
|
32
|
+
"settled": false,
|
|
33
|
+
"threshold": {
|
|
34
|
+
"threshold_id": "asi-proxy-development"
|
|
35
|
+
},
|
|
36
|
+
"threshold_distance": 0.0
|
|
37
|
+
},
|
|
38
|
+
"workflow_usable": true
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"certificate_candidate": {
|
|
4
|
+
"abstention_reasons": [],
|
|
5
|
+
"accepted": true,
|
|
6
|
+
"certificate_id": "closure-certificate-candidate",
|
|
7
|
+
"certificate_status": "candidate",
|
|
8
|
+
"defects": [],
|
|
9
|
+
"reasons": ["closure candidate is not automatically settled"],
|
|
10
|
+
"settled": false,
|
|
11
|
+
"witness_ids": ["closure-witness:edge:self-alpha"]
|
|
12
|
+
},
|
|
13
|
+
"closure_score": 1.0,
|
|
14
|
+
"closure_witnesses": [
|
|
15
|
+
{
|
|
16
|
+
"accepted": true,
|
|
17
|
+
"edge_ids": ["edge:self-alpha"],
|
|
18
|
+
"evidence_supported": true,
|
|
19
|
+
"execution_available": false,
|
|
20
|
+
"packet_ids": ["node:alpha"],
|
|
21
|
+
"productive": true,
|
|
22
|
+
"protocol_relative_only": true,
|
|
23
|
+
"reasons": ["witness remains diagnostic until finite threshold checks pass"],
|
|
24
|
+
"settled": false,
|
|
25
|
+
"witness_id": "closure-witness:edge:self-alpha",
|
|
26
|
+
"witness_kind": "autocatalytic-closure"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"defects": [],
|
|
30
|
+
"executable_witnesses": [],
|
|
31
|
+
"graph_id": "effective-graph-example",
|
|
32
|
+
"operationally_usable": true,
|
|
33
|
+
"productive_witnesses": [],
|
|
34
|
+
"reasons": ["closure detection does not execute or settle paths"],
|
|
35
|
+
"report_id": "autocatalytic-closure-report",
|
|
36
|
+
"settled": false,
|
|
37
|
+
"support_hyperpaths": [],
|
|
38
|
+
"workflow_usable": true
|
|
39
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_packet_capital": 1,
|
|
4
|
+
"candidate_only_packets": 0,
|
|
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": ["evidence:alpha"],
|
|
22
|
+
"evidence_supported": true,
|
|
23
|
+
"missing_evidence": [],
|
|
24
|
+
"verifier_resolution_refs": []
|
|
25
|
+
},
|
|
26
|
+
"reasons": ["edge extracted from inert report data"],
|
|
27
|
+
"relation_type": "self-support",
|
|
28
|
+
"residual_summary": {},
|
|
29
|
+
"settled": false,
|
|
30
|
+
"source_node_ids": ["node:alpha"],
|
|
31
|
+
"target_node_id": "node:alpha"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"graph_id": "effective-graph-example",
|
|
35
|
+
"graph_safety_boundary": [
|
|
36
|
+
"raw packet volume is diagnostic only",
|
|
37
|
+
"candidate-only nodes do not improve positive phase components",
|
|
38
|
+
"graph construction does not execute packet content",
|
|
39
|
+
"graph construction does not settle claims"
|
|
40
|
+
],
|
|
41
|
+
"missing_edge_evidence": [],
|
|
42
|
+
"node_count_by_status": {
|
|
43
|
+
"accepted": 1
|
|
44
|
+
},
|
|
45
|
+
"nodes": [
|
|
46
|
+
{
|
|
47
|
+
"accepted": true,
|
|
48
|
+
"content_digest": "sha256-alpha",
|
|
49
|
+
"contribution": {
|
|
50
|
+
"candidate_only": false,
|
|
51
|
+
"non_contributing_reason": "",
|
|
52
|
+
"positive_contribution": true,
|
|
53
|
+
"settled": false,
|
|
54
|
+
"status": "accepted"
|
|
55
|
+
},
|
|
56
|
+
"eligibility": {
|
|
57
|
+
"accepted_or_certificate_admissible": true,
|
|
58
|
+
"agent_text_not_treated_as_evidence": true,
|
|
59
|
+
"authority_valid": true,
|
|
60
|
+
"blockers": [],
|
|
61
|
+
"eligible": true,
|
|
62
|
+
"hash_valid": true,
|
|
63
|
+
"not_raw_external_volume": true,
|
|
64
|
+
"not_registry_metadata_only": true,
|
|
65
|
+
"not_salience_blocked": true,
|
|
66
|
+
"not_stale": true,
|
|
67
|
+
"not_verification_blocked": true,
|
|
68
|
+
"residuals_preserved": true,
|
|
69
|
+
"retrievable": true,
|
|
70
|
+
"rollback_available_or_not_required": true,
|
|
71
|
+
"within_validity_domain": true
|
|
72
|
+
},
|
|
73
|
+
"missing_obligations": [],
|
|
74
|
+
"node_id": "node:alpha",
|
|
75
|
+
"operationally_usable": true,
|
|
76
|
+
"reasons": [],
|
|
77
|
+
"residual_summary": {},
|
|
78
|
+
"schema_hint": "AgentCheckReport",
|
|
79
|
+
"settled": false,
|
|
80
|
+
"source_event_id": "event:alpha",
|
|
81
|
+
"source_kind": "agent-check",
|
|
82
|
+
"workflow_usable": true
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"non_contributing_volume": 0,
|
|
86
|
+
"operationally_usable": true,
|
|
87
|
+
"reasons": [
|
|
88
|
+
"effective graph separates positive contribution from diagnostic volume",
|
|
89
|
+
"raw packet count does not increase positive phase metrics"
|
|
90
|
+
],
|
|
91
|
+
"rejected_or_quarantined_packets": 0,
|
|
92
|
+
"residual_summary": {
|
|
93
|
+
"candidate_only_reasons": [],
|
|
94
|
+
"missing_obligation_count": 0,
|
|
95
|
+
"residual_debt": 0.0,
|
|
96
|
+
"residual_summary": {},
|
|
97
|
+
"settled_blockers": []
|
|
98
|
+
},
|
|
99
|
+
"semantic_edge_witnesses": [
|
|
100
|
+
{
|
|
101
|
+
"edge_certificate_refs": [],
|
|
102
|
+
"evidence_refs": ["evidence:alpha"],
|
|
103
|
+
"evidence_supported": true,
|
|
104
|
+
"missing_evidence": [],
|
|
105
|
+
"verifier_resolution_refs": []
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"settled": false,
|
|
109
|
+
"source_window_id": "phase-window:0000",
|
|
110
|
+
"stale_or_unsafe_packets": [],
|
|
111
|
+
"workflow_usable": true
|
|
112
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_path_count": 1,
|
|
4
|
+
"authority_requirements": ["authority:edge:self-alpha"],
|
|
5
|
+
"blocked_path_count": 0,
|
|
6
|
+
"blocker_reason_by_path": {},
|
|
7
|
+
"candidate_only_path_count": 0,
|
|
8
|
+
"executed_path_count": 0,
|
|
9
|
+
"graph_id": "effective-graph-example",
|
|
10
|
+
"operationally_usable": true,
|
|
11
|
+
"path_count": 1,
|
|
12
|
+
"path_density": 1.0,
|
|
13
|
+
"paths": [],
|
|
14
|
+
"reasons": ["execution-available path detection never executes paths"],
|
|
15
|
+
"report_id": "execution-available-path-density",
|
|
16
|
+
"residual_carry_forward": [],
|
|
17
|
+
"rollback_requirements": ["rollback:edge:self-alpha"],
|
|
18
|
+
"settled": false,
|
|
19
|
+
"workflow_usable": true
|
|
20
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_packet_count": 1,
|
|
4
|
+
"alt_certified_capital_count": 0,
|
|
5
|
+
"alt_liquidity_candidate_count": 0,
|
|
6
|
+
"autocatalytic_closure_score": 1.0,
|
|
7
|
+
"basin_reachability_proxy": {
|
|
8
|
+
"effective_node_count": 1,
|
|
9
|
+
"execution_available_path_count": 1,
|
|
10
|
+
"reachability_proxy": 1.0
|
|
11
|
+
},
|
|
12
|
+
"bottleneck_count_by_type": {},
|
|
13
|
+
"candidate_only_packet_count": 0,
|
|
14
|
+
"closure_witness_count": 1,
|
|
15
|
+
"components": [],
|
|
16
|
+
"effective_edge_count": 1,
|
|
17
|
+
"effective_node_count": 1,
|
|
18
|
+
"execution_available_path_count": 1,
|
|
19
|
+
"false_liquidity_load": {
|
|
20
|
+
"candidate_count": 0,
|
|
21
|
+
"certified_count": 0,
|
|
22
|
+
"load": 0.0
|
|
23
|
+
},
|
|
24
|
+
"missing_obligation_count": 0,
|
|
25
|
+
"observation_id": "phase-window-observation",
|
|
26
|
+
"operationally_usable": true,
|
|
27
|
+
"packet_candidate_count": 1,
|
|
28
|
+
"phase_gap_vector": {},
|
|
29
|
+
"protocol_relative_only": true,
|
|
30
|
+
"proves_physical_or_oracle_truth": false,
|
|
31
|
+
"proves_real_asi": false,
|
|
32
|
+
"raw_external_volume_diagnostic_only": true,
|
|
33
|
+
"reasons": ["window observation is protocol-relative only"],
|
|
34
|
+
"residual_debt": 0.0,
|
|
35
|
+
"salience_obstruction_load": {
|
|
36
|
+
"blocked_count": 0,
|
|
37
|
+
"load": 0.0,
|
|
38
|
+
"total_count": 1
|
|
39
|
+
},
|
|
40
|
+
"settled": false,
|
|
41
|
+
"settled_packet_count": 0,
|
|
42
|
+
"threshold_distance": 0.0,
|
|
43
|
+
"verification_throughput": {
|
|
44
|
+
"accepted_count": 1,
|
|
45
|
+
"backlog_count": 0,
|
|
46
|
+
"throughput_ratio": 1.0
|
|
47
|
+
},
|
|
48
|
+
"waste_load": {
|
|
49
|
+
"load": 0.0,
|
|
50
|
+
"non_contributing_volume": 0,
|
|
51
|
+
"total_volume": 1
|
|
52
|
+
},
|
|
53
|
+
"window": {
|
|
54
|
+
"event_count": 1,
|
|
55
|
+
"event_ids": ["event:alpha"],
|
|
56
|
+
"sequence": 0,
|
|
57
|
+
"window_id": "phase-window:0000"
|
|
58
|
+
},
|
|
59
|
+
"workflow_usable": true,
|
|
60
|
+
"workflow_usable_packet_count": 1
|
|
61
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"edges": [
|
|
4
|
+
{
|
|
5
|
+
"accepted": true,
|
|
6
|
+
"edge_id": "edge:self-alpha",
|
|
7
|
+
"evidence_refs": ["evidence:alpha"],
|
|
8
|
+
"relation_type": "self-support",
|
|
9
|
+
"source_packet_ids": ["packet:alpha"],
|
|
10
|
+
"target_packet_id": "packet:alpha"
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"operationally_usable": true,
|
|
14
|
+
"packet_ref": "packet:alpha",
|
|
15
|
+
"report_id": "phase-lab-runtime-report-1",
|
|
16
|
+
"residual_summary": {},
|
|
17
|
+
"settled": false,
|
|
18
|
+
"workflow_usable": true
|
|
19
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"candidate_only": true,
|
|
4
|
+
"candidate_only_reasons": ["external candidate requires finite verifier route"],
|
|
5
|
+
"operationally_usable": false,
|
|
6
|
+
"packet_ref": "packet:beta",
|
|
7
|
+
"report_id": "phase-lab-runtime-report-2",
|
|
8
|
+
"residual_summary": {
|
|
9
|
+
"missing_evidence": 1.0
|
|
10
|
+
},
|
|
11
|
+
"settled": false,
|
|
12
|
+
"settled_blockers": ["missing evidence"],
|
|
13
|
+
"workflow_usable": true
|
|
14
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"abstention_reasons": ["missing finite threshold component: minimum_closure_witness_count"],
|
|
4
|
+
"certificate_status": "abstain",
|
|
5
|
+
"component_status": {
|
|
6
|
+
"minimum_closure_witness_count": false
|
|
7
|
+
},
|
|
8
|
+
"failed_components": ["minimum_closure_witness_count"],
|
|
9
|
+
"observation": {
|
|
10
|
+
"observation_id": "phase-window-observation",
|
|
11
|
+
"settled": false,
|
|
12
|
+
"window": {
|
|
13
|
+
"event_count": 0,
|
|
14
|
+
"event_ids": [],
|
|
15
|
+
"sequence": 0,
|
|
16
|
+
"window_id": "phase-window:example"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"protocol_relative_only": true,
|
|
20
|
+
"proves_real_asi": false,
|
|
21
|
+
"reasons": ["threshold status is protocol-relative only"],
|
|
22
|
+
"rejection_reasons": [],
|
|
23
|
+
"settled": false,
|
|
24
|
+
"status_id": "asi-proxy-threshold-status",
|
|
25
|
+
"threshold": {
|
|
26
|
+
"threshold_id": "asi-proxy-development"
|
|
27
|
+
},
|
|
28
|
+
"threshold_distance": 1.0
|
|
29
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"canonical_source": "percolation-inversion-compiler==0.5.0",
|
|
3
|
+
"description": "Python v0.5.0 snapshot CLI golden JSON for PIC-TS public compatibility checks.",
|
|
4
|
+
"exact_parity_files": [
|
|
5
|
+
"snapshot_list.json",
|
|
6
|
+
"snapshot_routes.json",
|
|
7
|
+
"snapshot_show_alt.json",
|
|
8
|
+
"snapshot_show_bit.json",
|
|
9
|
+
"snapshot_show_ecpt.json",
|
|
10
|
+
"snapshot_show_sqot.json",
|
|
11
|
+
"snapshot_show_trc.json",
|
|
12
|
+
"snapshot_verify_alt.json",
|
|
13
|
+
"snapshot_verify_bit.json",
|
|
14
|
+
"snapshot_verify_ecpt.json",
|
|
15
|
+
"snapshot_verify_sqot.json",
|
|
16
|
+
"snapshot_verify_trc.json"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"snapshot_list.json",
|
|
20
|
+
"snapshot_routes.json",
|
|
21
|
+
"snapshot_show_alt.json",
|
|
22
|
+
"snapshot_show_bit.json",
|
|
23
|
+
"snapshot_show_ecpt.json",
|
|
24
|
+
"snapshot_show_sqot.json",
|
|
25
|
+
"snapshot_show_trc.json",
|
|
26
|
+
"snapshot_verify_alt.json",
|
|
27
|
+
"snapshot_verify_bit.json",
|
|
28
|
+
"snapshot_verify_ecpt.json",
|
|
29
|
+
"snapshot_verify_sqot.json",
|
|
30
|
+
"snapshot_verify_trc.json"
|
|
31
|
+
],
|
|
32
|
+
"fixture_set_id": "python-v050-snapshots",
|
|
33
|
+
"generated_by": ".venv/Scripts/pic.exe snapshot list/show/verify/routes",
|
|
34
|
+
"invariants": [
|
|
35
|
+
"snapshot records are derived metadata and do not vendor TeX or PDF source files",
|
|
36
|
+
"snapshot verification returns canonical_sha256 and valid status without changing claim status",
|
|
37
|
+
"external obligations remain explicit residual work and are not promoted to settled claims"
|
|
38
|
+
]
|
|
39
|
+
}
|