core-runtime-engine 11.5.1__py3-none-any.whl
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/__init__.py +10 -0
- core_runtime/__version__.py +17 -0
- core_runtime/cli/__init__.py +7 -0
- core_runtime/cli/__main__.py +22 -0
- core_runtime/cli/bump_version.py +176 -0
- core_runtime/cli/contract_preflight.py +69 -0
- core_runtime/cli/create_domain.py +66 -0
- core_runtime/cli/doctor.py +44 -0
- core_runtime/cli/inventory.py +85 -0
- core_runtime/cli/lint.py +8 -0
- core_runtime/cli/main.py +579 -0
- core_runtime/cli/release_check.py +65 -0
- core_runtime/cli/repair_artifact_paths.py +48 -0
- core_runtime/cli/sync_template.py +67 -0
- core_runtime/cli/validate.py +73 -0
- core_runtime/core/__init__.py +34 -0
- core_runtime/core/audit_event.py +760 -0
- core_runtime/core/audit_trail_index.py +100 -0
- core_runtime/core/canonicalization.py +55 -0
- core_runtime/core/contract_evaluator.py +945 -0
- core_runtime/core/contract_executability.py +307 -0
- core_runtime/core/contract_loader.py +57 -0
- core_runtime/core/contract_probes.py +630 -0
- core_runtime/core/contract_program.py +131 -0
- core_runtime/core/contract_program_registry.py +104 -0
- core_runtime/core/contract_program_v2.py +126 -0
- core_runtime/core/dsk_v3.py +142 -0
- core_runtime/core/explainability.py +2115 -0
- core_runtime/core/numeric_normalization.py +120 -0
- core_runtime/core/rule_anchor.py +1388 -0
- core_runtime/core/schema_fingerprint.py +69 -0
- core_runtime/core/sensor_evidence.py +548 -0
- core_runtime/data/contracts/CoreAnchor.sol +109 -0
- core_runtime/data/contracts/CoreRuleAnchor.abi.json +111 -0
- core_runtime/data/contracts/CoreRuleAnchor.bin +1 -0
- core_runtime/data/contracts/CoreRuleAnchor.build.json +20 -0
- core_runtime/data/contracts/CoreRuleAnchor.runtime.bin +1 -0
- core_runtime/data/contracts/CoreRuleAnchor.sol +74 -0
- core_runtime/data/package_data_manifest.v1.json +173 -0
- core_runtime/data/schemas/core/causal_trace.v1.json +141 -0
- core_runtime/data/schemas/core/context_gate.v1.json +38 -0
- core_runtime/data/schemas/core/context_threshold.v1.json +46 -0
- core_runtime/data/schemas/core/contract_program.v1.json +186 -0
- core_runtime/data/schemas/core/contract_program.v2.json +187 -0
- core_runtime/data/schemas/core/control_decision.v1.json +114 -0
- core_runtime/data/schemas/core/dsk.v3.json +105 -0
- core_runtime/data/schemas/core/effect_result.v1.json +39 -0
- core_runtime/data/schemas/core/entropy_signal.v1.json +108 -0
- core_runtime/data/schemas/core/execution_receipt.v1.json +93 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v1.json +87 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v2.json +72 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v3.json +38 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v4.json +72 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v5.json +38 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v6.json +116 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v7.json +37 -0
- core_runtime/data/schemas/core/frozen_release_manifest.v8.json +114 -0
- core_runtime/data/schemas/core/frozen_rule_set.v1.json +282 -0
- core_runtime/data/schemas/core/memory_artifact.v1.json +120 -0
- core_runtime/data/schemas/core/memory_generation_result.v1.json +37 -0
- core_runtime/data/schemas/core/operational_learning_event.v1.json +63 -0
- core_runtime/data/schemas/core/pattern_candidate.v1.json +114 -0
- core_runtime/data/schemas/core/physical_safety_assurance_case.v1.json +676 -0
- core_runtime/data/schemas/core/policy_lifecycle.v1.json +99 -0
- core_runtime/data/schemas/core/retention_manifest.v1.json +53 -0
- core_runtime/data/schemas/core/reversibility_policy.v1.json +107 -0
- core_runtime/data/schemas/core/rule_anchor_batch.v1.json +93 -0
- core_runtime/data/schemas/core/rule_anchor_chain_evidence.v1.json +56 -0
- core_runtime/data/schemas/core/rule_approval.v1.json +49 -0
- core_runtime/data/schemas/core/rule_approval_request.v1.json +42 -0
- core_runtime/data/schemas/core/state_transition.v1.json +115 -0
- core_runtime/data/schemas/core/task_closeout.v1.json +47 -0
- core_runtime/data/schemas/core/template_promotion_candidate.v1.json +83 -0
- core_runtime/data/schemas/core/unsigned_rule_anchor_deployment.v1.json +106 -0
- core_runtime/data/schemas/core/unsigned_rule_anchor_transaction.v1.json +116 -0
- core_runtime/tooling/__init__.py +48 -0
- core_runtime/tooling/bump_version.py +900 -0
- core_runtime/tooling/contract_preflight.py +293 -0
- core_runtime/tooling/create_domain.py +254 -0
- core_runtime/tooling/diagnostics.py +129 -0
- core_runtime/tooling/doctor.py +482 -0
- core_runtime/tooling/file_inventory.py +182 -0
- core_runtime/tooling/json_checks.py +100 -0
- core_runtime/tooling/release_check.py +1017 -0
- core_runtime/tooling/repair_artifact_paths.py +458 -0
- core_runtime/tooling/report_writer.py +176 -0
- core_runtime/tooling/repository_inventory.py +399 -0
- core_runtime/tooling/safety_checks.py +172 -0
- core_runtime/tooling/sync_template.py +303 -0
- core_runtime/tooling/validation.py +507 -0
- core_runtime/tooling/version_inventory.py +256 -0
- core_runtime_engine-11.5.1.dist-info/METADATA +35 -0
- core_runtime_engine-11.5.1.dist-info/RECORD +96 -0
- core_runtime_engine-11.5.1.dist-info/WHEEL +5 -0
- core_runtime_engine-11.5.1.dist-info/entry_points.txt +2 -0
- core_runtime_engine-11.5.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
"""Version inventory - discover and compare all version references in the repository."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import re
|
|
6
|
+
from dataclasses import dataclass
|
|
7
|
+
from pathlib import Path
|
|
8
|
+
from typing import Optional
|
|
9
|
+
|
|
10
|
+
from core_runtime.tooling.diagnostics import DiagnosticCollection
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@dataclass
|
|
14
|
+
class VersionSource:
|
|
15
|
+
"""A single version source file and its extracted version."""
|
|
16
|
+
|
|
17
|
+
name: str
|
|
18
|
+
path: Path
|
|
19
|
+
version: Optional[str]
|
|
20
|
+
pattern: str
|
|
21
|
+
is_canonical: bool = False
|
|
22
|
+
|
|
23
|
+
def to_dict(self) -> dict:
|
|
24
|
+
"""Convert to dictionary."""
|
|
25
|
+
return {
|
|
26
|
+
"name": self.name,
|
|
27
|
+
"path": str(self.path),
|
|
28
|
+
"version": self.version,
|
|
29
|
+
"is_canonical": self.is_canonical,
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class VersionInventory:
|
|
34
|
+
"""Discover and compare all version references across the repository."""
|
|
35
|
+
|
|
36
|
+
# Canonical version patterns for each file
|
|
37
|
+
VERSION_PATTERNS = {
|
|
38
|
+
"core_runtime/__version__.py": (
|
|
39
|
+
r'__version__\s*=\s*["\'](\d+\.\d+\.\d+(-[a-zA-Z0-9.]+)?)["\']',
|
|
40
|
+
True, # is_canonical
|
|
41
|
+
),
|
|
42
|
+
"pyproject.toml": (
|
|
43
|
+
r'^version\s*=\s*["\'](\d+\.\d+\.\d+(-[a-zA-Z0-9.]+)?)["\']',
|
|
44
|
+
False,
|
|
45
|
+
),
|
|
46
|
+
"core_runtime/__init__.py": (
|
|
47
|
+
r'from core_runtime\.__version__ import __version__',
|
|
48
|
+
False, # re-export, no inline version
|
|
49
|
+
),
|
|
50
|
+
"README.md": (
|
|
51
|
+
r"CORE\s+v(\d+\.\d+\.\d+)",
|
|
52
|
+
False,
|
|
53
|
+
),
|
|
54
|
+
"docs/VERSIONING_POLICY.md": (
|
|
55
|
+
r"Current\*?\*?:\s*v(\d+\.\d+\.\d+)",
|
|
56
|
+
False,
|
|
57
|
+
),
|
|
58
|
+
"CHANGELOG.md": (
|
|
59
|
+
r"^##\s+v(\d+\.\d+\.\d+)",
|
|
60
|
+
False,
|
|
61
|
+
),
|
|
62
|
+
"docs/CORE_RELEASE_README.md": (
|
|
63
|
+
r"CORE:\s*v(\d+\.\d+\.\d+)",
|
|
64
|
+
False,
|
|
65
|
+
),
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
def __init__(self, repo_root: Path):
|
|
69
|
+
self.repo_root = repo_root
|
|
70
|
+
|
|
71
|
+
def extract_version(self, file_path: Path, pattern: str) -> Optional[str]:
|
|
72
|
+
"""Extract version from file using regex pattern."""
|
|
73
|
+
try:
|
|
74
|
+
text = file_path.read_text(encoding="utf-8")
|
|
75
|
+
except FileNotFoundError:
|
|
76
|
+
return None
|
|
77
|
+
except OSError:
|
|
78
|
+
return None
|
|
79
|
+
|
|
80
|
+
match = re.search(pattern, text, re.MULTILINE)
|
|
81
|
+
if match:
|
|
82
|
+
return match.group(1)
|
|
83
|
+
return None
|
|
84
|
+
|
|
85
|
+
def check_init_reexport(self, file_path: Path) -> bool:
|
|
86
|
+
"""Check if __init__.py correctly re-exports from __version__."""
|
|
87
|
+
try:
|
|
88
|
+
text = file_path.read_text(encoding="utf-8")
|
|
89
|
+
except FileNotFoundError:
|
|
90
|
+
return False
|
|
91
|
+
except OSError:
|
|
92
|
+
return False
|
|
93
|
+
|
|
94
|
+
return "from core_runtime.__version__ import __version__" in text
|
|
95
|
+
|
|
96
|
+
def discover(self) -> list[VersionSource]:
|
|
97
|
+
"""Discover all version sources in the repository."""
|
|
98
|
+
sources = []
|
|
99
|
+
|
|
100
|
+
for rel_path, (pattern, is_canonical) in self.VERSION_PATTERNS.items():
|
|
101
|
+
full_path = self.repo_root / rel_path
|
|
102
|
+
|
|
103
|
+
if rel_path == "core_runtime/__init__.py":
|
|
104
|
+
# Special case: check re-export
|
|
105
|
+
has_reexport = self.check_init_reexport(full_path)
|
|
106
|
+
sources.append(VersionSource(
|
|
107
|
+
name=rel_path,
|
|
108
|
+
path=full_path,
|
|
109
|
+
version="re-export" if has_reexport else None,
|
|
110
|
+
pattern="re-export check",
|
|
111
|
+
is_canonical=is_canonical,
|
|
112
|
+
))
|
|
113
|
+
else:
|
|
114
|
+
version = self.extract_version(full_path, pattern)
|
|
115
|
+
sources.append(VersionSource(
|
|
116
|
+
name=rel_path,
|
|
117
|
+
path=full_path,
|
|
118
|
+
version=version,
|
|
119
|
+
pattern=pattern,
|
|
120
|
+
is_canonical=is_canonical,
|
|
121
|
+
))
|
|
122
|
+
|
|
123
|
+
return sources
|
|
124
|
+
|
|
125
|
+
def get_canonical_version(self) -> Optional[str]:
|
|
126
|
+
"""Get the canonical version from __version__.py."""
|
|
127
|
+
for source in self.discover():
|
|
128
|
+
if source.is_canonical:
|
|
129
|
+
return source.version
|
|
130
|
+
return None
|
|
131
|
+
|
|
132
|
+
def check_consistency(self, diagnostics: DiagnosticCollection) -> list[VersionSource]:
|
|
133
|
+
"""Check version consistency across all sources."""
|
|
134
|
+
sources = self.discover()
|
|
135
|
+
canonical = self.get_canonical_version()
|
|
136
|
+
|
|
137
|
+
if not canonical:
|
|
138
|
+
diagnostics.add_blocked(
|
|
139
|
+
code="core.version.canonical_missing",
|
|
140
|
+
message="Cannot determine canonical version from core_runtime/__version__.py",
|
|
141
|
+
path="core_runtime/__version__.py",
|
|
142
|
+
)
|
|
143
|
+
return sources
|
|
144
|
+
|
|
145
|
+
for source in sources:
|
|
146
|
+
if source.is_canonical:
|
|
147
|
+
continue
|
|
148
|
+
|
|
149
|
+
if source.name == "core_runtime/__init__.py":
|
|
150
|
+
# Check re-export
|
|
151
|
+
if source.version != "re-export":
|
|
152
|
+
diagnostics.add_error(
|
|
153
|
+
code="core.version.init_not_reexporting",
|
|
154
|
+
message="core_runtime/__init__.py does not re-export from __version__",
|
|
155
|
+
path=str(source.path.relative_to(self.repo_root)),
|
|
156
|
+
expected="re-export",
|
|
157
|
+
actual="inline or missing",
|
|
158
|
+
)
|
|
159
|
+
continue
|
|
160
|
+
|
|
161
|
+
if source.version is None:
|
|
162
|
+
# File missing or pattern not found
|
|
163
|
+
diagnostics.add_error(
|
|
164
|
+
code="core.version.missing",
|
|
165
|
+
message="Version reference not found in {0}".format(source.name),
|
|
166
|
+
path=str(source.path.relative_to(self.repo_root)),
|
|
167
|
+
expected=canonical,
|
|
168
|
+
actual="not found",
|
|
169
|
+
)
|
|
170
|
+
continue
|
|
171
|
+
|
|
172
|
+
if source.version != canonical:
|
|
173
|
+
# Version mismatch
|
|
174
|
+
diagnostics.add_error(
|
|
175
|
+
code="core.version.inconsistent",
|
|
176
|
+
message="Version mismatch in {0}: expected {1}, found {2}".format(
|
|
177
|
+
source.name, canonical, source.version
|
|
178
|
+
),
|
|
179
|
+
path=str(source.path.relative_to(self.repo_root)),
|
|
180
|
+
expected=canonical,
|
|
181
|
+
actual=source.version,
|
|
182
|
+
)
|
|
183
|
+
|
|
184
|
+
return sources
|
|
185
|
+
|
|
186
|
+
def check_changelog_latest(self, diagnostics: DiagnosticCollection) -> None:
|
|
187
|
+
"""Check that CHANGELOG.md latest entry matches canonical version."""
|
|
188
|
+
canonical = self.get_canonical_version()
|
|
189
|
+
if not canonical:
|
|
190
|
+
return
|
|
191
|
+
|
|
192
|
+
changelog_path = self.repo_root / "CHANGELOG.md"
|
|
193
|
+
try:
|
|
194
|
+
text = changelog_path.read_text(encoding="utf-8")
|
|
195
|
+
except FileNotFoundError:
|
|
196
|
+
diagnostics.add_error(
|
|
197
|
+
code="core.version.changelog_missing",
|
|
198
|
+
message="CHANGELOG.md not found",
|
|
199
|
+
path="CHANGELOG.md",
|
|
200
|
+
)
|
|
201
|
+
return
|
|
202
|
+
except OSError:
|
|
203
|
+
return
|
|
204
|
+
|
|
205
|
+
# Find first versioned entry
|
|
206
|
+
match = re.search(r"^##\s+v(\d+\.\d+\.\d+)", text, re.MULTILINE)
|
|
207
|
+
if not match:
|
|
208
|
+
diagnostics.add_warning(
|
|
209
|
+
code="core.version.changelog_no_entry",
|
|
210
|
+
message="No versioned entry found in CHANGELOG.md",
|
|
211
|
+
path="CHANGELOG.md",
|
|
212
|
+
)
|
|
213
|
+
return
|
|
214
|
+
|
|
215
|
+
latest = match.group(1)
|
|
216
|
+
try:
|
|
217
|
+
latest_tuple = tuple(int(x) for x in latest.split("."))
|
|
218
|
+
canon_tuple = tuple(int(x) for x in canonical.split("."))
|
|
219
|
+
if latest_tuple > canon_tuple:
|
|
220
|
+
diagnostics.add_error(
|
|
221
|
+
code="core.version.changelog_ahead",
|
|
222
|
+
message="CHANGELOG.md latest entry ({0}) is ahead of canonical version ({1})".format(
|
|
223
|
+
latest, canonical
|
|
224
|
+
),
|
|
225
|
+
path="CHANGELOG.md",
|
|
226
|
+
expected=canonical,
|
|
227
|
+
actual=latest,
|
|
228
|
+
)
|
|
229
|
+
elif latest_tuple < canon_tuple:
|
|
230
|
+
diagnostics.add_warning(
|
|
231
|
+
code="core.version.changelog_behind",
|
|
232
|
+
message="CHANGELOG.md latest entry ({0}) is behind canonical version ({1})".format(
|
|
233
|
+
latest, canonical
|
|
234
|
+
),
|
|
235
|
+
path="CHANGELOG.md",
|
|
236
|
+
expected=canonical,
|
|
237
|
+
actual=latest,
|
|
238
|
+
)
|
|
239
|
+
except ValueError:
|
|
240
|
+
pass
|
|
241
|
+
|
|
242
|
+
def check_release_note(self, diagnostics: DiagnosticCollection) -> None:
|
|
243
|
+
"""Check that release note for current version exists."""
|
|
244
|
+
canonical = self.get_canonical_version()
|
|
245
|
+
if not canonical:
|
|
246
|
+
return
|
|
247
|
+
|
|
248
|
+
release_path = self.repo_root / "docs" / "releases" / "v{0}.md".format(canonical)
|
|
249
|
+
if not release_path.exists():
|
|
250
|
+
diagnostics.add_error(
|
|
251
|
+
code="core.version.release_note_missing",
|
|
252
|
+
message="Release note for v{0} not found at docs/releases/v{0}.md".format(canonical),
|
|
253
|
+
path="docs/releases/v{0}.md".format(canonical),
|
|
254
|
+
expected="exists",
|
|
255
|
+
actual="missing",
|
|
256
|
+
)
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: core-runtime-engine
|
|
3
|
+
Version: 11.5.1
|
|
4
|
+
Summary: CORE - deterministic contract, schema and validation engine
|
|
5
|
+
Author: CORE Project
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: jsonschema>=4.0
|
|
10
|
+
Provides-Extra: anchoring
|
|
11
|
+
Requires-Dist: web3>=6.0; extra == "anchoring"
|
|
12
|
+
Provides-Extra: dev
|
|
13
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
14
|
+
Requires-Dist: packaging>=23.0; extra == "dev"
|
|
15
|
+
|
|
16
|
+
# CORE Release Overview
|
|
17
|
+
|
|
18
|
+
CORE: v11.5.1 — deterministic contract, schema and validation engine.
|
|
19
|
+
|
|
20
|
+
Release status: `v11.5.1` is a local candidate only. The historical
|
|
21
|
+
`v11.5.0` manifest remains byte-preserved, while this candidate owns an
|
|
22
|
+
independent manifest and release-gate path. Do not infer GitHub release assets
|
|
23
|
+
or package publication until the dedicated publication plan completes.
|
|
24
|
+
|
|
25
|
+
The candidate contains the public deterministic Scale Kernel v3
|
|
26
|
+
(`core.dsk.v3`): typed scale crossings, rational conversion, declared loss,
|
|
27
|
+
evidence references, policy gates and a non-amplifying authority ceiling.
|
|
28
|
+
This describes the source surface only and does not promote the candidate to
|
|
29
|
+
a formal public release.
|
|
30
|
+
|
|
31
|
+
See [../README.md](../README.md) for what CORE is and how it's consumed.
|
|
32
|
+
See [releases/v11.5.1.md](releases/v11.5.1.md) for the current candidate
|
|
33
|
+
scope, [releases/v11.3.0.md](releases/v11.3.0.md) for the prior release
|
|
34
|
+
and [CORE_REBUILD_FROM_ZERO.md](CORE_REBUILD_FROM_ZERO.md)
|
|
35
|
+
for the rebuild rationale.
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
core_runtime/__init__.py,sha256=sX4Hj4C-xVs0kcBzKPz97QItAj4mfjGlB5C_tW7lJhA,347
|
|
2
|
+
core_runtime/__version__.py,sha256=lqxkm6cYsppmzKI-VmsQBfGVyOxsQ94JYHyxJvRm2mE,506
|
|
3
|
+
core_runtime/cli/__init__.py,sha256=2ksNXQXRP18e34Eyjnb5ukq-TnuNsGLsTZrW_c3QAMg,156
|
|
4
|
+
core_runtime/cli/__main__.py,sha256=y6zKTGic8bN4W--kPsy7b3vLEbkveO-xSx1TNTVID50,387
|
|
5
|
+
core_runtime/cli/bump_version.py,sha256=bslPG9Al6i3yzxMDZMYK12XGmyDE82vggn5ibk7ICP8,7031
|
|
6
|
+
core_runtime/cli/contract_preflight.py,sha256=M49b5OepIWLAkr26UhjV6KOgw_p64Gw2pctgQY48TBU,2557
|
|
7
|
+
core_runtime/cli/create_domain.py,sha256=3V7qzgLmzRh4BRzUtZDpy9wfx2Ok5ohNvKk5UGFbWcM,2461
|
|
8
|
+
core_runtime/cli/doctor.py,sha256=qY4sNyKFL-ypCRQsA_U_g-mhVpjn5ZLnr0R5BWCZ094,1467
|
|
9
|
+
core_runtime/cli/inventory.py,sha256=6sT09G_5hGwHutx7N43wL1TKGTMXwlXW3LQL2j5y8GM,2583
|
|
10
|
+
core_runtime/cli/lint.py,sha256=GhdLDonHMsRneo9vwjB6_fZpIUJ0ZxNE95fpYqR0FbA,157
|
|
11
|
+
core_runtime/cli/main.py,sha256=naMkkD_UOfoEewyxRpwVmtENGEH13m9AAtPaQuw1Zmg,19027
|
|
12
|
+
core_runtime/cli/release_check.py,sha256=lo_X9iURNddoURSO4sSeGH3wYfjRRU6t3hFxNqrb43g,2369
|
|
13
|
+
core_runtime/cli/repair_artifact_paths.py,sha256=5LzV2EaKxotIvFPAMelWRfnFwbgdm7TiGvWxY4QOQVs,1651
|
|
14
|
+
core_runtime/cli/sync_template.py,sha256=SVVm_5zUfdnOSCFPrK822TVr0EgcuXSxF4TUqlev6rY,2586
|
|
15
|
+
core_runtime/cli/validate.py,sha256=TENFbxR4df3tim2dXIq_8i2Fp42hklBu1uUCBfMaFxQ,2170
|
|
16
|
+
core_runtime/core/__init__.py,sha256=8W1zV_q6mfVe-Fgfe5SXpXDEr6nktzLOzk76fmrl-VU,1073
|
|
17
|
+
core_runtime/core/audit_event.py,sha256=2sQIjPb6tlxHX1rgABiNLn_hG7Z_9QLnxhGN7FP_nJU,28021
|
|
18
|
+
core_runtime/core/audit_trail_index.py,sha256=_MyyAM-YPGgQda5XY9zRxG_5UmcfEN4cbRcP0DzJfxo,4107
|
|
19
|
+
core_runtime/core/canonicalization.py,sha256=0Yac5DL5Tb8Y5RPYf2KEW5-k_zhDpvUheCsGvzC-7IM,1639
|
|
20
|
+
core_runtime/core/contract_evaluator.py,sha256=i3cVLaut5bU1MjO3j8rrTjkN3igECHzNbQ0J_j5h7Po,51578
|
|
21
|
+
core_runtime/core/contract_executability.py,sha256=dRB1CI3MOOoy3MlCBce-lNxCflKPLsMgfn8mWpX-v7E,12453
|
|
22
|
+
core_runtime/core/contract_loader.py,sha256=0hiyqqQoydMjuhx3VQBM2jvV7b0q4qg3idAB0Wt2gNw,2254
|
|
23
|
+
core_runtime/core/contract_probes.py,sha256=53F82jxgmmAzqmy8qMH52qWCmJ2oJc9DopDdCyGApdE,26322
|
|
24
|
+
core_runtime/core/contract_program.py,sha256=ZTpPCoNVMM1IK14l0_BEwzlel_bIhywZ4tNp8VfMMEE,6261
|
|
25
|
+
core_runtime/core/contract_program_registry.py,sha256=uLLqDc_HZctdTr5rmNk1dYrH--lpRDbBI35pZYwvm6o,3729
|
|
26
|
+
core_runtime/core/contract_program_v2.py,sha256=n6HiDOthnP35ibG3vlwe0H_nRzU0fpVtUC7ICJ7bZeU,5232
|
|
27
|
+
core_runtime/core/dsk_v3.py,sha256=S2wkVCkXaXFnyAkN3lgX7M7GMK70G0-EWEQtAhphSDQ,5541
|
|
28
|
+
core_runtime/core/explainability.py,sha256=s_qUek585NxGlF5sMpCMV_KJ_k34888sUaEbczhRI1M,87380
|
|
29
|
+
core_runtime/core/numeric_normalization.py,sha256=jeuN3ebMsh61FwNh6QN-KE5VB3vcC541k44zh9LmFbo,4073
|
|
30
|
+
core_runtime/core/rule_anchor.py,sha256=Pv5DQETc67zV_jo2NGv3oe-med5aeddYhIJRbDheLOE,55502
|
|
31
|
+
core_runtime/core/schema_fingerprint.py,sha256=6x6OxPLXtawEfLcjh6HYZq4eOd55NoMSbymgN9MDvhk,2020
|
|
32
|
+
core_runtime/core/sensor_evidence.py,sha256=S1zky0OSH6JtErhLcq8ULgsE33ZYiCSQwqIEgBmlRG0,20049
|
|
33
|
+
core_runtime/data/package_data_manifest.v1.json,sha256=unk9JIXyQPdnBJPbaCfkKu-AzlksHxB3nfxB9LK6Lik,6499
|
|
34
|
+
core_runtime/data/contracts/CoreAnchor.sol,sha256=fS9ikHhUu9g2mpqDSst0JCYH9LjH845jkEfRLS3pQd0,4394
|
|
35
|
+
core_runtime/data/contracts/CoreRuleAnchor.abi.json,sha256=7m8WtzqnWuLTT3klwfCOlYm-mHChzGyZi5w77_-VNUI,2170
|
|
36
|
+
core_runtime/data/contracts/CoreRuleAnchor.bin,sha256=yXngURduBcdfDW0oDAvIc7Rl-UA4RueE0s89nffqvws,1873
|
|
37
|
+
core_runtime/data/contracts/CoreRuleAnchor.build.json,sha256=ZPebjeCJZnGsDx3L6la4WFAftoOTZB0a8z_rC-s1Hts,757
|
|
38
|
+
core_runtime/data/contracts/CoreRuleAnchor.runtime.bin,sha256=WstL2CUJjKcTOjhntDJju4eYZZEU9bublFxiO-MPiq4,1817
|
|
39
|
+
core_runtime/data/contracts/CoreRuleAnchor.sol,sha256=9WQWqG85oVanw7OMtLwwpxYkvkO2p5EiQvbDaYk9jyk,2575
|
|
40
|
+
core_runtime/data/schemas/core/causal_trace.v1.json,sha256=_QInmLIsroWdDb2FTUzFkIEZTorJ98JqXSmlgHEXDt0,3047
|
|
41
|
+
core_runtime/data/schemas/core/context_gate.v1.json,sha256=On_Y966BJ2ZLuperc0mjsALXSI4KZ3FmcJfyG05PZpE,865
|
|
42
|
+
core_runtime/data/schemas/core/context_threshold.v1.json,sha256=gVlQvoQQqmpzgaugtG6HFURV5AvfWlcfAEPJGZJ-dQM,1063
|
|
43
|
+
core_runtime/data/schemas/core/contract_program.v1.json,sha256=_6Y_iUsnuXtWUH7LijLijWdEbai5rJMxeAhy5eL9iTI,6215
|
|
44
|
+
core_runtime/data/schemas/core/contract_program.v2.json,sha256=68mAZuOnGSXTl5jVPT3M1bFdPp9IRBfyw9-CQpEWbeI,4176
|
|
45
|
+
core_runtime/data/schemas/core/control_decision.v1.json,sha256=l4c9j-AElRilLxrfZP8tpc81sMjQA0__KZdjbdD_hXc,2373
|
|
46
|
+
core_runtime/data/schemas/core/dsk.v3.json,sha256=8YkvGeBDh9dbStoHAaC_fKnYDDoVAMPoIPYU3ATwT04,3679
|
|
47
|
+
core_runtime/data/schemas/core/effect_result.v1.json,sha256=gFTuOTOqEX4hNlggJsSkg-0KPcLdtiJres1m7oevQKM,885
|
|
48
|
+
core_runtime/data/schemas/core/entropy_signal.v1.json,sha256=adtKYDeIPPyjbJCe99cu5duwlzuZmgVtg9wAoopy4fU,2192
|
|
49
|
+
core_runtime/data/schemas/core/execution_receipt.v1.json,sha256=7G2LfiESs-sL7JSTYpzXomztipwSrPhGZGW54s3e8QI,1921
|
|
50
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v1.json,sha256=zpuAuNnbFWu0O6QsrrBotoERPFPZ9SS3cIzr7o50UPY,2485
|
|
51
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v2.json,sha256=8Wbl1BD4x8-P2k7d0Cc0dDoNMkd_SKMESi6nhzlHgmI,2300
|
|
52
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v3.json,sha256=pi4DTB-XffcB6LBbfvbd6voy2AU-B7nRXZ-GM6NQwJ4,2071
|
|
53
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v4.json,sha256=1VJp1_VWmgzDVUgcTQwEX7lojbvWrkAlS8GRH4MIlZA,2326
|
|
54
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v5.json,sha256=B0DsOkOu4TT3P7JVM70gpX9rE75IaeZAuzy5_Wjnfc4,2071
|
|
55
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v6.json,sha256=8pxy-WpyvzGiC_62jUPMBFuHRjjXUdzTHwgyjm3lHZo,2707
|
|
56
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v7.json,sha256=_vsh27CfNIEeg_KXQP3n5ix6L98VpmDn85j-94IajPo,2019
|
|
57
|
+
core_runtime/data/schemas/core/frozen_release_manifest.v8.json,sha256=N6tq2Fi0ZB2OXSDb59QEUlKi41W2cVve58-T5_eZoZo,2567
|
|
58
|
+
core_runtime/data/schemas/core/frozen_rule_set.v1.json,sha256=LkUy_LsvmI5kvIxSqZAQGZy7cDZmU-6tPUHXIyhmlnU,7078
|
|
59
|
+
core_runtime/data/schemas/core/memory_artifact.v1.json,sha256=Xom_0GTR8MJRE7uOlqFjL1Xxaxg9_7pB-Czf1P6y9wE,2300
|
|
60
|
+
core_runtime/data/schemas/core/memory_generation_result.v1.json,sha256=zYzzC-F6KQon8IK-mMztcMnYSqe08AgYjESlH1Zd-Sk,839
|
|
61
|
+
core_runtime/data/schemas/core/operational_learning_event.v1.json,sha256=OBTQi1RCmTyRPPYRGCewZGhuB3lv0LZ7HA3uVGPhcNE,1254
|
|
62
|
+
core_runtime/data/schemas/core/pattern_candidate.v1.json,sha256=hQ91eX4NlVJqxdCNzdER6Q07fbVT-561qC2nSJ7Fd48,2313
|
|
63
|
+
core_runtime/data/schemas/core/physical_safety_assurance_case.v1.json,sha256=g4pSlldsMppQiTWDqY7swz6w8Fx5HDmTXdbgQXI0VFc,16856
|
|
64
|
+
core_runtime/data/schemas/core/policy_lifecycle.v1.json,sha256=Bmwo6PtV3wdAvjq_NQwYRnPWqV47hq8hG5dX4jVcamg,2016
|
|
65
|
+
core_runtime/data/schemas/core/retention_manifest.v1.json,sha256=49P6iZ7TNidumFEQuF3rNUpOE1GKip0kTMh5j4tcVpo,1387
|
|
66
|
+
core_runtime/data/schemas/core/reversibility_policy.v1.json,sha256=Z4JOneT7oMt7IDa_FmUftnhOjd2KkFphWY-SoJSmce4,2208
|
|
67
|
+
core_runtime/data/schemas/core/rule_anchor_batch.v1.json,sha256=hdJfs9sd1xouom62Lrr2yE2GmX4l3Xz1kBmA9LJ5tLg,2703
|
|
68
|
+
core_runtime/data/schemas/core/rule_anchor_chain_evidence.v1.json,sha256=QLhgBIIH-qV1mNS6c1Q2a_PeiHW7ikbCY6O4K-QAyIo,1953
|
|
69
|
+
core_runtime/data/schemas/core/rule_approval.v1.json,sha256=wQcepjQ10_XPR9HK4mA6Yy8ausMtu1Ap43ZowpIU-FY,1531
|
|
70
|
+
core_runtime/data/schemas/core/rule_approval_request.v1.json,sha256=Z3446V7F7_AUeCiJS6kgeA2tZ6KKYVRe-WQd0AAK2mU,1363
|
|
71
|
+
core_runtime/data/schemas/core/state_transition.v1.json,sha256=KqXClxbsw0HgZLahHzeu_-E5BsKgJH46b7Mtk8m74k8,2330
|
|
72
|
+
core_runtime/data/schemas/core/task_closeout.v1.json,sha256=A_k3VNExqPZJGx6UPRQQ71XojwUMuYQhNQ82x2XS3ko,1025
|
|
73
|
+
core_runtime/data/schemas/core/template_promotion_candidate.v1.json,sha256=ItulPORs5Lysa8mkHW23oUYHLg1Qg_4hYENPrdWnKts,1754
|
|
74
|
+
core_runtime/data/schemas/core/unsigned_rule_anchor_deployment.v1.json,sha256=Ku3SOmRT00LrSuLlc1RHIJN1VTeIAVQ2klQlhzBCKqM,3459
|
|
75
|
+
core_runtime/data/schemas/core/unsigned_rule_anchor_transaction.v1.json,sha256=41UX21m2RDsG9gEQa_vaEDy2xOp49FuuVRUH2zfJGFg,3877
|
|
76
|
+
core_runtime/tooling/__init__.py,sha256=SXjeZ3HLXXA9L3ORTNiSqw4uzMrk3Q2Ubzm2ig1U9T4,1393
|
|
77
|
+
core_runtime/tooling/bump_version.py,sha256=0XmhxMn_SeFYnQJHdB0nwQjOXUyrELNNreb6cZ0VUO4,35080
|
|
78
|
+
core_runtime/tooling/contract_preflight.py,sha256=SOPf-jvLCMb7pQSRvD7Jaaz02BcncICsIakFO11sHew,11668
|
|
79
|
+
core_runtime/tooling/create_domain.py,sha256=e0gqbmb7NykOLP_JMpOb64RxbwHnn83vzKcj-fjU2BY,9445
|
|
80
|
+
core_runtime/tooling/diagnostics.py,sha256=owQiQlUdmgtw1tZ8WZrAVmL176-lbYdOXzzMvUxC-WE,4444
|
|
81
|
+
core_runtime/tooling/doctor.py,sha256=0XMeWa8gbdWRd8z8F0Tj3Wc_J0M3pG7nHvqHi7DlnAU,17034
|
|
82
|
+
core_runtime/tooling/file_inventory.py,sha256=qIeLQz5eVFC9vImhaiFezrCPLwlgJxrcqPWGu2640hs,7014
|
|
83
|
+
core_runtime/tooling/json_checks.py,sha256=kmjvZUulNt33GKEYy9lJx33kbYT3EV5DPyrCaTIsK2k,3795
|
|
84
|
+
core_runtime/tooling/release_check.py,sha256=3SxaFEc44NPL8g8yKnt0zgcuQKLY78r_zXnOyJ0wy3M,42366
|
|
85
|
+
core_runtime/tooling/repair_artifact_paths.py,sha256=U76u6ZQFS9kYB0tq3YQPRZGHw7aSYdRDy5G1bNE97gI,17580
|
|
86
|
+
core_runtime/tooling/report_writer.py,sha256=5rs5CFbJ7pdZRiQNXPXBLCdfb95vHX65RxZg7ZQkI0k,6553
|
|
87
|
+
core_runtime/tooling/repository_inventory.py,sha256=pQ6Wa8mYX8PASxjKPLhVQL7Hz63UNbId2YEZ0G4hZr8,15268
|
|
88
|
+
core_runtime/tooling/safety_checks.py,sha256=diQpE7icAlrCcuk1vB8jKsfGPULKvC4pIJTwqgr7ZAw,6166
|
|
89
|
+
core_runtime/tooling/sync_template.py,sha256=6gNMTLcPqpAUBWRUKWsKD2ZTkiK-olEURoRzA9zRlWY,11240
|
|
90
|
+
core_runtime/tooling/validation.py,sha256=SeGQ9tk5cZ0KY-kbt3Q3xtv_R_K1UpMz3chCGwsUfAc,21679
|
|
91
|
+
core_runtime/tooling/version_inventory.py,sha256=vtPDXJ8Tu1biTVcJDL5-QIolqRKx1sV7qYNtC0ImpSM,9129
|
|
92
|
+
core_runtime_engine-11.5.1.dist-info/METADATA,sha256=vecbmBwNwsMHd2MDLUaWcq78SZpKtvRsf8529_x7oQw,1456
|
|
93
|
+
core_runtime_engine-11.5.1.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
94
|
+
core_runtime_engine-11.5.1.dist-info/entry_points.txt,sha256=yH-Hlp3l0dY8UeGVOXP3978GwiVPtIc4z-KFmkBOtJI,64
|
|
95
|
+
core_runtime_engine-11.5.1.dist-info/top_level.txt,sha256=cnUx7LMoH_pbOe6BAg7A_GwaU2R59oJwsqlgj8mi7Ug,13
|
|
96
|
+
core_runtime_engine-11.5.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
core_runtime
|