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,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"candidate_only": true,
|
|
4
|
+
"candidate_only_reasons": [
|
|
5
|
+
"external candidate requires finite verifier route"
|
|
6
|
+
],
|
|
7
|
+
"operationally_usable": false,
|
|
8
|
+
"packet_ref": "packet:beta",
|
|
9
|
+
"report_id": "phase-lab-runtime-report-2",
|
|
10
|
+
"residual_summary": {
|
|
11
|
+
"missing_evidence": 1.0
|
|
12
|
+
},
|
|
13
|
+
"settled": false,
|
|
14
|
+
"settled_blockers": ["missing evidence"],
|
|
15
|
+
"workflow_usable": true
|
|
16
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"abstention_reasons": [
|
|
4
|
+
"missing finite threshold component: minimum_closure_witness_count"
|
|
5
|
+
],
|
|
6
|
+
"certificate_status": "abstain",
|
|
7
|
+
"component_status": {
|
|
8
|
+
"minimum_closure_witness_count": false
|
|
9
|
+
},
|
|
10
|
+
"failed_components": ["minimum_closure_witness_count"],
|
|
11
|
+
"observation": {
|
|
12
|
+
"observation_id": "phase-window-observation",
|
|
13
|
+
"settled": false,
|
|
14
|
+
"window": {
|
|
15
|
+
"event_count": 0,
|
|
16
|
+
"event_ids": [],
|
|
17
|
+
"sequence": 0,
|
|
18
|
+
"window_id": "phase-window:example"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"protocol_relative_only": true,
|
|
22
|
+
"proves_real_asi": false,
|
|
23
|
+
"reasons": ["threshold status is protocol-relative only"],
|
|
24
|
+
"rejection_reasons": [],
|
|
25
|
+
"settled": false,
|
|
26
|
+
"status_id": "asi-proxy-threshold-status",
|
|
27
|
+
"threshold": {
|
|
28
|
+
"threshold_id": "asi-proxy-development"
|
|
29
|
+
},
|
|
30
|
+
"threshold_distance": 1.0
|
|
31
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"attention_budget_ledger": {
|
|
4
|
+
"attention_budget": 1.0,
|
|
5
|
+
"diagnostic_reserve_available": 0.9,
|
|
6
|
+
"diagnostic_reserve_required": 0.1,
|
|
7
|
+
"ledger_id": "sqot-attention-budget",
|
|
8
|
+
"occupied": 0.1,
|
|
9
|
+
"reserve_preserved": true,
|
|
10
|
+
"settled": false
|
|
11
|
+
},
|
|
12
|
+
"blocked_high_value_packets": [],
|
|
13
|
+
"graph_id": "effective-graph-example",
|
|
14
|
+
"low_value_packet_ids": [],
|
|
15
|
+
"reasons": ["queue occupation report is diagnostic only"],
|
|
16
|
+
"repeated_candidate_only_packets": [],
|
|
17
|
+
"report_id": "sqot-queue-occupation",
|
|
18
|
+
"rollback_unavailable_decisions": [],
|
|
19
|
+
"settled": false,
|
|
20
|
+
"verification_queue_pressure": {
|
|
21
|
+
"backlog_count": 0,
|
|
22
|
+
"candidate_only_count": 0,
|
|
23
|
+
"pressure": 0.0,
|
|
24
|
+
"pressure_id": "sqot-verification-pressure",
|
|
25
|
+
"settled": false,
|
|
26
|
+
"stale_packet_count": 0,
|
|
27
|
+
"unsafe_packet_count": 0
|
|
28
|
+
},
|
|
29
|
+
"workflow_usable": true
|
|
30
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"deletes_packets": false,
|
|
4
|
+
"executes_actions": false,
|
|
5
|
+
"graph_id": "effective-graph-example",
|
|
6
|
+
"plan_id": "sqot-queue-rebalance",
|
|
7
|
+
"quarantine_decisions": [],
|
|
8
|
+
"reasons": ["rebalance plan is recommendation-only"],
|
|
9
|
+
"recommended_actions": {
|
|
10
|
+
"node:alpha": "accept"
|
|
11
|
+
},
|
|
12
|
+
"settled": false,
|
|
13
|
+
"workflow_usable": true
|
|
14
|
+
}
|
|
@@ -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,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"events": [
|
|
3
|
+
{
|
|
4
|
+
"action_kind": "tool-call",
|
|
5
|
+
"authority_status": "not-granted",
|
|
6
|
+
"event_id": "event:tool:1",
|
|
7
|
+
"evidence_refs": [],
|
|
8
|
+
"input": {
|
|
9
|
+
"query": "candidate packet"
|
|
10
|
+
},
|
|
11
|
+
"rollback_status": "unknown",
|
|
12
|
+
"source": "agent:demo",
|
|
13
|
+
"tool_name": "example-tool"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"trace_id": "trace:demo"
|
|
17
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"content_treated_as_data": true,
|
|
4
|
+
"executed_action_count": 0,
|
|
5
|
+
"frontier_debt": {
|
|
6
|
+
"debt_id": "trace-frontier-debt",
|
|
7
|
+
"missing_domain_obligations": [
|
|
8
|
+
"domain-authority-obligation",
|
|
9
|
+
"domain-rollback-obligation"
|
|
10
|
+
],
|
|
11
|
+
"missing_oracle_obligations": ["physical-or-oracle-result-obligation"],
|
|
12
|
+
"missing_physical_obligations": ["physical-or-oracle-result-obligation"],
|
|
13
|
+
"residual_preserved": true,
|
|
14
|
+
"settled": false
|
|
15
|
+
},
|
|
16
|
+
"protocol_relative_only": true,
|
|
17
|
+
"proves_physical_truth": false,
|
|
18
|
+
"reasons": ["tool trace content is data, not instruction"],
|
|
19
|
+
"report_id": "trc-trace-adapter",
|
|
20
|
+
"settled": false,
|
|
21
|
+
"trace_normal_form": {
|
|
22
|
+
"action_boundaries": [],
|
|
23
|
+
"content_treated_as_data": true,
|
|
24
|
+
"normal_form_id": "trace:demo",
|
|
25
|
+
"normalized_word": ["tool-call"],
|
|
26
|
+
"settled": false,
|
|
27
|
+
"tool_calls": []
|
|
28
|
+
},
|
|
29
|
+
"typed_trace": {
|
|
30
|
+
"accepted": true,
|
|
31
|
+
"action_boundaries": [],
|
|
32
|
+
"content_treated_as_data": true,
|
|
33
|
+
"frontier_debt": {
|
|
34
|
+
"debt_id": "trace-frontier-debt",
|
|
35
|
+
"missing_domain_obligations": [],
|
|
36
|
+
"missing_oracle_obligations": [],
|
|
37
|
+
"missing_physical_obligations": [],
|
|
38
|
+
"residual_preserved": true,
|
|
39
|
+
"settled": false
|
|
40
|
+
},
|
|
41
|
+
"normal_form": {
|
|
42
|
+
"action_boundaries": [],
|
|
43
|
+
"content_treated_as_data": true,
|
|
44
|
+
"normal_form_id": "trace:demo",
|
|
45
|
+
"normalized_word": ["tool-call"],
|
|
46
|
+
"settled": false,
|
|
47
|
+
"tool_calls": []
|
|
48
|
+
},
|
|
49
|
+
"protocol_relative_only": true,
|
|
50
|
+
"proves_physical_truth": false,
|
|
51
|
+
"reasons": ["typed trace does not prove physical or oracle truth"],
|
|
52
|
+
"settled": false,
|
|
53
|
+
"tolerance_ledger": {
|
|
54
|
+
"ledger_id": "trace-tolerance-ledger",
|
|
55
|
+
"residual_charge": 0.0,
|
|
56
|
+
"settled": false,
|
|
57
|
+
"tolerance_coordinates": {}
|
|
58
|
+
},
|
|
59
|
+
"tool_calls": [],
|
|
60
|
+
"trace_id": "trace:demo",
|
|
61
|
+
"workflow_usable": true
|
|
62
|
+
},
|
|
63
|
+
"workflow_usable": true
|
|
64
|
+
}
|
|
@@ -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,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "Python v0.5.0 Phase Ecology Lab JSON fixtures for TypeScript portability checks.",
|
|
3
|
+
"examples": [
|
|
4
|
+
{
|
|
5
|
+
"file": "phase_lab_event_1.json",
|
|
6
|
+
"schema": "PhaseLabEvent",
|
|
7
|
+
"sha256": "ea0369e2626b0d41dd4cd3495314df8f567e2399b862e3d8cdea4bbbaab7ffc0"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"file": "phase_lab_event_2.json",
|
|
11
|
+
"schema": "PhaseLabEvent",
|
|
12
|
+
"sha256": "2e875d23f802cd2b460ee90ec13612b25dacc9357422b5f9103f90dd5cd5de79"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"file": "effective_graph.example.json",
|
|
16
|
+
"schema": "EffectivePacketGraph",
|
|
17
|
+
"sha256": "0351e3766304324c3ce5fc3f0819e491dc01c22e029c91481a47eeca48c21b8c"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"file": "phase_window_observation.example.json",
|
|
21
|
+
"schema": "PhaseWindowObservation",
|
|
22
|
+
"sha256": "9c9c78874054b3b0372ccfd8af44fae49936cb35870418db5cccb186d32a65b0"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"file": "closure_report.example.json",
|
|
26
|
+
"schema": "AutocatalyticClosureReport",
|
|
27
|
+
"sha256": "18a81c3c291ba1493a1daf4309383bf89f6a3701b48a24d5ceb519e1e4c440fe"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"file": "executable_paths.example.json",
|
|
31
|
+
"schema": "ExecutablePathDensityReport",
|
|
32
|
+
"sha256": "8e674012ddbbc661068de13b9918dff938ea4284b49cfce772e5b1484e07c8cc"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"file": "threshold_status.example.json",
|
|
36
|
+
"schema": "ASIProxyThresholdStatus",
|
|
37
|
+
"sha256": "9b6522ac4efdb97633f769a1ed2091ef076fffe243106695c0a4ba97568eeeea"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"file": "certificate_abstain.example.json",
|
|
41
|
+
"schema": "CollectivePhaseCertificateCandidate",
|
|
42
|
+
"sha256": "dd430f70e72c13349ee2bff57db7042c99fe730a7e7a6a60aeb277a200932d88"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"negative_examples": [],
|
|
46
|
+
"invariants": [
|
|
47
|
+
"accepted and settled remain separate booleans",
|
|
48
|
+
"Phase Ecology Lab observations are protocol-relative only",
|
|
49
|
+
"candidate-only reports and raw packet volume do not increase positive phase metrics",
|
|
50
|
+
"executable paths are detected as inert data and do not grant execution authority",
|
|
51
|
+
"collective certificates preserve residual obligations and do not prove real ASI"
|
|
52
|
+
],
|
|
53
|
+
"manifest_id": "pic-portability-conformance-v050",
|
|
54
|
+
"schema_version": "portability-conformance-1.0"
|
|
55
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": true,
|
|
3
|
+
"candidate_only": false,
|
|
4
|
+
"candidate_only_reasons": [],
|
|
5
|
+
"content_digest": "a0e7926edd1c21e191da43d6de646d47f2f05aa536721ea2cbaf87c07fbe8ae9",
|
|
6
|
+
"event_id": "phase-lab-event:0:a0e7926edd1c",
|
|
7
|
+
"missing_obligations": [],
|
|
8
|
+
"operationally_usable": true,
|
|
9
|
+
"payload": {
|
|
10
|
+
"accepted": true,
|
|
11
|
+
"edges": [
|
|
12
|
+
{
|
|
13
|
+
"accepted": true,
|
|
14
|
+
"edge_id": "edge:self-alpha",
|
|
15
|
+
"evidence_refs": [
|
|
16
|
+
"evidence:alpha"
|
|
17
|
+
],
|
|
18
|
+
"relation_type": "self-support",
|
|
19
|
+
"source_packet_ids": [
|
|
20
|
+
"packet:alpha"
|
|
21
|
+
],
|
|
22
|
+
"target_packet_id": "packet:alpha"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"operationally_usable": true,
|
|
26
|
+
"packet_ref": "packet:alpha",
|
|
27
|
+
"report_id": "phase-lab-runtime-report-1",
|
|
28
|
+
"residual_summary": {},
|
|
29
|
+
"settled": false,
|
|
30
|
+
"workflow_usable": true
|
|
31
|
+
},
|
|
32
|
+
"positive_contribution_allowed": true,
|
|
33
|
+
"reasons": [
|
|
34
|
+
"event content is stored as inert data"
|
|
35
|
+
],
|
|
36
|
+
"residual_summary": {},
|
|
37
|
+
"safety_boundary": [
|
|
38
|
+
"protocol-relative only",
|
|
39
|
+
"does not prove real ASI",
|
|
40
|
+
"does not prove physical or oracle truth",
|
|
41
|
+
"does not execute command text or safe_commands",
|
|
42
|
+
"raw packet volume is diagnostic only"
|
|
43
|
+
],
|
|
44
|
+
"schema_hint": "AgentCheckReport",
|
|
45
|
+
"settled": false,
|
|
46
|
+
"settled_blockers": [],
|
|
47
|
+
"source_kind": "agent-check",
|
|
48
|
+
"source_path": "runtime_report_1.json",
|
|
49
|
+
"window_id": "phase-window:0000",
|
|
50
|
+
"workflow_usable": true
|
|
51
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accepted": false,
|
|
3
|
+
"candidate_only": true,
|
|
4
|
+
"candidate_only_reasons": [
|
|
5
|
+
"external candidate requires finite verifier route"
|
|
6
|
+
],
|
|
7
|
+
"content_digest": "749ba66f574233b51eb2a924e1c5c7314ee4800006cf86a351a7484b778e241d",
|
|
8
|
+
"event_id": "phase-lab-event:1:749ba66f5742",
|
|
9
|
+
"missing_obligations": [],
|
|
10
|
+
"operationally_usable": false,
|
|
11
|
+
"payload": {
|
|
12
|
+
"accepted": false,
|
|
13
|
+
"candidate_only": true,
|
|
14
|
+
"candidate_only_reasons": [
|
|
15
|
+
"external candidate requires finite verifier route"
|
|
16
|
+
],
|
|
17
|
+
"operationally_usable": false,
|
|
18
|
+
"packet_ref": "packet:beta",
|
|
19
|
+
"report_id": "phase-lab-runtime-report-2",
|
|
20
|
+
"residual_summary": {
|
|
21
|
+
"missing_evidence": 1
|
|
22
|
+
},
|
|
23
|
+
"settled": false,
|
|
24
|
+
"settled_blockers": [
|
|
25
|
+
"missing evidence"
|
|
26
|
+
],
|
|
27
|
+
"workflow_usable": true
|
|
28
|
+
},
|
|
29
|
+
"positive_contribution_allowed": false,
|
|
30
|
+
"reasons": [
|
|
31
|
+
"event content is stored as inert data",
|
|
32
|
+
"candidate-only reasons remain visible",
|
|
33
|
+
"settlement blockers remain visible",
|
|
34
|
+
"candidate-only event cannot improve phase metrics"
|
|
35
|
+
],
|
|
36
|
+
"residual_summary": {
|
|
37
|
+
"missing_evidence": 1
|
|
38
|
+
},
|
|
39
|
+
"safety_boundary": [
|
|
40
|
+
"protocol-relative only",
|
|
41
|
+
"does not prove real ASI",
|
|
42
|
+
"does not prove physical or oracle truth",
|
|
43
|
+
"does not execute command text or safe_commands",
|
|
44
|
+
"raw packet volume is diagnostic only"
|
|
45
|
+
],
|
|
46
|
+
"schema_hint": "AgentCheckReport",
|
|
47
|
+
"settled": false,
|
|
48
|
+
"settled_blockers": [
|
|
49
|
+
"missing evidence"
|
|
50
|
+
],
|
|
51
|
+
"source_kind": "agent-check",
|
|
52
|
+
"source_path": "runtime_report_2.json",
|
|
53
|
+
"window_id": "phase-window:0001",
|
|
54
|
+
"workflow_usable": true
|
|
55
|
+
}
|
|
@@ -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
|
+
}
|