core-runtime-engine 11.5.1__tar.gz → 11.6.0__tar.gz
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.
- core_runtime_engine-11.6.0/LICENSE +21 -0
- core_runtime_engine-11.6.0/PKG-INFO +39 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/README.md +11 -10
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/__version__.py +2 -2
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/main.py +7 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/audit_event.py +5 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/contract_executability.py +3 -7
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/dsk_v3.py +23 -7
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/package_data_manifest.v1.json +4 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/dsk.v3.json +1 -1
- core_runtime_engine-11.6.0/core_runtime/data/schemas/core/frozen_release_manifest.v9.json +114 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/bump_version.py +58 -6
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/file_inventory.py +17 -6
- core_runtime_engine-11.6.0/core_runtime_engine.egg-info/PKG-INFO +39 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime_engine.egg-info/SOURCES.txt +6 -0
- core_runtime_engine-11.6.0/docs/CORE_RELEASE_README.md +22 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/pyproject.toml +3 -2
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_audit_event_schema.py +13 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_causal_entropy_contracts.py +9 -4
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_classification_candidate_validator.py +44 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_core_generic_contracts.py +19 -13
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_dsk_v3.py +14 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_executable_contracts.py +7 -0
- core_runtime_engine-11.6.0/tests/test_expert_router_scripts.py +34 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest_v11_5_1.py +3 -2
- core_runtime_engine-11.6.0/tests/test_frozen_release_manifest_v11_6.py +23 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_private_domain_integration.py +12 -0
- core_runtime_engine-11.6.0/tests/test_pypi_preflight.py +21 -0
- core_runtime_engine-11.6.0/tests/test_replay_certification.py +31 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_bump_version.py +49 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_verify_release_script.py +7 -0
- core_runtime_engine-11.5.1/PKG-INFO +0 -35
- core_runtime_engine-11.5.1/core_runtime_engine.egg-info/PKG-INFO +0 -35
- core_runtime_engine-11.5.1/docs/CORE_RELEASE_README.md +0 -20
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/__init__.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/__init__.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/__main__.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/bump_version.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/contract_preflight.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/create_domain.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/doctor.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/inventory.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/lint.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/release_check.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/repair_artifact_paths.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/sync_template.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/cli/validate.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/__init__.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/audit_trail_index.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/canonicalization.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/contract_evaluator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/contract_loader.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/contract_probes.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/contract_program.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/contract_program_registry.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/contract_program_v2.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/explainability.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/numeric_normalization.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/rule_anchor.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/schema_fingerprint.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/core/sensor_evidence.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/contracts/CoreAnchor.sol +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/contracts/CoreRuleAnchor.abi.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/contracts/CoreRuleAnchor.bin +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/contracts/CoreRuleAnchor.build.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/contracts/CoreRuleAnchor.runtime.bin +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/contracts/CoreRuleAnchor.sol +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/causal_trace.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/context_gate.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/context_threshold.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/contract_program.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/contract_program.v2.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/control_decision.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/effect_result.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/entropy_signal.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/execution_receipt.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v2.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v3.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v4.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v5.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v6.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v7.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_release_manifest.v8.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/frozen_rule_set.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/memory_artifact.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/memory_generation_result.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/operational_learning_event.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/pattern_candidate.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/physical_safety_assurance_case.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/policy_lifecycle.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/retention_manifest.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/reversibility_policy.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/rule_anchor_batch.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/rule_anchor_chain_evidence.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/rule_approval.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/rule_approval_request.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/state_transition.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/task_closeout.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/template_promotion_candidate.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/unsigned_rule_anchor_deployment.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/unsigned_rule_anchor_transaction.v1.json +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/__init__.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/contract_preflight.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/create_domain.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/diagnostics.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/doctor.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/json_checks.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/release_check.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/repair_artifact_paths.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/report_writer.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/repository_inventory.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/safety_checks.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/sync_template.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/validation.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/version_inventory.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime_engine.egg-info/dependency_links.txt +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime_engine.egg-info/entry_points.txt +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime_engine.egg-info/requires.txt +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime_engine.egg-info/top_level.txt +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/setup.cfg +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_agent_decision_trace_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_agent_plan_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_agent_session_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_anchoring_event_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_anchoring_submission_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_audio_envelope_wav_example.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_basic_practical_examples.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_bounded_reference_index.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_business_event_derivation.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_certify_sensor_fixture.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_chain_adapter_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_contract_program_registry.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_contract_program_runtime.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_contract_program_v2.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_control_plane_contracts.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_core_contract_examples.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_core_memory_artifact_contract.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_core_rule_anchor_contract.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_core_scheduler_behavior.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_domain_privacy_examples.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_downstream_bridge_adapter_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_execution_profile_fixtures.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_expert_conflict_pre_resolution_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_explainability_determinism.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_external_llm_sync_bundle.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest_v11_2.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest_v11_2_frozen.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest_v11_3.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest_v11_3_frozen.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest_v11_4.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_release_manifest_v11_5.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_frozen_rule_set_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_human_approved_execution_gate_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_image_brightness_motion_example.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_minimal_sensor_adapter_example.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_operational_learning_contracts.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_parametric_template_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_physical_safety_assurance.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_rule_anchor_batch.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_rule_anchor_deployment.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_rule_anchor_transaction.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_rule_approval_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_run_all_examples.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_schema_fingerprint.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_sensor_evidence_public_contract.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_state_watcher_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tool_invocation_validator.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_ci_contract.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_contract_preflight.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_create_domain.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_doctor.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_lint.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_release_check.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_repair_artifact_paths.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_report_writer.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_repository_inventory.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_sync_template.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_validation.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_tooling_version_inventory.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_validate_execution_profile_script.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_validate_sensor_manifest_negative_cases.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_validate_sensor_manifest_script.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_wifi_csi_synthetic_bridge_example.py +0 -0
- {core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/tests/test_workflow_examples.py +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 CORE Project
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: core-runtime-engine
|
|
3
|
+
Version: 11.6.0
|
|
4
|
+
Summary: CORE - deterministic contract, schema and validation engine
|
|
5
|
+
Author: CORE Project
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: jsonschema>=4.0
|
|
11
|
+
Provides-Extra: anchoring
|
|
12
|
+
Requires-Dist: web3>=6.0; extra == "anchoring"
|
|
13
|
+
Provides-Extra: dev
|
|
14
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
15
|
+
Requires-Dist: packaging>=23.0; extra == "dev"
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# CORE Release Overview
|
|
19
|
+
|
|
20
|
+
CORE: v11.6.0 — Contract-Oriented Reproducible Evaluation, deterministic
|
|
21
|
+
contract, schema and validation engine.
|
|
22
|
+
|
|
23
|
+
Release status: stabilization candidate. The historical `v11.5.1` manifest
|
|
24
|
+
remains byte-preserved, while this line owns an independent manifest and
|
|
25
|
+
release-gate path. Do not infer GitHub release assets or package publication
|
|
26
|
+
until the dedicated publication workflow completes.
|
|
27
|
+
|
|
28
|
+
The public contract `core.dsk.v3` is the **Domain Scale Kernel v3** surface.
|
|
29
|
+
The technical compatibility identifier remains unchanged. The surface contains
|
|
30
|
+
typed scale crossings, rational conversion, declared loss, evidence references, policy gates and a
|
|
31
|
+
non-amplifying authority ceiling. This describes the source surface only and
|
|
32
|
+
does not promote the candidate to a formal public release.
|
|
33
|
+
|
|
34
|
+
See [../README.md](../README.md) for what CORE is and how it's consumed.
|
|
35
|
+
See [releases/v11.6.0.md](releases/v11.6.0.md) for the current stabilization
|
|
36
|
+
scope, [releases/v11.5.1.md](releases/v11.5.1.md) for the prior public line,
|
|
37
|
+
and [releases/v11.3.0.md](releases/v11.3.0.md) for the earlier release
|
|
38
|
+
and [CORE_REBUILD_FROM_ZERO.md](CORE_REBUILD_FROM_ZERO.md)
|
|
39
|
+
for the rebuild rationale.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# CORE v11.
|
|
1
|
+
# CORE v11.6.0 — Contract-Oriented Reproducible Evaluation
|
|
2
2
|
|
|
3
3
|
CORE validates artifacts against public contracts: JSON schemas, fingerprints,
|
|
4
4
|
manifests and bounded evidence windows. It never executes domain business
|
|
@@ -13,18 +13,19 @@ fiscal, or economic truth.
|
|
|
13
13
|
|
|
14
14
|
## Release status
|
|
15
15
|
|
|
16
|
-
The current
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
The current stabilization line is CORE `v11.6.0`. The `v11.5.1` tag and
|
|
17
|
+
manifest remain historical public evidence and are preserved unchanged.
|
|
18
|
+
GitHub and package publication require the v11.6.0 release gate and the
|
|
19
|
+
separate publication workflow.
|
|
20
20
|
|
|
21
21
|
## DSK v3
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
scale crossings with rational conversion,
|
|
26
|
-
policy gates and a non-amplifying authority
|
|
27
|
-
contract surface; it does not grant
|
|
23
|
+
DSK means **Domain Scale Kernel**. The technical compatibility identifier
|
|
24
|
+
remains `core.dsk.v3`; v11.6.0 does not change that identifier.
|
|
25
|
+
The contract validates typed scale crossings with rational conversion,
|
|
26
|
+
declared loss, evidence references, policy gates and a non-amplifying authority
|
|
27
|
+
ceiling. DSK v3 remains a public contract surface; it does not grant
|
|
28
|
+
publication authority by itself.
|
|
28
29
|
|
|
29
30
|
## Try it
|
|
30
31
|
|
|
@@ -8,10 +8,10 @@ DO NOT EDIT THIS FILE MANUALLY.
|
|
|
8
8
|
Use scripts/bump_version.py to update versions consistently.
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
|
-
__version__ = "11.
|
|
11
|
+
__version__ = "11.6.0"
|
|
12
12
|
|
|
13
13
|
# Component versions
|
|
14
|
-
CORE_VERSION = "11.
|
|
14
|
+
CORE_VERSION = "11.6.0"
|
|
15
15
|
|
|
16
16
|
# Parsed version tuple for programmatic comparison
|
|
17
17
|
VERSION_INFO = tuple(int(x) for x in __version__.split("."))
|
|
@@ -5,6 +5,7 @@ from __future__ import annotations
|
|
|
5
5
|
import argparse
|
|
6
6
|
from pathlib import Path
|
|
7
7
|
|
|
8
|
+
from core_runtime.__version__ import __version__
|
|
8
9
|
from core_runtime.cli.bump_version import cmd_bump_version
|
|
9
10
|
from core_runtime.cli.create_domain import cmd_create_domain
|
|
10
11
|
from core_runtime.cli.contract_preflight import cmd_contract_preflight
|
|
@@ -29,6 +30,12 @@ def build_parser() -> argparse.ArgumentParser:
|
|
|
29
30
|
prog="core-runtime",
|
|
30
31
|
description="CORE Runtime tooling commands",
|
|
31
32
|
)
|
|
33
|
+
parser.add_argument(
|
|
34
|
+
"--version",
|
|
35
|
+
action="version",
|
|
36
|
+
version=__version__,
|
|
37
|
+
help="Show the installed CORE Runtime version",
|
|
38
|
+
)
|
|
32
39
|
subparsers = parser.add_subparsers(dest="command", metavar="COMMAND")
|
|
33
40
|
|
|
34
41
|
# lint subcommand
|
|
@@ -186,6 +186,11 @@ class AuditEvent:
|
|
|
186
186
|
schema_version: str = AUDIT_SCHEMA_VERSION
|
|
187
187
|
|
|
188
188
|
def __post_init__(self) -> None:
|
|
189
|
+
if self.schema_version != AUDIT_SCHEMA_VERSION:
|
|
190
|
+
raise ValueError(
|
|
191
|
+
f"schema_version must be {AUDIT_SCHEMA_VERSION!r}; "
|
|
192
|
+
f"got {self.schema_version!r}"
|
|
193
|
+
)
|
|
189
194
|
if not isinstance(self.logical_tick, int):
|
|
190
195
|
raise TypeError(f"Expected int logical_tick, got {type(self.logical_tick).__name__}")
|
|
191
196
|
if self.logical_tick < 0:
|
|
@@ -53,13 +53,9 @@ STANDALONE_EXECUTABLE_CONTRACTS: dict[str, tuple[str, str]] = {
|
|
|
53
53
|
"scripts.validate_frozen_release_manifest_v11_5_1",
|
|
54
54
|
"validate_v11_5_1_release_manifest",
|
|
55
55
|
),
|
|
56
|
-
"core.frozen_release_manifest.
|
|
57
|
-
"scripts.
|
|
58
|
-
"
|
|
59
|
-
),
|
|
60
|
-
"core.dsk.v3": (
|
|
61
|
-
"core_runtime.core.dsk_v3",
|
|
62
|
-
"evaluate_dsk_v3",
|
|
56
|
+
"core.frozen_release_manifest.v9": (
|
|
57
|
+
"scripts.validate_frozen_release_manifest_v11_6",
|
|
58
|
+
"validate_v11_6_release_manifest",
|
|
63
59
|
),
|
|
64
60
|
"core.dsk.v3": (
|
|
65
61
|
"core_runtime.core.dsk_v3",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"""
|
|
1
|
+
"""Domain Scale Kernel v3 evaluator.
|
|
2
2
|
|
|
3
3
|
The kernel validates one typed scale crossing. It never calls a provider,
|
|
4
4
|
consults a domain or increases the authority declared by the input.
|
|
@@ -31,7 +31,10 @@ def _error(code: str, message: str, field: str | None = None) -> dict[str, str]:
|
|
|
31
31
|
def _decimal(value: Any) -> Decimal:
|
|
32
32
|
if isinstance(value, bool):
|
|
33
33
|
raise InvalidOperation
|
|
34
|
-
|
|
34
|
+
decimal = Decimal(str(value))
|
|
35
|
+
if not decimal.is_finite():
|
|
36
|
+
raise InvalidOperation
|
|
37
|
+
return decimal
|
|
35
38
|
|
|
36
39
|
|
|
37
40
|
def _decimal_text(value: Decimal) -> str:
|
|
@@ -93,22 +96,35 @@ def evaluate_dsk_v3(payload: dict[str, Any]) -> dict[str, Any]:
|
|
|
93
96
|
|
|
94
97
|
try:
|
|
95
98
|
value = _decimal(source["value"])
|
|
96
|
-
|
|
99
|
+
numerator = _decimal(conversion["numerator"])
|
|
100
|
+
denominator = _decimal(conversion["denominator"])
|
|
101
|
+
converted = value * numerator / denominator
|
|
97
102
|
except (InvalidOperation, ZeroDivisionError):
|
|
98
103
|
return _envelope(payload, "invalid", [_error("numeric_value_invalid", "Numeric values must be finite and deterministic.", "crossing.source.value")])
|
|
99
104
|
|
|
100
105
|
policies = payload.get("policies", {})
|
|
101
106
|
discrete = policies.get("discrete_multiple")
|
|
102
|
-
if discrete is not None
|
|
103
|
-
|
|
107
|
+
if discrete is not None:
|
|
108
|
+
try:
|
|
109
|
+
multiple = _decimal(discrete["multiple"])
|
|
110
|
+
discrete_violation = converted % multiple != 0
|
|
111
|
+
except (InvalidOperation, ZeroDivisionError):
|
|
112
|
+
return _envelope(payload, "invalid", [_error("numeric_value_invalid", "Numeric values must be finite and deterministic.", "policies.discrete_multiple.multiple")])
|
|
113
|
+
if discrete_violation:
|
|
114
|
+
errors.append(_error("discrete_multiple_violation", "Converted value is not an allowed discrete multiple.", "policies.discrete_multiple"))
|
|
104
115
|
|
|
105
116
|
resolution = policies.get("resolution")
|
|
106
117
|
if resolution is not None and _decimal_places(converted) > resolution["max_decimal_places"]:
|
|
107
118
|
errors.append(_error("resolution_violation", "Converted value exceeds the declared resolution.", "policies.resolution"))
|
|
108
119
|
|
|
109
120
|
threshold = policies.get("threshold")
|
|
110
|
-
if threshold is not None
|
|
111
|
-
|
|
121
|
+
if threshold is not None:
|
|
122
|
+
try:
|
|
123
|
+
minimum_value = _decimal(threshold["minimum_value"])
|
|
124
|
+
except InvalidOperation:
|
|
125
|
+
return _envelope(payload, "invalid", [_error("numeric_value_invalid", "Numeric values must be finite and deterministic.", "policies.threshold.minimum_value")])
|
|
126
|
+
if converted < minimum_value:
|
|
127
|
+
errors.append(_error("threshold_ineligible", "Threshold eligibility was not met; no authority is created.", "policies.threshold"))
|
|
112
128
|
|
|
113
129
|
if errors:
|
|
114
130
|
return _envelope(payload, "blocked", errors, authority_ceiling=ceiling)
|
|
@@ -96,6 +96,10 @@
|
|
|
96
96
|
"path": "schemas/core/frozen_release_manifest.v8.json",
|
|
97
97
|
"sha256": "37ab6ad858b4641d8e5d20dbe7d4045252a2e355b6715bdee7cf93e7f799a19a"
|
|
98
98
|
},
|
|
99
|
+
{
|
|
100
|
+
"path": "schemas/core/frozen_release_manifest.v9.json",
|
|
101
|
+
"sha256": "73e4332e148a75d3c2b3b1942a08583dcab6b3dc486dba6605d2499a9570e987"
|
|
102
|
+
},
|
|
99
103
|
{
|
|
100
104
|
"path": "schemas/core/frozen_rule_set.v1.json",
|
|
101
105
|
"sha256": "2e4532fcbb2f988e64bc8c52a99010199cbb70366653eead3d41d72328669675"
|
{core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/data/schemas/core/dsk.v3.json
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"$id": "https://core-runtime-engine.local/schemas/core/dsk.v3.json",
|
|
4
|
-
"title": "
|
|
4
|
+
"title": "Domain Scale Kernel v3",
|
|
5
5
|
"description": "One explicit, typed and reproducible scale crossing.",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"additionalProperties": false,
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "https://core-runtime-engine.local/schemas/core/frozen_release_manifest.v9.json",
|
|
4
|
+
"title": "FrozenReleaseManifest.v9",
|
|
5
|
+
"description": "The exact public CORE v11.6.0 stabilization inventory.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": [
|
|
9
|
+
"schema_version",
|
|
10
|
+
"type",
|
|
11
|
+
"release_version",
|
|
12
|
+
"status",
|
|
13
|
+
"scope",
|
|
14
|
+
"inventory_profile",
|
|
15
|
+
"critical_subsystems",
|
|
16
|
+
"self_reference_policy",
|
|
17
|
+
"canonicalization",
|
|
18
|
+
"hash_algorithm",
|
|
19
|
+
"created_at",
|
|
20
|
+
"artifact_count",
|
|
21
|
+
"artifacts",
|
|
22
|
+
"fingerprint"
|
|
23
|
+
],
|
|
24
|
+
"properties": {
|
|
25
|
+
"schema_version": {
|
|
26
|
+
"const": "core.frozen_release_manifest.v9"
|
|
27
|
+
},
|
|
28
|
+
"type": {
|
|
29
|
+
"const": "frozen_release_manifest"
|
|
30
|
+
},
|
|
31
|
+
"release_version": {
|
|
32
|
+
"const": "v11.6.0"
|
|
33
|
+
},
|
|
34
|
+
"status": {
|
|
35
|
+
"const": "candidate"
|
|
36
|
+
},
|
|
37
|
+
"scope": {
|
|
38
|
+
"const": "domain_scale_kernel_v3"
|
|
39
|
+
},
|
|
40
|
+
"inventory_profile": {
|
|
41
|
+
"const": "core.stabilization_release.v11_6_0_candidate"
|
|
42
|
+
},
|
|
43
|
+
"critical_subsystems": {
|
|
44
|
+
"const": [
|
|
45
|
+
"dsk_v3",
|
|
46
|
+
"contract_program_v2",
|
|
47
|
+
"executable_contracts",
|
|
48
|
+
"release_integrity"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"self_reference_policy": {
|
|
52
|
+
"const": "manifest_file_excluded_fingerprint_covers_inventory"
|
|
53
|
+
},
|
|
54
|
+
"canonicalization": {
|
|
55
|
+
"const": "core.canonical_json.v1"
|
|
56
|
+
},
|
|
57
|
+
"hash_algorithm": {
|
|
58
|
+
"const": "sha256"
|
|
59
|
+
},
|
|
60
|
+
"created_at": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"format": "date-time"
|
|
63
|
+
},
|
|
64
|
+
"artifact_count": {
|
|
65
|
+
"type": "integer",
|
|
66
|
+
"minimum": 1
|
|
67
|
+
},
|
|
68
|
+
"artifacts": {
|
|
69
|
+
"type": "array",
|
|
70
|
+
"minItems": 1,
|
|
71
|
+
"items": {
|
|
72
|
+
"$ref": "#/$defs/artifact"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"fingerprint": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"pattern": "^sha256:[a-f0-9]{64}$"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"$defs": {
|
|
81
|
+
"artifact": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"additionalProperties": false,
|
|
84
|
+
"required": [
|
|
85
|
+
"path",
|
|
86
|
+
"role",
|
|
87
|
+
"file_sha256"
|
|
88
|
+
],
|
|
89
|
+
"properties": {
|
|
90
|
+
"path": {
|
|
91
|
+
"type": "string",
|
|
92
|
+
"pattern": "^(?!/)(?![A-Za-z]:\\\\)(?!.*(?:^|/)\\.\\.(?:/|$)).+"
|
|
93
|
+
},
|
|
94
|
+
"role": {
|
|
95
|
+
"enum": [
|
|
96
|
+
"ci",
|
|
97
|
+
"contract",
|
|
98
|
+
"documentation",
|
|
99
|
+
"example",
|
|
100
|
+
"release_metadata",
|
|
101
|
+
"runtime",
|
|
102
|
+
"schema",
|
|
103
|
+
"script",
|
|
104
|
+
"test"
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"file_sha256": {
|
|
108
|
+
"type": "string",
|
|
109
|
+
"pattern": "^sha256:[a-f0-9]{64}$"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
{core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/bump_version.py
RENAMED
|
@@ -140,11 +140,18 @@ class ReplacementRule:
|
|
|
140
140
|
file_rel: str
|
|
141
141
|
pattern: str
|
|
142
142
|
replacement_template: str # use {old} and {new} placeholders
|
|
143
|
+
max_replacements: int = 0
|
|
143
144
|
|
|
144
145
|
def compute_replacement(self, text: str, old_version: str, new_version: str) -> tuple[int, str]:
|
|
145
146
|
"""Apply the replacement to *text*, returning (count, new_text)."""
|
|
146
147
|
repl = self.replacement_template.format(old=old_version, new=new_version)
|
|
147
|
-
new_text, count = re.subn(
|
|
148
|
+
new_text, count = re.subn(
|
|
149
|
+
self.pattern,
|
|
150
|
+
repl,
|
|
151
|
+
text,
|
|
152
|
+
count=self.max_replacements,
|
|
153
|
+
flags=re.MULTILINE,
|
|
154
|
+
)
|
|
148
155
|
return count, new_text
|
|
149
156
|
|
|
150
157
|
|
|
@@ -209,6 +216,7 @@ DEFAULT_REPLACEMENT_RULES: list[ReplacementRule] = [
|
|
|
209
216
|
file_rel="CHANGELOG.md",
|
|
210
217
|
pattern=r"^(##\s+v)\d+\.\d+\.\d+",
|
|
211
218
|
replacement_template=r"\g<1>{new}",
|
|
219
|
+
max_replacements=1,
|
|
212
220
|
),
|
|
213
221
|
# docs/CORE_RELEASE_README.md — CORE: vX.Y.Z
|
|
214
222
|
ReplacementRule(
|
|
@@ -394,6 +402,26 @@ class BumpVersionPlanner:
|
|
|
394
402
|
|
|
395
403
|
# 9. Write files (transactional — only after all validations pass)
|
|
396
404
|
written_files: list[str] = []
|
|
405
|
+
original_contents: dict[str, bytes | None] = {}
|
|
406
|
+
for file_rel in new_contents:
|
|
407
|
+
full_path = self.repo_root / file_rel
|
|
408
|
+
original_contents[file_rel] = full_path.read_bytes() if full_path.exists() else None
|
|
409
|
+
|
|
410
|
+
release_note_path = self.repo_root / "docs" / "releases" / f"v{target_version}.md"
|
|
411
|
+
release_note_created = False
|
|
412
|
+
|
|
413
|
+
def rollback() -> None:
|
|
414
|
+
"""Restore every byte touched by this apply attempt."""
|
|
415
|
+
|
|
416
|
+
for file_rel, original in original_contents.items():
|
|
417
|
+
full_path = self.repo_root / file_rel
|
|
418
|
+
if original is None:
|
|
419
|
+
full_path.unlink(missing_ok=True)
|
|
420
|
+
else:
|
|
421
|
+
full_path.write_bytes(original)
|
|
422
|
+
if release_note_created:
|
|
423
|
+
release_note_path.unlink(missing_ok=True)
|
|
424
|
+
|
|
397
425
|
try:
|
|
398
426
|
for file_rel, new_text in new_contents.items():
|
|
399
427
|
full_path = self.repo_root / file_rel
|
|
@@ -401,6 +429,7 @@ class BumpVersionPlanner:
|
|
|
401
429
|
full_path.write_text(new_text, encoding="utf-8")
|
|
402
430
|
written_files.append(file_rel)
|
|
403
431
|
except Exception:
|
|
432
|
+
rollback()
|
|
404
433
|
# Partial mutation — report blocked and list touched files
|
|
405
434
|
diagnostics.add_blocked(
|
|
406
435
|
code="core.bump_version.internal_error",
|
|
@@ -411,11 +440,24 @@ class BumpVersionPlanner:
|
|
|
411
440
|
)
|
|
412
441
|
return [], {}
|
|
413
442
|
|
|
414
|
-
# 10. Create release note for target version (preferred path)
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
443
|
+
# 10. Create release note for target version (preferred path). Keep
|
|
444
|
+
# this inside the transaction: a partial release-note write must not
|
|
445
|
+
# leave version-bearing files advanced while the note is missing.
|
|
446
|
+
try:
|
|
447
|
+
if not release_note_path.exists():
|
|
448
|
+
release_note_created = True
|
|
449
|
+
self._create_release_note(target_version, release_note_path)
|
|
450
|
+
written_files.append("docs/releases/v{0}.md".format(target_version))
|
|
451
|
+
except Exception:
|
|
452
|
+
rollback()
|
|
453
|
+
diagnostics.add_blocked(
|
|
454
|
+
code="core.bump_version.internal_error",
|
|
455
|
+
message="Partial mutation: release note write failed. Touched files: {0}".format(
|
|
456
|
+
", ".join(written_files)
|
|
457
|
+
),
|
|
458
|
+
path="internal",
|
|
459
|
+
)
|
|
460
|
+
return [], {}
|
|
419
461
|
|
|
420
462
|
# 11. docs/releases/README.md already mutated in new_contents (compute-time).
|
|
421
463
|
# No post-write pass here — see _compute_new_contents for the regex.
|
|
@@ -450,6 +492,16 @@ class BumpVersionPlanner:
|
|
|
450
492
|
message="[post-apply] {0}".format(d.message),
|
|
451
493
|
path=d.path,
|
|
452
494
|
)
|
|
495
|
+
rollback()
|
|
496
|
+
return [], {
|
|
497
|
+
"files_checked": len(new_contents),
|
|
498
|
+
"files_changed": 0,
|
|
499
|
+
"replacement_count": 0,
|
|
500
|
+
"info": 0,
|
|
501
|
+
"warning": 0,
|
|
502
|
+
"error": len(post_diagnostics.diagnostics),
|
|
503
|
+
"blocked": 0,
|
|
504
|
+
}
|
|
453
505
|
|
|
454
506
|
# Build summary
|
|
455
507
|
files_changed = sum(1 for a in applied if a.changed)
|
{core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime/tooling/file_inventory.py
RENAMED
|
@@ -10,6 +10,7 @@ from core_runtime.tooling.diagnostics import DiagnosticCollection
|
|
|
10
10
|
# Required files for CORE tooling
|
|
11
11
|
REQUIRED_FILES = [
|
|
12
12
|
"README.md",
|
|
13
|
+
"LICENSE",
|
|
13
14
|
"pyproject.toml",
|
|
14
15
|
"CHANGELOG.md",
|
|
15
16
|
"core_runtime/__version__.py",
|
|
@@ -37,8 +38,7 @@ REQUIRED_FILES = [
|
|
|
37
38
|
"schemas/core/dsk.v3.json",
|
|
38
39
|
"schemas/core/frozen_release_manifest.v7.json",
|
|
39
40
|
"schemas/core/frozen_release_manifest.v8.json",
|
|
40
|
-
"schemas/core/
|
|
41
|
-
"schemas/core/frozen_release_manifest.v7.json",
|
|
41
|
+
"schemas/core/frozen_release_manifest.v9.json",
|
|
42
42
|
"schemas/core/frozen_rule_set.v1.json",
|
|
43
43
|
"schemas/core/physical_safety_assurance_case.v1.json",
|
|
44
44
|
"schemas/core/rule_anchor_chain_evidence.v1.json",
|
|
@@ -52,7 +52,6 @@ REQUIRED_FILES = [
|
|
|
52
52
|
"scripts/build_frozen_release_manifest_v11_2.py",
|
|
53
53
|
"scripts/build_frozen_release_manifest_v11_2_frozen.py",
|
|
54
54
|
"scripts/build_frozen_release_manifest_v11_5.py",
|
|
55
|
-
"scripts/build_frozen_release_manifest_v11_5.py",
|
|
56
55
|
"scripts/validate_frozen_rule_set.py",
|
|
57
56
|
"scripts/validate_frozen_release_manifest.py",
|
|
58
57
|
"scripts/validate_frozen_release_manifest_v11_2.py",
|
|
@@ -61,8 +60,15 @@ REQUIRED_FILES = [
|
|
|
61
60
|
"scripts/validate_frozen_release_manifest_v11_5.py",
|
|
62
61
|
"scripts/validate_frozen_release_manifest_v11_5_1.py",
|
|
63
62
|
"scripts/build_frozen_release_manifest_v11_5_1.py",
|
|
64
|
-
"scripts/
|
|
65
|
-
"scripts/
|
|
63
|
+
"scripts/validate_frozen_release_manifest_v11_6.py",
|
|
64
|
+
"scripts/build_frozen_release_manifest_v11_6.py",
|
|
65
|
+
"scripts/pypi_preflight.py",
|
|
66
|
+
"scripts/replay_certification.py",
|
|
67
|
+
"scripts/expert_router_common.py",
|
|
68
|
+
"scripts/validate_expert_router.py",
|
|
69
|
+
"scripts/evaluate_expert_router.py",
|
|
70
|
+
"scripts/report_expert_router.py",
|
|
71
|
+
"scripts/certify_router_replay.py",
|
|
66
72
|
"scripts/validate_rule_approval.py",
|
|
67
73
|
"scripts/validate_rule_anchor_batch.py",
|
|
68
74
|
"scripts/validate_unsigned_rule_anchor_deployment.py",
|
|
@@ -85,9 +91,14 @@ REQUIRED_FILES = [
|
|
|
85
91
|
"examples/frozen_release_manifest/accepted_v11_2_0.json",
|
|
86
92
|
"examples/frozen_release_manifest/accepted_v11_5_0_candidate.json",
|
|
87
93
|
"examples/frozen_release_manifest/accepted_v11_5_1_candidate.json",
|
|
88
|
-
"examples/frozen_release_manifest/
|
|
94
|
+
"examples/frozen_release_manifest/accepted_v11_6_0_candidate.json",
|
|
95
|
+
"examples/expert_router/routing_fixtures/minimal_routing.json",
|
|
89
96
|
"tests/test_frozen_release_manifest.py",
|
|
90
97
|
"tests/test_frozen_release_manifest_v11_5_1.py",
|
|
98
|
+
"tests/test_frozen_release_manifest_v11_6.py",
|
|
99
|
+
"tests/test_pypi_preflight.py",
|
|
100
|
+
"tests/test_replay_certification.py",
|
|
101
|
+
"tests/test_expert_router_scripts.py",
|
|
91
102
|
"tests/test_frozen_release_manifest_v11_2.py",
|
|
92
103
|
"tests/test_frozen_release_manifest_v11_2_frozen.py",
|
|
93
104
|
"requirements.lock",
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: core-runtime-engine
|
|
3
|
+
Version: 11.6.0
|
|
4
|
+
Summary: CORE - deterministic contract, schema and validation engine
|
|
5
|
+
Author: CORE Project
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: jsonschema>=4.0
|
|
11
|
+
Provides-Extra: anchoring
|
|
12
|
+
Requires-Dist: web3>=6.0; extra == "anchoring"
|
|
13
|
+
Provides-Extra: dev
|
|
14
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
15
|
+
Requires-Dist: packaging>=23.0; extra == "dev"
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# CORE Release Overview
|
|
19
|
+
|
|
20
|
+
CORE: v11.6.0 — Contract-Oriented Reproducible Evaluation, deterministic
|
|
21
|
+
contract, schema and validation engine.
|
|
22
|
+
|
|
23
|
+
Release status: stabilization candidate. The historical `v11.5.1` manifest
|
|
24
|
+
remains byte-preserved, while this line owns an independent manifest and
|
|
25
|
+
release-gate path. Do not infer GitHub release assets or package publication
|
|
26
|
+
until the dedicated publication workflow completes.
|
|
27
|
+
|
|
28
|
+
The public contract `core.dsk.v3` is the **Domain Scale Kernel v3** surface.
|
|
29
|
+
The technical compatibility identifier remains unchanged. The surface contains
|
|
30
|
+
typed scale crossings, rational conversion, declared loss, evidence references, policy gates and a
|
|
31
|
+
non-amplifying authority ceiling. This describes the source surface only and
|
|
32
|
+
does not promote the candidate to a formal public release.
|
|
33
|
+
|
|
34
|
+
See [../README.md](../README.md) for what CORE is and how it's consumed.
|
|
35
|
+
See [releases/v11.6.0.md](releases/v11.6.0.md) for the current stabilization
|
|
36
|
+
scope, [releases/v11.5.1.md](releases/v11.5.1.md) for the prior public line,
|
|
37
|
+
and [releases/v11.3.0.md](releases/v11.3.0.md) for the earlier release
|
|
38
|
+
and [CORE_REBUILD_FROM_ZERO.md](CORE_REBUILD_FROM_ZERO.md)
|
|
39
|
+
for the rebuild rationale.
|
{core_runtime_engine-11.5.1 → core_runtime_engine-11.6.0}/core_runtime_engine.egg-info/SOURCES.txt
RENAMED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
LICENSE
|
|
1
2
|
README.md
|
|
2
3
|
pyproject.toml
|
|
3
4
|
core_runtime/__init__.py
|
|
@@ -57,6 +58,7 @@ core_runtime/data/schemas/core/frozen_release_manifest.v5.json
|
|
|
57
58
|
core_runtime/data/schemas/core/frozen_release_manifest.v6.json
|
|
58
59
|
core_runtime/data/schemas/core/frozen_release_manifest.v7.json
|
|
59
60
|
core_runtime/data/schemas/core/frozen_release_manifest.v8.json
|
|
61
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v9.json
|
|
60
62
|
core_runtime/data/schemas/core/frozen_rule_set.v1.json
|
|
61
63
|
core_runtime/data/schemas/core/memory_artifact.v1.json
|
|
62
64
|
core_runtime/data/schemas/core/memory_generation_result.v1.json
|
|
@@ -127,6 +129,7 @@ tests/test_dsk_v3.py
|
|
|
127
129
|
tests/test_executable_contracts.py
|
|
128
130
|
tests/test_execution_profile_fixtures.py
|
|
129
131
|
tests/test_expert_conflict_pre_resolution_validator.py
|
|
132
|
+
tests/test_expert_router_scripts.py
|
|
130
133
|
tests/test_explainability_determinism.py
|
|
131
134
|
tests/test_external_llm_sync_bundle.py
|
|
132
135
|
tests/test_frozen_release_manifest.py
|
|
@@ -137,6 +140,7 @@ tests/test_frozen_release_manifest_v11_3_frozen.py
|
|
|
137
140
|
tests/test_frozen_release_manifest_v11_4.py
|
|
138
141
|
tests/test_frozen_release_manifest_v11_5.py
|
|
139
142
|
tests/test_frozen_release_manifest_v11_5_1.py
|
|
143
|
+
tests/test_frozen_release_manifest_v11_6.py
|
|
140
144
|
tests/test_frozen_rule_set_validator.py
|
|
141
145
|
tests/test_human_approved_execution_gate_validator.py
|
|
142
146
|
tests/test_image_brightness_motion_example.py
|
|
@@ -145,6 +149,8 @@ tests/test_operational_learning_contracts.py
|
|
|
145
149
|
tests/test_parametric_template_validator.py
|
|
146
150
|
tests/test_physical_safety_assurance.py
|
|
147
151
|
tests/test_private_domain_integration.py
|
|
152
|
+
tests/test_pypi_preflight.py
|
|
153
|
+
tests/test_replay_certification.py
|
|
148
154
|
tests/test_rule_anchor_batch.py
|
|
149
155
|
tests/test_rule_anchor_deployment.py
|
|
150
156
|
tests/test_rule_anchor_transaction.py
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CORE Release Overview
|
|
2
|
+
|
|
3
|
+
CORE: v11.6.0 — Contract-Oriented Reproducible Evaluation, deterministic
|
|
4
|
+
contract, schema and validation engine.
|
|
5
|
+
|
|
6
|
+
Release status: stabilization candidate. The historical `v11.5.1` manifest
|
|
7
|
+
remains byte-preserved, while this line owns an independent manifest and
|
|
8
|
+
release-gate path. Do not infer GitHub release assets or package publication
|
|
9
|
+
until the dedicated publication workflow completes.
|
|
10
|
+
|
|
11
|
+
The public contract `core.dsk.v3` is the **Domain Scale Kernel v3** surface.
|
|
12
|
+
The technical compatibility identifier remains unchanged. The surface contains
|
|
13
|
+
typed scale crossings, rational conversion, declared loss, evidence references, policy gates and a
|
|
14
|
+
non-amplifying authority ceiling. This describes the source surface only and
|
|
15
|
+
does not promote the candidate to a formal public release.
|
|
16
|
+
|
|
17
|
+
See [../README.md](../README.md) for what CORE is and how it's consumed.
|
|
18
|
+
See [releases/v11.6.0.md](releases/v11.6.0.md) for the current stabilization
|
|
19
|
+
scope, [releases/v11.5.1.md](releases/v11.5.1.md) for the prior public line,
|
|
20
|
+
and [releases/v11.3.0.md](releases/v11.3.0.md) for the earlier release
|
|
21
|
+
and [CORE_REBUILD_FROM_ZERO.md](CORE_REBUILD_FROM_ZERO.md)
|
|
22
|
+
for the rebuild rationale.
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "core-runtime-engine"
|
|
3
|
-
version = "11.
|
|
3
|
+
version = "11.6.0"
|
|
4
4
|
description = "CORE - deterministic contract, schema and validation engine"
|
|
5
5
|
readme = "docs/CORE_RELEASE_README.md"
|
|
6
|
-
license =
|
|
6
|
+
license = "MIT"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
7
8
|
requires-python = ">=3.11"
|
|
8
9
|
authors = [
|
|
9
10
|
{name = "CORE Project"},
|