architecture: project formal AGE runtime contract
This commit is contained in:
parent
5c86f85242
commit
065c10137b
18 changed files with 340 additions and 42 deletions
|
|
@ -11,18 +11,21 @@ const architecture = readJson("routing/hololake-current-architecture.json");
|
|||
const channel = readJson("routing/hololake-persona-native-code-channel.json");
|
||||
|
||||
test("current architecture places the persona-native code channel after the paradigm contract", () => {
|
||||
assert.equal(architecture.version, "2026-08-12.20");
|
||||
assert.equal(architecture.version, "2026-08-14.1");
|
||||
assert.equal(
|
||||
architecture.persona_native_code_channel.record_id,
|
||||
"HLP-PERSONA-NATIVE-CODE-CHANNEL-001",
|
||||
);
|
||||
assert.equal(
|
||||
architecture.read_order[4],
|
||||
const paradigmIndex = architecture.read_order.indexOf(
|
||||
architecture.paradigm_ai_language_persona_os.architecture_page,
|
||||
);
|
||||
const channelIndex = architecture.read_order.indexOf(
|
||||
architecture.persona_native_code_channel.architecture_page,
|
||||
);
|
||||
assert.ok(paradigmIndex >= 0 && channelIndex > paradigmIndex);
|
||||
assert.equal(
|
||||
architecture.persona_native_code_channel.upstream_repository_commit,
|
||||
"04d9c057341b12ed3eb79c2af87a6a0d6f1a916f",
|
||||
"40c29f1e3ecde87f2c0a9cdf232eb0be5263b268",
|
||||
);
|
||||
assert.equal(architecture.continuity.heartbeat_automation, "dev-20260811-010");
|
||||
assert.equal(
|
||||
|
|
|
|||
Loading…
Reference in a new issue