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,445 @@
|
|
|
1
|
+
{
|
|
2
|
+
"index_id": "pic-ts-schema-index-v050",
|
|
3
|
+
"canonical_source": "percolation-inversion-compiler==0.5.0",
|
|
4
|
+
"generated_from": "percolation-inversion-compiler==0.5.0",
|
|
5
|
+
"generation_command": "pic schema --all --output-dir <schema-output-dir>",
|
|
6
|
+
"digest_reference": "schema-digest.json",
|
|
7
|
+
"bundle_reference": "bundle.schema.json",
|
|
8
|
+
"package_name": "percolation-inversion-compiler-ts",
|
|
9
|
+
"schema_count": 352,
|
|
10
|
+
"schema_digest": "dfef47b58cb783a487ec7905f253eeeb9bd26c0a0649196a249ce8e2a08a5091",
|
|
11
|
+
"required_v050_schema_names": [
|
|
12
|
+
"ASIProxyThresholdSpec",
|
|
13
|
+
"ASIProxyThresholdStatus",
|
|
14
|
+
"ActionBoundaryRequirement",
|
|
15
|
+
"ActivationGainEstimate",
|
|
16
|
+
"AltEcptLiftReport",
|
|
17
|
+
"AltLiftBlocker",
|
|
18
|
+
"AttentionBudgetLedger",
|
|
19
|
+
"AutocatalyticClosureWitness",
|
|
20
|
+
"BasinReachabilityProxy",
|
|
21
|
+
"BottleneckClassDiagnosis",
|
|
22
|
+
"BottleneckInversionCandidate",
|
|
23
|
+
"BottleneckInversionReport",
|
|
24
|
+
"CapabilityExpressionPath",
|
|
25
|
+
"CapitalToPathContribution",
|
|
26
|
+
"ClosureAbstentionReason",
|
|
27
|
+
"ClosureCertificateCandidate",
|
|
28
|
+
"ClosureDefect",
|
|
29
|
+
"ClosureSupportHyperpath",
|
|
30
|
+
"CollectivePhaseAbstentionReport",
|
|
31
|
+
"CollectivePhaseCertificateCandidate",
|
|
32
|
+
"CrossContextTransferWitness",
|
|
33
|
+
"DiagnosticReserveReport",
|
|
34
|
+
"DownstreamSearchCostDelta",
|
|
35
|
+
"EffectiveGraphResidualSummary",
|
|
36
|
+
"EffectivePacketEdge",
|
|
37
|
+
"EffectivePacketEligibility",
|
|
38
|
+
"EffectivePacketGraph",
|
|
39
|
+
"EffectivePacketGraphBuildReport",
|
|
40
|
+
"EffectivePacketNode",
|
|
41
|
+
"ExecutableClosureWitness",
|
|
42
|
+
"ExecutablePathDensityReport",
|
|
43
|
+
"ExecutionAuthorityStatus",
|
|
44
|
+
"ExecutionAvailableHyperpath",
|
|
45
|
+
"ExecutionPathDefect",
|
|
46
|
+
"ExecutionPathWitness",
|
|
47
|
+
"FalseLiquidityLoad",
|
|
48
|
+
"InversionCertificate",
|
|
49
|
+
"LiquidityToClosureContribution",
|
|
50
|
+
"MinimalEnablingCondition",
|
|
51
|
+
"PacketContributionStatus",
|
|
52
|
+
"PacketQuarantineDecision",
|
|
53
|
+
"PhaseCertificateDefect",
|
|
54
|
+
"PhaseComponentObservation",
|
|
55
|
+
"PhaseLabEvent",
|
|
56
|
+
"PhaseLabExportManifest",
|
|
57
|
+
"PhaseLabIngestReport",
|
|
58
|
+
"PhaseLabStoreManifest",
|
|
59
|
+
"PhaseLabWindowIndex",
|
|
60
|
+
"PhaseThresholdStatus",
|
|
61
|
+
"PhaseWindow",
|
|
62
|
+
"PhaseWindowComparison",
|
|
63
|
+
"PhaseWindowObservation",
|
|
64
|
+
"PostInversionAuditPlan",
|
|
65
|
+
"ProductiveClosureWitness",
|
|
66
|
+
"QueueOccupationReport",
|
|
67
|
+
"QueueRebalancePlan",
|
|
68
|
+
"ReceiverContextSupport",
|
|
69
|
+
"ReceiverLiquidityLift",
|
|
70
|
+
"ReversibleSalienceSovereigntyCertificate",
|
|
71
|
+
"RollbackOrDeactivationPlan",
|
|
72
|
+
"SalienceObstructionDiagnosis",
|
|
73
|
+
"SalienceObstructionLoad",
|
|
74
|
+
"SemanticEdgeEvidence",
|
|
75
|
+
"TraceAdapterReport",
|
|
76
|
+
"TraceFrontierDebt",
|
|
77
|
+
"TraceNormalForm",
|
|
78
|
+
"TraceToleranceLedger",
|
|
79
|
+
"TypedActionBoundary",
|
|
80
|
+
"TypedAgentTrace",
|
|
81
|
+
"TypedToolCallTrace",
|
|
82
|
+
"VerificationQueuePressure",
|
|
83
|
+
"VerificationThroughputWindow",
|
|
84
|
+
"WasteLoad"
|
|
85
|
+
],
|
|
86
|
+
"schema_names": [
|
|
87
|
+
"ALTAccelerationCertificate",
|
|
88
|
+
"ALTAdmissionDecision",
|
|
89
|
+
"ALTCARACertificate",
|
|
90
|
+
"ALTDeprecationRecord",
|
|
91
|
+
"ALTKernelTransitionReport",
|
|
92
|
+
"ALTResurrectionRecord",
|
|
93
|
+
"ASIProxyTargetContract",
|
|
94
|
+
"ASIProxyThresholdSpec",
|
|
95
|
+
"ASIProxyThresholdStatus",
|
|
96
|
+
"AbstractionToken",
|
|
97
|
+
"AccelerationCertificate",
|
|
98
|
+
"AccelerationExperimentSuite",
|
|
99
|
+
"AcceptedPacketPath",
|
|
100
|
+
"ActionBoundaryRequirement",
|
|
101
|
+
"ActionCommit",
|
|
102
|
+
"ActionGrammar",
|
|
103
|
+
"ActionabilityVector",
|
|
104
|
+
"ActivationGainEstimate",
|
|
105
|
+
"ActivationThresholdCertificate",
|
|
106
|
+
"AdapterRouteSpec",
|
|
107
|
+
"AdoptionFirstRunCommand",
|
|
108
|
+
"AdoptionReviewChecklist",
|
|
109
|
+
"AdoptionSafetyBoundary",
|
|
110
|
+
"AgentAutonomyAuditReport",
|
|
111
|
+
"AgentCheckReport",
|
|
112
|
+
"AgentCommandInvocation",
|
|
113
|
+
"AgentCommunicationGuide",
|
|
114
|
+
"AgentCommunicationPolicy",
|
|
115
|
+
"AgentCommunicationStep",
|
|
116
|
+
"AgentConnectorSpec",
|
|
117
|
+
"AgentFeatureReadinessReport",
|
|
118
|
+
"AgentIdentityAttestation",
|
|
119
|
+
"AgentIdentityCheckReport",
|
|
120
|
+
"AgentInboxRecord",
|
|
121
|
+
"AgentIntakeReport",
|
|
122
|
+
"AgentIntakeRequest",
|
|
123
|
+
"AgentMessageContractReport",
|
|
124
|
+
"AgentMessageDeliveryReport",
|
|
125
|
+
"AgentMessageEnvelope",
|
|
126
|
+
"AgentMessageNonceLedger",
|
|
127
|
+
"AgentMessageVerificationContext",
|
|
128
|
+
"AgentNetworkReadinessReport",
|
|
129
|
+
"AgentNextActionReport",
|
|
130
|
+
"AgentPacketExchangeReport",
|
|
131
|
+
"AgentPeerRecord",
|
|
132
|
+
"AgentPolicyIdentity",
|
|
133
|
+
"AgentPopulationState",
|
|
134
|
+
"AgentRelayReadinessReport",
|
|
135
|
+
"AgentRunbookReport",
|
|
136
|
+
"AgentRuntimeConfig",
|
|
137
|
+
"AgentTask",
|
|
138
|
+
"AgentToOperatorRequest",
|
|
139
|
+
"AgentWorkflowGuide",
|
|
140
|
+
"AgentWorkflowStep",
|
|
141
|
+
"AlgebraLawCertificate",
|
|
142
|
+
"AltEcptLiftReport",
|
|
143
|
+
"AltLiftBlocker",
|
|
144
|
+
"AttentionBudgetLedger",
|
|
145
|
+
"AttestationRecord",
|
|
146
|
+
"AutocatalyticClosureReport",
|
|
147
|
+
"AutocatalyticClosureWitness",
|
|
148
|
+
"BaselineRefreshCertificate",
|
|
149
|
+
"BasinReachabilityProxy",
|
|
150
|
+
"BasinReachabilityReport",
|
|
151
|
+
"BottleneckCandidate",
|
|
152
|
+
"BottleneckClassDiagnosis",
|
|
153
|
+
"BottleneckIntervention",
|
|
154
|
+
"BottleneckInversionCandidate",
|
|
155
|
+
"BottleneckInversionPlan",
|
|
156
|
+
"BottleneckInversionReport",
|
|
157
|
+
"BottleneckWitnessReport",
|
|
158
|
+
"BoundaryGeneratorRecord",
|
|
159
|
+
"BoundaryScriptRecord",
|
|
160
|
+
"BudgetedToleranceScheduler",
|
|
161
|
+
"CalibrationCertificate",
|
|
162
|
+
"CanonicalImplementationReadinessReport",
|
|
163
|
+
"CanonicalManifest",
|
|
164
|
+
"CanonicalManifestRecord",
|
|
165
|
+
"CanonicalTheorySnapshotSummary",
|
|
166
|
+
"CapabilityBasinContract",
|
|
167
|
+
"CapabilityExpressionPath",
|
|
168
|
+
"CapabilityPacketCandidate",
|
|
169
|
+
"CapabilityPacketRegistry",
|
|
170
|
+
"CapabilityStateVector",
|
|
171
|
+
"CapitalToPathContribution",
|
|
172
|
+
"CascadeResidualPotential",
|
|
173
|
+
"CertificateCompilerRecord",
|
|
174
|
+
"CertificateFamily",
|
|
175
|
+
"CertificateRoute",
|
|
176
|
+
"CertifiedAbstractionCapital",
|
|
177
|
+
"CheckResult",
|
|
178
|
+
"CheckerContext",
|
|
179
|
+
"ClosedLoopAgentIteration",
|
|
180
|
+
"ClosureAbstentionReason",
|
|
181
|
+
"ClosureCertificateCandidate",
|
|
182
|
+
"ClosureDefect",
|
|
183
|
+
"ClosureSupportHyperpath",
|
|
184
|
+
"CollectivePhaseAbstentionReport",
|
|
185
|
+
"CollectivePhaseCertificate",
|
|
186
|
+
"CollectivePhaseCertificateCandidate",
|
|
187
|
+
"CommercialReadinessSummary",
|
|
188
|
+
"ConfidenceLedger",
|
|
189
|
+
"ContentAddressedEvidenceRef",
|
|
190
|
+
"ControlledTransition",
|
|
191
|
+
"CrossContextTransferWitness",
|
|
192
|
+
"CryptographicAgentIdentity",
|
|
193
|
+
"DKWCertificate",
|
|
194
|
+
"DiagnosticReservePolicy",
|
|
195
|
+
"DiagnosticReserveReport",
|
|
196
|
+
"DischargeRouteBinding",
|
|
197
|
+
"DomainTypedSemiring",
|
|
198
|
+
"DominanceWitness",
|
|
199
|
+
"DownstreamSearchCostDelta",
|
|
200
|
+
"EProcessCertificate",
|
|
201
|
+
"EcologyAutocatalyticClosureWitness",
|
|
202
|
+
"EdgeRelationVerificationReport",
|
|
203
|
+
"EdgeRelationVerifierSpec",
|
|
204
|
+
"EdgeWitness",
|
|
205
|
+
"EdgeWitnessCertificate",
|
|
206
|
+
"EffectiveGraphResidualSummary",
|
|
207
|
+
"EffectivePacketEdge",
|
|
208
|
+
"EffectivePacketEligibility",
|
|
209
|
+
"EffectivePacketGraph",
|
|
210
|
+
"EffectivePacketGraphBuildReport",
|
|
211
|
+
"EffectivePacketNode",
|
|
212
|
+
"EvidenceArtifact",
|
|
213
|
+
"EvidenceEnvelopeStoreRecord",
|
|
214
|
+
"EvidencePolicy",
|
|
215
|
+
"EvidenceResolutionBatch",
|
|
216
|
+
"EvidenceVerificationProfile",
|
|
217
|
+
"ExecutableALTCertificatePacket",
|
|
218
|
+
"ExecutableClosureWitness",
|
|
219
|
+
"ExecutablePathDensityReport",
|
|
220
|
+
"ExecutableTraceNormalForm",
|
|
221
|
+
"ExecutionAuthorityStatus",
|
|
222
|
+
"ExecutionAvailableHyperpath",
|
|
223
|
+
"ExecutionAvailablePathCertificate",
|
|
224
|
+
"ExecutionPathDefect",
|
|
225
|
+
"ExecutionPathWitness",
|
|
226
|
+
"ExternalCandidateClassification",
|
|
227
|
+
"ExternalObligationCatalog",
|
|
228
|
+
"ExternalVerifierHook",
|
|
229
|
+
"FalseLiquidityLoad",
|
|
230
|
+
"FiniteOrder",
|
|
231
|
+
"FinitePhaseControlCertificate",
|
|
232
|
+
"FiniteTraceLaw",
|
|
233
|
+
"FixedPopulationLedger",
|
|
234
|
+
"FormationCostLedger",
|
|
235
|
+
"FoundryControlDashboard",
|
|
236
|
+
"FoundryState",
|
|
237
|
+
"FrontierDebtReport",
|
|
238
|
+
"FunctorLawCertificate",
|
|
239
|
+
"FusedGeometricComparisonCertificate",
|
|
240
|
+
"FutureFreedomVector",
|
|
241
|
+
"GeneralIntakePolicy",
|
|
242
|
+
"GeneralIntakePolicyDecision",
|
|
243
|
+
"GeneralIntakeProfile",
|
|
244
|
+
"GeneralIntakeReport",
|
|
245
|
+
"GeneralIntakeRuntimeBridgeReport",
|
|
246
|
+
"GeneralIntakeSource",
|
|
247
|
+
"GoodTuringCertificate",
|
|
248
|
+
"HazardEnvelopeCertificate",
|
|
249
|
+
"HiddenCapabilityInjectionReport",
|
|
250
|
+
"IdentityContributionStatus",
|
|
251
|
+
"IdentityTrustProfile",
|
|
252
|
+
"ImplementationMaturity",
|
|
253
|
+
"IndependenceCertificate",
|
|
254
|
+
"InnerViabilityKernel",
|
|
255
|
+
"IntakeProvenanceRecord",
|
|
256
|
+
"InterventionCandidate",
|
|
257
|
+
"InversionCertificate",
|
|
258
|
+
"Judgment",
|
|
259
|
+
"LatticeWitness",
|
|
260
|
+
"LedgerCoordinate",
|
|
261
|
+
"LifecycleCostBounds",
|
|
262
|
+
"LiquidityCertificate",
|
|
263
|
+
"LiquidityToClosureContribution",
|
|
264
|
+
"MartingaleBlockResidual",
|
|
265
|
+
"MartingaleDeficiencyCertificate",
|
|
266
|
+
"MechanismCubeCertificate",
|
|
267
|
+
"MinimalEnablingCondition",
|
|
268
|
+
"MissionValidityCertificate",
|
|
269
|
+
"MonoidRecord",
|
|
270
|
+
"MonotoneMap",
|
|
271
|
+
"NegativeLiquidityCertificate",
|
|
272
|
+
"NonPromotionPolicy",
|
|
273
|
+
"ObligationRule",
|
|
274
|
+
"ObligationSet",
|
|
275
|
+
"ObligationTrace",
|
|
276
|
+
"ObservationWindow",
|
|
277
|
+
"ObservedTraceProjection",
|
|
278
|
+
"OccupationLedger",
|
|
279
|
+
"OperationalCheck",
|
|
280
|
+
"OperationalReadinessReport",
|
|
281
|
+
"OperatorAdoptionPacket",
|
|
282
|
+
"OpportunityMeasureContract",
|
|
283
|
+
"OrderedPotentialCone",
|
|
284
|
+
"PacketCapitalLineage",
|
|
285
|
+
"PacketContributionStatus",
|
|
286
|
+
"PacketExchangeEnvelope",
|
|
287
|
+
"PacketImportInspectionReport",
|
|
288
|
+
"PacketIngestionReport",
|
|
289
|
+
"PacketLineageDigest",
|
|
290
|
+
"PacketMergeReport",
|
|
291
|
+
"PacketPromotionPolicy",
|
|
292
|
+
"PacketPromotionReport",
|
|
293
|
+
"PacketQuarantineDecision",
|
|
294
|
+
"PacketRejection",
|
|
295
|
+
"PhaseAccelerationBenchmarkReport",
|
|
296
|
+
"PhaseAccelerationPlan",
|
|
297
|
+
"PhaseAccelerationRequest",
|
|
298
|
+
"PhaseAccelerationScore",
|
|
299
|
+
"PhaseBenchmarkCaseResult",
|
|
300
|
+
"PhaseBenchmarkSuiteReport",
|
|
301
|
+
"PhaseBenchmarkTask",
|
|
302
|
+
"PhaseCertificateDefect",
|
|
303
|
+
"PhaseComponentGap",
|
|
304
|
+
"PhaseComponentObservation",
|
|
305
|
+
"PhaseControlAction",
|
|
306
|
+
"PhaseControlAuditSummary",
|
|
307
|
+
"PhaseControlEnvelope",
|
|
308
|
+
"PhaseControlObjective",
|
|
309
|
+
"PhaseControlPlan",
|
|
310
|
+
"PhaseControlRunReport",
|
|
311
|
+
"PhaseControlState",
|
|
312
|
+
"PhaseDashboardReport",
|
|
313
|
+
"PhaseGapVector",
|
|
314
|
+
"PhaseLabEvent",
|
|
315
|
+
"PhaseLabExportManifest",
|
|
316
|
+
"PhaseLabIngestReport",
|
|
317
|
+
"PhaseLabStoreManifest",
|
|
318
|
+
"PhaseLabWindowIndex",
|
|
319
|
+
"PhaseObservationReport",
|
|
320
|
+
"PhaseThresholdStatus",
|
|
321
|
+
"PhaseTrajectoryReport",
|
|
322
|
+
"PhaseWindow",
|
|
323
|
+
"PhaseWindowComparison",
|
|
324
|
+
"PhaseWindowObservation",
|
|
325
|
+
"PopulationRuntimeStepReport",
|
|
326
|
+
"PortabilityConformanceReport",
|
|
327
|
+
"PortabilitySchemaBundle",
|
|
328
|
+
"PostInversionAuditPlan",
|
|
329
|
+
"ProblemSolvingTrace",
|
|
330
|
+
"ProcessGrammarRecord",
|
|
331
|
+
"ProductOrder",
|
|
332
|
+
"ProductionReadinessProfile",
|
|
333
|
+
"ProductiveClosureWitness",
|
|
334
|
+
"ProjectionAudit",
|
|
335
|
+
"ProofObligation",
|
|
336
|
+
"ProtocolFrameDigest",
|
|
337
|
+
"ProtocolFunctorCertificate",
|
|
338
|
+
"ProtocolObject",
|
|
339
|
+
"ProtocolRelativeBenchmarkMetric",
|
|
340
|
+
"ProvenanceManifest",
|
|
341
|
+
"ProvenanceManifestEntry",
|
|
342
|
+
"PsiDashboard",
|
|
343
|
+
"PullbackGluingWitness",
|
|
344
|
+
"QuarantineLedger",
|
|
345
|
+
"QueueOccupationReport",
|
|
346
|
+
"QueueRebalancePlan",
|
|
347
|
+
"ReachableMassRecursionCertificate",
|
|
348
|
+
"ReceiverContextSupport",
|
|
349
|
+
"ReceiverLiquidityLift",
|
|
350
|
+
"ReconstructionResidual",
|
|
351
|
+
"RefreshRule",
|
|
352
|
+
"Registry",
|
|
353
|
+
"ReleaseArtifactManifest",
|
|
354
|
+
"ReproductionMatrixCertificate",
|
|
355
|
+
"ResidualCarryForwardReport",
|
|
356
|
+
"ResourceCalendarRecord",
|
|
357
|
+
"ResourceEnvelope",
|
|
358
|
+
"ResourceMatchedBaselineConfig",
|
|
359
|
+
"ReversibleSalienceSovereigntyCertificate",
|
|
360
|
+
"RiskBudgetLedger",
|
|
361
|
+
"RobotsDecision",
|
|
362
|
+
"RollbackOrDeactivationPlan",
|
|
363
|
+
"RootFinalityCertificate",
|
|
364
|
+
"RouteExecutionBatch",
|
|
365
|
+
"RouteExecutionRequest",
|
|
366
|
+
"RuntimeActionResult",
|
|
367
|
+
"RuntimeComparisonReport",
|
|
368
|
+
"RuntimeEvent",
|
|
369
|
+
"RuntimeEventLog",
|
|
370
|
+
"RuntimeExecutionReport",
|
|
371
|
+
"RuntimeExecutorPolicy",
|
|
372
|
+
"RuntimeHealthReport",
|
|
373
|
+
"RuntimeIdentityContext",
|
|
374
|
+
"RuntimeRunReport",
|
|
375
|
+
"RuntimeServiceSettings",
|
|
376
|
+
"RuntimeState",
|
|
377
|
+
"RuntimeStepInput",
|
|
378
|
+
"RuntimeStepReport",
|
|
379
|
+
"RuntimeStoreRecord",
|
|
380
|
+
"RuntimeStoreSnapshot",
|
|
381
|
+
"SBOMManifest",
|
|
382
|
+
"SQOTTheorySnapshot",
|
|
383
|
+
"SafePhaseAction",
|
|
384
|
+
"SalienceObstructionDiagnosis",
|
|
385
|
+
"SalienceObstructionLoad",
|
|
386
|
+
"SalienceQueueRecord",
|
|
387
|
+
"SalienceScheduleReport",
|
|
388
|
+
"SalienceSchedulingDecision",
|
|
389
|
+
"SchemaBundleDigest",
|
|
390
|
+
"ScriptGroundMetricCertificate",
|
|
391
|
+
"SelectiveCUPCertificate",
|
|
392
|
+
"SemanticEdgeEvidence",
|
|
393
|
+
"SettlementReturnRAFCertificate",
|
|
394
|
+
"SinkhornCertificate",
|
|
395
|
+
"SnapshotAttribution",
|
|
396
|
+
"SnapshotCatalog",
|
|
397
|
+
"SplitCertificate",
|
|
398
|
+
"StatusAlgebraRecord",
|
|
399
|
+
"StoppedEvidenceSheafCertificate",
|
|
400
|
+
"StrictTexParseReport",
|
|
401
|
+
"SybilResistanceLedger",
|
|
402
|
+
"SybilResistancePolicy",
|
|
403
|
+
"TRCCompileResult",
|
|
404
|
+
"TRCStateRecord",
|
|
405
|
+
"TelemetryCostCertificate",
|
|
406
|
+
"TexGrammarDiagnostic",
|
|
407
|
+
"TheoryAuditReport",
|
|
408
|
+
"TheoryAuditSuiteReport",
|
|
409
|
+
"TheoryFidelityReport",
|
|
410
|
+
"TheoryImplementationRecord",
|
|
411
|
+
"TheorySnapshot",
|
|
412
|
+
"TheorySnapshotItem",
|
|
413
|
+
"TokenLineage",
|
|
414
|
+
"ToleranceAllocationCertificate",
|
|
415
|
+
"TraceAdapterReport",
|
|
416
|
+
"TraceFrontierDebt",
|
|
417
|
+
"TraceNormalForm",
|
|
418
|
+
"TraceNormalizationCertificate",
|
|
419
|
+
"TraceSufficiencyCertificate",
|
|
420
|
+
"TraceToleranceLedger",
|
|
421
|
+
"TransportCertificate",
|
|
422
|
+
"TypedActionBoundary",
|
|
423
|
+
"TypedAgentTrace",
|
|
424
|
+
"TypedToolCallTrace",
|
|
425
|
+
"TypedTraceTransducerRecord",
|
|
426
|
+
"ValueBridgeReport",
|
|
427
|
+
"VectorCompatibleFamily",
|
|
428
|
+
"VerificationQueuePressure",
|
|
429
|
+
"VerificationThroughputReport",
|
|
430
|
+
"VerificationThroughputWindow",
|
|
431
|
+
"VerifiedCapabilityPacket",
|
|
432
|
+
"VerifierEvidenceEnvelope",
|
|
433
|
+
"VerifierResolution",
|
|
434
|
+
"WasteLoad",
|
|
435
|
+
"WebDiscoveryReport",
|
|
436
|
+
"WebFetchPolicy",
|
|
437
|
+
"WebFetchReport",
|
|
438
|
+
"bundle"
|
|
439
|
+
],
|
|
440
|
+
"settled": false,
|
|
441
|
+
"notes": [
|
|
442
|
+
"Python v0.5.0 remains the canonical implementation",
|
|
443
|
+
"schemas describe public JSON boundaries for npm and JavaScript agent runtimes"
|
|
444
|
+
]
|
|
445
|
+
}
|