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-packet-graph",
|
|
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": "adhoc",
|
|
175
|
+
"stale_or_unsafe_packets": [],
|
|
176
|
+
"workflow_usable": true
|
|
177
|
+
}
|
|
178
|
+
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"accepted_path_count": 1,
|
|
4
|
+
"authority_requirements": [
|
|
5
|
+
"authority:edge:self-alpha"
|
|
6
|
+
],
|
|
7
|
+
"blocked_path_count": 0,
|
|
8
|
+
"blocker_reason_by_path": {},
|
|
9
|
+
"candidate_only_path_count": 0,
|
|
10
|
+
"executed_path_count": 0,
|
|
11
|
+
"graph_id": "effective-packet-graph",
|
|
12
|
+
"operationally_usable": true,
|
|
13
|
+
"path_count": 1,
|
|
14
|
+
"path_density": 0.5,
|
|
15
|
+
"paths": [
|
|
16
|
+
{
|
|
17
|
+
"accepted": true,
|
|
18
|
+
"action_boundary_requirements": [
|
|
19
|
+
{
|
|
20
|
+
"requirement_id": "authority:edge:self-alpha",
|
|
21
|
+
"requirement_type": "authority",
|
|
22
|
+
"residual": "",
|
|
23
|
+
"satisfied": true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"requirement_id": "rollback:edge:self-alpha",
|
|
27
|
+
"requirement_type": "rollback",
|
|
28
|
+
"residual": "",
|
|
29
|
+
"satisfied": true
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"authority_status": {
|
|
33
|
+
"authority_status": "explicit-scope-bounded",
|
|
34
|
+
"explicit_scope_bounded": true,
|
|
35
|
+
"grants_execution": false,
|
|
36
|
+
"reasons": [
|
|
37
|
+
"execution path report never grants execution authority"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"blocked": false,
|
|
41
|
+
"candidate_only": false,
|
|
42
|
+
"edge_ids": [
|
|
43
|
+
"edge:self-alpha"
|
|
44
|
+
],
|
|
45
|
+
"not_executed": true,
|
|
46
|
+
"packet_ids": [
|
|
47
|
+
"node:a0e7926edd1c"
|
|
48
|
+
],
|
|
49
|
+
"path_id": "execution-path:edge:self-alpha",
|
|
50
|
+
"reasons": [
|
|
51
|
+
"execution path is available as a finite diagnostic witness"
|
|
52
|
+
],
|
|
53
|
+
"receiver_context": {
|
|
54
|
+
"evidence_refs": [
|
|
55
|
+
"evidence:alpha"
|
|
56
|
+
],
|
|
57
|
+
"present": true,
|
|
58
|
+
"receiver_context_id": "receiver:node:a0e7926edd1c"
|
|
59
|
+
},
|
|
60
|
+
"settled": false,
|
|
61
|
+
"witness": {
|
|
62
|
+
"accepted": true,
|
|
63
|
+
"edge_ids": [
|
|
64
|
+
"edge:self-alpha"
|
|
65
|
+
],
|
|
66
|
+
"packet_ids": [
|
|
67
|
+
"node:a0e7926edd1c"
|
|
68
|
+
],
|
|
69
|
+
"reasons": [],
|
|
70
|
+
"settled": false,
|
|
71
|
+
"witness_id": "execution-witness:edge:self-alpha"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"reasons": [
|
|
76
|
+
"execution-available path detection never executes paths"
|
|
77
|
+
],
|
|
78
|
+
"report_id": "execution-available-path-density",
|
|
79
|
+
"residual_carry_forward": [
|
|
80
|
+
"execution path is available as a finite diagnostic witness"
|
|
81
|
+
],
|
|
82
|
+
"rollback_requirements": [
|
|
83
|
+
"rollback:edge:self-alpha"
|
|
84
|
+
],
|
|
85
|
+
"settled": false,
|
|
86
|
+
"workflow_usable": true
|
|
87
|
+
}
|
|
88
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"canonical_source": "percolation-inversion-compiler==0.5.0",
|
|
3
|
+
"description": "Python v0.5.0 CLI reference JSON for PIC-TS public-shape and safety compatibility checks.",
|
|
4
|
+
"exact_parity_files": [],
|
|
5
|
+
"fixture_set_id": "python-v050-cli-reference",
|
|
6
|
+
"notes": [
|
|
7
|
+
"Phase Lab storage is JSON/JSONL in PIC-TS and SQLite-backed in Python, so these files are not exact equality claims.",
|
|
8
|
+
"PIC-TS uses these records to preserve public JSON meaning, non-promotion rules, and fail-closed diagnostic behavior.",
|
|
9
|
+
"Exact snapshot parity is tracked separately in fixtures/python_v050_snapshots/manifest.json."
|
|
10
|
+
],
|
|
11
|
+
"safe_diagnostic_compatibility_files": [
|
|
12
|
+
"alt_capital_impact.json",
|
|
13
|
+
"alt_ecpt_lift.json",
|
|
14
|
+
"alt_liquidity_to_paths.json",
|
|
15
|
+
"alt_receiver_lift.json",
|
|
16
|
+
"bit_certificate.json",
|
|
17
|
+
"bit_compare_baseline.json",
|
|
18
|
+
"bit_diagnose.json",
|
|
19
|
+
"bit_invert.json",
|
|
20
|
+
"bit_mec.json",
|
|
21
|
+
"ecology_effective_graph.json",
|
|
22
|
+
"ecology_execution_available_paths.json",
|
|
23
|
+
"phase_lab_certify.json",
|
|
24
|
+
"phase_lab_closure.json",
|
|
25
|
+
"phase_lab_compare_window.json",
|
|
26
|
+
"phase_lab_executable_paths.json",
|
|
27
|
+
"phase_lab_graph.json",
|
|
28
|
+
"phase_lab_ingest_1.json",
|
|
29
|
+
"phase_lab_ingest_2.json",
|
|
30
|
+
"phase_lab_init.json",
|
|
31
|
+
"phase_lab_list_windows.json",
|
|
32
|
+
"phase_lab_observe.json",
|
|
33
|
+
"phase_lab_threshold_status.json",
|
|
34
|
+
"sqot_diagnose_queue.json",
|
|
35
|
+
"sqot_quarantine.json",
|
|
36
|
+
"sqot_rebalance.json",
|
|
37
|
+
"sqot_reserve_check.json",
|
|
38
|
+
"sqot_salience_obstruction.json",
|
|
39
|
+
"trc_action_boundary.json",
|
|
40
|
+
"trc_tool_trace.json",
|
|
41
|
+
"trc_trace_adapter.json"
|
|
42
|
+
],
|
|
43
|
+
"safety_contract": {
|
|
44
|
+
"execution_authority_granted": false,
|
|
45
|
+
"packet_and_trace_content_is_inert": true,
|
|
46
|
+
"settled": false
|
|
47
|
+
}
|
|
48
|
+
}
|