docs: record TCS publication and pending installation

This commit is contained in:
冰朔 2026-08-21 00:01:21 +08:00
commit 4e92e6d8d7
24 changed files with 65 additions and 52 deletions

View file

@ -8,8 +8,10 @@ const directory = path.dirname(fileURLToPath(import.meta.url));
const repo = path.resolve(directory, "../..");
const handoff = JSON.parse(fs.readFileSync(path.join(directory, "ZERO-CORE-LANGUAGE-BODIES-HANDOFF-20260820.json"), "utf8"));
test("handoff claims no installation or publication", () => {
assert.equal(handoff.state, "LOCAL_READY_NOT_INSTALLED_NOT_PUBLISHED");
test("handoff distinguishes verified repository publication from runtime installation", () => {
assert.equal(handoff.state, "REMOTE_REPOSITORY_PUBLISHED_NOT_INSTALLED");
assert.equal(handoff.publication_receipt.content_commit, "1d4286c11b8741e8b92a5a8a1a7e490e40fb1df2");
assert.equal(handoff.publication_receipt.runtime_installation, false);
assert.ok(handoff.truth_boundaries.includes("HANDOFF_MANIFEST_IS_NOT_INSTALLATION"));
});